    :root {
      --app-max: 430px;
      --app-w: min(100vw, var(--app-max));
      --orange: #ee4d2d;
      --orange-2: #ff5a3d;
      --teal: #28ad9b;
      --text: #282828;
      --muted: #777;
      --line: #e8e8e8;
      --bg: #f2f2f2;
      --cream: #fff8ef;
      --shadow: 0 6px 18px rgba(0, 0, 0, .16);
      --safe-bottom: env(safe-area-inset-bottom, 0px);
      --ui-font: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
      --display-font: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
      --brand-font: "Brush Script MT", "Snell Roundhand", "Segoe Script", cursive;
      font-family: var(--ui-font);
    }

    * {
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    html {
      scroll-behavior: smooth;
      min-height: 100%;
      overflow-x: hidden;
    }

    body {
      margin: 0;
      min-height: 100%;
      background: #dcdcdc;
      color: var(--text);
      font-family: var(--ui-font);
      font-feature-settings: "kern";
      text-rendering: optimizeLegibility;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
      overscroll-behavior-x: none;
    }

    .desktop-home-header {
      display: none;
    }

    button,
    input {
      font: inherit;
    }

    button {
      border: 0;
      background: transparent;
      cursor: pointer;
      touch-action: manipulation;
    }

    .app {
      position: relative;
      width: 100%;
      max-width: var(--app-max);
      min-height: 100vh;
      min-height: 100svh;
      margin: 0 auto;
      background: #fff;
      overflow-x: hidden;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, .04);
    }

    .topbar {
      position: fixed;
      left: 50%;
      top: 0;
      z-index: 95;
      width: var(--app-w);
      height: 56px;
      transform: translateX(-50%);
      display: grid;
      grid-template-columns: 42px 1fr 42px 36px;
      align-items: center;
      gap: 4px;
      padding: 6px 16px;
      color: #fff;
      transition: background .2s, box-shadow .2s;
    }

    .topbar.is-scrolled,
    .topbar.force-solid {
      background: #fff;
      color: var(--orange);
      box-shadow: 0 1px 8px rgba(0, 0, 0, .14);
    }

    .app.review-mode .topbar,
    .app.video-mode .topbar,
    .app.product-detail-mode .topbar {
      display: none;
    }

    .app.review-mode #reviewPage,
    .app.video-mode #videoPage,
    .app.product-detail-mode #lightProductPage {
      padding-top: 0;
    }

    .circle-action {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      color: currentColor;
      background: rgba(82, 82, 82, .48);
    }

    .topbar.is-scrolled .circle-action,
    .topbar.force-solid .circle-action {
      background: transparent;
      color: var(--orange);
    }

    .search-pill {
      display: none;
      min-width: 0;
      height: 36px;
      align-items: center;
      gap: 8px;
      padding: 0 12px;
      border-radius: 3px;
      background: #eee;
      color: #aaa;
      font-size: 15px;
      overflow: hidden;
      white-space: nowrap;
    }

    .topbar.is-scrolled .search-pill,
    .topbar.force-solid .search-pill {
      display: flex;
    }

    .topbar:not(.is-scrolled):not(.force-solid) {
      grid-template-columns: 42px 1fr 42px 36px;
    }

    .topbar:not(.is-scrolled):not(.force-solid) .search-pill {
      display: flex;
      visibility: hidden;
    }

    .icon {
      width: 26px;
      height: 26px;
      display: block;
      stroke: currentColor;
      stroke-width: 2.2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .cart-wrap,
    .chat-wrap {
      position: relative;
    }

    a.chat-wrap,
    a.circle-action,
    a.bottom-btn {
      color: inherit;
      text-decoration: none;
    }

    .badge {
      position: absolute;
      right: -4px;
      top: -7px;
      min-width: 18px;
      height: 18px;
      padding: 0 4px;
      border-radius: 999px;
      border: 1px solid #fff;
      background: var(--orange);
      color: #fff;
      font-size: 12px;
      line-height: 17px;
      text-align: center;
    }

    .cart-badge {
      display: none;
    }

    .cart-badge.has-items {
      display: block;
    }

    .app.checkout-mode .topbar,
    .app.checkout-mode .bottom-bar,
    .app.checkout-mode .floating-up {
      display: none;
    }

    .app.checkout-mode #checkoutPage {
      padding-top: 0;
      padding-bottom: calc(96px + var(--safe-bottom));
    }

    main {
      padding-bottom: calc(86px + var(--safe-bottom));
      overflow-x: clip;
    }

    .hero {
      position: relative;
      height: var(--app-w);
      max-height: var(--app-max);
      background: var(--cream);
      overflow: hidden;
      touch-action: pan-y;
      user-select: none;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      display: block;
      opacity: 0;
      pointer-events: none;
      background:
        linear-gradient(90deg, rgba(221, 168, 96, .18) 0 2px, transparent 2px 18px),
        radial-gradient(circle at 12% 95%, rgba(218, 160, 80, .18), transparent 32%),
        linear-gradient(110deg, #fffaf2 0%, #fff 42%, #fff6ec 100%);
      color: #b3192f;
      transform: translate3d(calc((var(--hero-offset, 0) * 100%) + var(--hero-drag-x, 0px)), 0, 0);
      will-change: transform, opacity;
    }

    .hero-slide.is-prev,
    .hero-slide.active {
      opacity: 1;
    }

    .hero-slide.is-next {
      opacity: 1;
    }

    .hero-slide.active {
      pointer-events: auto;
    }

    .hero.is-settling .hero-slide {
      transition: transform .22s cubic-bezier(.2, .78, .24, 1), opacity .18s ease;
    }

    .hero.is-dragging .hero-slide {
      transition: none;
    }

    .hero-slide.has-real-hero {
      background: #fff8ef;
    }

    .hero-slide.has-real-hero .hero-brand,
    .hero-slide.has-real-hero .product-stage,
    .hero-slide.has-real-hero .hero-copy {
      display: none;
    }

    .hero-real-image {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      background: #fff8ef;
    }

    .hero-inline-video {
      position: absolute;
      inset: 0;
      z-index: 2;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      border-radius: inherit;
      background: #000;
    }

    .hero-inline-video[hidden] {
      display: none !important;
    }

    @keyframes fade {
      from { opacity: .4; }
      to { opacity: 1; }
    }

    .hero-brand {
      position: absolute;
      top: 18px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 14px;
      color: #9f2633;
      font-weight: 700;
      font-size: 10px;
      letter-spacing: .2px;
      text-align: center;
    }

    .logo-script {
      font-family: var(--brand-font);
      color: #b51624;
      font-size: 20px;
      font-weight: 400;
      line-height: 1;
    }

    .hero-brand::after {
      content: "";
      width: 1px;
      height: 27px;
      background: #d7b4ac;
      order: -1;
      display: none;
    }

    .product-stage {
      position: absolute;
      left: 18px;
      bottom: 22px;
      width: 40%;
      height: 68%;
    }

    .bottle {
      position: absolute;
      left: 22%;
      bottom: 0;
      width: 70px;
      height: 250px;
      border-radius: 18px 18px 12px 12px;
      background: linear-gradient(90deg, rgba(255, 255, 255, .24), transparent 38%), var(--bottle, #e54363);
      box-shadow: 0 14px 18px rgba(99, 34, 39, .18);
      transform: rotate(-7deg);
    }

    .bottle::before {
      content: "";
      position: absolute;
      left: 18px;
      top: -33px;
      width: 38px;
      height: 34px;
      border-radius: 15px 15px 8px 8px;
      background: linear-gradient(90deg, #f7d6dc, #fff, #c0848f);
    }

    .bottle::after {
      content: "";
      position: absolute;
      left: 17px;
      top: -62px;
      width: 40px;
      height: 33px;
      border-radius: 18px 18px 7px 7px;
      background: rgba(255, 255, 255, .74);
      box-shadow: inset 0 -4px 8px rgba(196, 87, 103, .16);
    }

    .bottle small {
      position: absolute;
      top: 56px;
      left: 17px;
      color: rgba(255, 255, 255, .78);
      font-size: 8px;
      letter-spacing: .5px;
    }

    .bottle b {
      position: absolute;
      left: -29px;
      top: 122px;
      width: 132px;
      color: rgba(255, 255, 255, .82);
      font-family: var(--brand-font);
      font-size: 44px;
      font-weight: 400;
      transform: rotate(-90deg);
      transform-origin: center;
    }

    .bottle-mini {
      left: 72%;
      bottom: 44px;
      width: 44px;
      height: 154px;
      border-radius: 12px 12px 8px 8px;
      transform: rotate(0deg);
      opacity: .92;
    }

    .bottle-mini::before {
      left: 8px;
      top: -27px;
      width: 29px;
      height: 30px;
    }

    .bottle-mini::after {
      display: none;
    }

    .bottle-mini small {
      top: 48px;
      left: 9px;
      font-size: 7px;
    }

    .bottle-mini b {
      left: -35px;
      top: 82px;
      width: 112px;
      font-size: 34px;
    }

    .box-pack {
      position: absolute;
      right: 4px;
      bottom: 38px;
      width: 58px;
      height: 178px;
      border-radius: 2px;
      background:
        linear-gradient(90deg, rgba(0, 0, 0, .05), transparent 30%),
        repeating-linear-gradient(0deg, rgba(90, 60, 38, .08) 0 1px, transparent 1px 4px),
        #d2ad82;
      box-shadow: 10px 16px 14px rgba(0, 0, 0, .08);
    }

    .box-pack::before {
      content: "GRACE";
      position: absolute;
      top: 38px;
      left: 7px;
      color: #8b562a;
      font-weight: 800;
      font-size: 18px;
    }

    .hero-copy {
      position: absolute;
      right: 18px;
      top: 88px;
      width: 53%;
      color: #b82132;
    }

    .hero-copy .script {
      display: block;
      margin-bottom: -8px;
      color: #b51624;
      font-family: var(--brand-font);
      font-size: 57px;
      line-height: .8;
      font-weight: 400;
      opacity: .9;
    }

    .hero-copy h1 {
      margin: 0;
      color: #d20719;
      font-size: 43px;
      line-height: .95;
      font-weight: 900;
      letter-spacing: .3px;
    }

    .hero-copy h1.brown {
      color: #7b4a20;
    }

    .hero-copy p {
      margin: 16px 0 0;
      color: #994753;
      font-size: 13px;
      font-weight: 500;
      line-height: 1.35;
    }

    .feature-bars {
      margin-top: 14px;
      display: grid;
      gap: 9px;
    }

    .feature-bar {
      position: relative;
      min-height: 44px;
      padding: 9px 10px 8px 30px;
      display: flex;
      align-items: center;
      border-radius: 8px 0 0 8px;
      background: rgba(255, 255, 255, .88);
      box-shadow: inset 0 -3px 0 #d91d2c;
      color: #9c4451;
      font-size: 10px;
      line-height: 1.2;
    }

    .feature-bar i {
      position: absolute;
      left: 10px;
      width: 13px;
      height: 13px;
      border: 2px solid #d43540;
      border-radius: 50%;
    }

    .feature-bar i::after {
      content: "";
      position: absolute;
      left: 3px;
      top: 3px;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: #d43540;
    }

    .hero-grace .hero-copy h1 {
      color: #7b4a20;
      font-size: 44px;
    }

    .hero-grace .hero-copy .script {
      color: #a81823;
      font-size: 56px;
    }

    .hero-grace .hero-copy p {
      color: #854b3e;
      font-family: var(--brand-font);
      font-size: 28px;
      line-height: 1.15;
    }

    .hero-desire .hero-copy h1 {
      color: #c31724;
      font-size: 36px;
    }

    .hero-desire .bottle {
      --bottle: #8b1f38;
    }

    .hero-grace .bottle {
      --bottle: #bd8b57;
    }

    .play-float {
      position: absolute;
      left: 50%;
      top: 50%;
      z-index: 4;
      width: 74px;
      height: 74px;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      display: grid;
      place-items: center;
      background: rgba(50, 50, 50, .72);
      color: #fff;
    }

    .play-float[hidden],
    .play-float[aria-hidden="true"] {
      display: none !important;
      pointer-events: none;
    }

    .play-triangle {
      width: 0;
      height: 0;
      margin-left: 6px;
      border-top: 19px solid transparent;
      border-bottom: 19px solid transparent;
      border-left: 28px solid currentColor;
    }

    .hero-count {
      position: absolute;
      right: 14px;
      bottom: 12px;
      padding: 5px 10px;
      border: 1px solid rgba(0, 0, 0, .1);
      border-radius: 999px;
      background: rgba(255, 255, 255, .78);
      color: #666;
      font-size: 14px;
    }

    .section {
      background: #fff;
      border-bottom: 1px solid var(--line);
    }

    .section + .section {
      margin-top: 8px;
      border-top: 1px solid var(--line);
    }

    .product-head {
      padding: 10px 12px 0;
      border-bottom: 0;
      overflow: hidden;
    }

    .variant-title {
      margin: 0 0 7px;
      color: #555;
      font-size: 13px;
    }

    .thumb-row {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 9px;
      scrollbar-width: none;
      cursor: grab;
      scroll-snap-type: x proximity;
      -webkit-overflow-scrolling: touch;
    }

    .thumb-row::-webkit-scrollbar {
      display: none;
    }

    .thumb {
      flex: 0 0 48px;
      width: 48px;
      height: 48px;
      min-width: 48px;
      border: 1px solid #ccc;
      border-radius: 2px;
      overflow: hidden;
      background: #fff;
      display: grid;
      place-items: center;
      scroll-snap-align: start;
      transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
    }

    .thumb-row.is-dragging {
      cursor: grabbing;
      user-select: none;
    }

    .thumb img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .thumb.active {
      border-color: var(--orange);
    }

    .flash-sale {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      min-height: 34px;
      margin: 0 -12px;
      padding: 7px 12px 6px;
      background:
        linear-gradient(90deg, rgba(255, 255, 255, .14) 0 1px, transparent 1px 12px),
        linear-gradient(90deg, #ff4d22 0%, #ff6421 56%, #ff8c1f 100%);
      color: #fff;
      overflow: hidden;
      box-shadow: inset 0 -1px 0 rgba(255, 255, 255, .24);
    }

    .flash-sale-logo {
      flex: 0 0 auto;
      width: 91px;
      height: 18px;
      display: block;
    }

    .flash-sale-timer {
      min-width: 0;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 5px;
      color: #fff;
      font-size: 12px;
      line-height: 1;
      font-weight: 700;
      white-space: nowrap;
    }

    .flash-sale-countdown {
      display: inline-flex;
      align-items: center;
      gap: 3px;
      font-variant-numeric: tabular-nums;
    }

    .flash-sale-countdown span {
      min-width: 22px;
      padding: 3px 4px 2px;
      border-radius: 2px;
      background: #1f1f1f;
      color: #fff;
      text-align: center;
      font-size: 12px;
      line-height: 1;
    }

    .flash-sale-countdown i {
      color: #fff;
      font-style: normal;
      font-size: 12px;
      line-height: 1;
    }

    .mock-card {
      width: 100%;
      height: 100%;
      position: relative;
      background:
        repeating-linear-gradient(90deg, rgba(221, 168, 96, .18) 0 1px, transparent 1px 8px),
        linear-gradient(135deg, #fffaf3, #fff 60%, #fff2e2);
      overflow: hidden;
    }

    .mock-card::before {
      content: attr(data-word);
      position: absolute;
      right: 4px;
      top: 14px;
      color: var(--card-color, #d31426);
      font-size: 8px;
      font-weight: 900;
    }

    .mock-card::after {
      content: "";
      position: absolute;
      left: 10px;
      bottom: 7px;
      width: 12px;
      height: 31px;
      border-radius: 5px 5px 3px 3px;
      background: var(--card-color, #e64364);
      box-shadow: 15px 5px 0 -2px rgba(0, 0, 0, .08);
    }

    .mock-card.has-real-thumb::before,
    .mock-card.has-real-thumb::after {
      display: none;
    }

    .mock-card.has-real-thumb img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .price-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: center;
      gap: 10px;
      margin: 0 -12px;
      padding: 9px 12px 10px;
      background: linear-gradient(180deg, #fff7f5 0%, #fff 100%);
    }

    .price-main {
      min-width: 0;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 4px;
      color: var(--orange);
      font-family: var(--display-font);
      font-size: 27px;
      line-height: 1.1;
      font-weight: 500;
      white-space: normal;
      font-variant-numeric: proportional-nums;
    }

    .price-main small {
      font-size: 15px;
      text-decoration: underline;
    }

    .price-value {
      display: inline-flex;
      align-items: baseline;
      white-space: nowrap;
    }

    .flash-price-button {
      min-width: 0;
      display: flex;
      align-items: flex-end;
      flex-wrap: wrap;
      gap: 4px;
      color: inherit;
      text-align: left;
    }

    .flash-old-price {
      margin-bottom: 3px;
      color: #999;
      font-size: 12px;
      line-height: 1;
      text-decoration: line-through;
    }

    .flash-discount {
      margin-bottom: 2px;
      padding: 1px 3px;
      border-radius: 1px;
      background: #fff1ee;
      color: var(--orange);
      font-size: 10px;
      line-height: 1.2;
      font-weight: 500;
    }

    .price-detail-trigger {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      margin-left: 3px;
      padding: 0;
      color: var(--orange);
      background: transparent;
      font-size: 14px;
      line-height: 1;
      vertical-align: 3px;
      white-space: nowrap;
    }

    .ticket {
      display: inline-flex;
      align-items: center;
      width: 17px;
      height: 16px;
      margin-left: 3px;
      vertical-align: -1px;
      border: 2px solid currentColor;
      border-left-style: dashed;
      border-radius: 2px;
    }

    .ticket::after {
      content: "";
      width: 5px;
      height: 5px;
      margin: auto;
      border-radius: 50%;
      background: currentColor;
    }

    .price-detail-trigger .ticket {
      width: 16px;
      height: 15px;
      margin-left: 0;
    }

    .sold {
      display: flex;
      align-items: center;
      gap: 7px;
      color: #282828;
      font-size: 12px;
      white-space: nowrap;
      min-width: max-content;
    }

    .sold b {
      font-weight: 500;
    }

    .heart {
      width: 22px;
      height: 22px;
      display: inline-grid;
      place-items: center;
      color: #8a8a8a;
      font-size: 25px;
      line-height: 1;
    }

    .heart::before {
      content: "♡";
    }

    .product-head + .title,
    .title + .delivery-section {
      margin-top: 0;
      border-top: 0;
    }

    .title {
      padding: 10px 12px 12px;
      font-size: 15px;
      line-height: 1.28;
      font-weight: 700;
      color: #222;
    }

    .official-badge {
      display: inline-block;
      margin-right: 6px;
      padding: 2px 4px;
      border-radius: 1px;
      background: #d9001b;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      line-height: 1.1;
      vertical-align: 2px;
    }

    .shipping {
      display: grid;
      grid-template-columns: 28px 1fr 18px;
      gap: 0;
      padding: 12px;
      align-items: center;
      width: 100%;
      text-align: left;
      background: #fff;
    }

    .truck {
      color: var(--teal);
      font-size: 18px;
      transform: scaleX(1.1);
    }

    .delivery-date {
      color: #222;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.25;
    }

    .delivery-free {
      display: block;
      color: #20a08e;
      font-size: 15px;
      line-height: 1.28;
      font-weight: 700;
    }

    .delivery-predict {
      margin-top: 2px;
      color: #686868;
      font-size: 12px;
      line-height: 1.25;
    }

    .address-cta {
      color: var(--orange);
      font-weight: 700;
    }

    .ship-note {
      color: #858585;
      font-size: 12px;
      line-height: 1.35;
    }

    .chevron {
      color: #bbb;
      font-size: 28px;
      line-height: 1;
    }

    .thin-row {
      display: grid;
      grid-template-columns: 28px 1fr 18px;
      align-items: center;
      padding: 12px;
      width: 100%;
      border-top: 1px solid var(--line);
      color: #232323;
      background: #fff;
      font-size: 14px;
      text-align: left;
    }

    .shield,
    .wallet {
      color: var(--orange);
      font-size: 17px;
    }

    .video-section {
      padding: 14px 12px;
    }

    .section-title {
      margin: 0 0 12px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 18px;
      font-weight: 700;
    }

    .video-title-link {
      width: 100%;
      padding: 0;
      color: var(--text);
      background: transparent;
      text-align: left;
    }

    .video-list {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      scrollbar-width: none;
      cursor: grab;
      -webkit-overflow-scrolling: touch;
    }

    .video-list::-webkit-scrollbar {
      display: none;
    }

    .video-list.is-dragging {
      cursor: grabbing;
      user-select: none;
    }

    .video-card {
      flex: 0 0 31.8%;
      position: relative;
      height: 146px;
      min-width: 104px;
      display: block;
      border-radius: 5px;
      overflow: hidden;
      background:
        linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, .55)),
        var(--video-bg, linear-gradient(135deg, #e7dcd8, #a67a6c));
      transform: translateZ(0);
      transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
    }

    .video-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      transition: transform .32s ease;
    }

    .video-card video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      background: #000;
      z-index: 4;
    }

    .video-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 50% 22%, rgba(255, 236, 228, .9) 0 18px, transparent 19px),
        linear-gradient(90deg, transparent 38%, rgba(229, 72, 96, .85) 39% 56%, transparent 57%);
      opacity: .64;
    }

    .video-card:nth-child(2)::before {
      background:
        radial-gradient(circle at 70% 42%, rgba(255, 255, 255, .9) 0 26px, transparent 27px),
        linear-gradient(110deg, transparent 20%, rgba(224, 62, 88, .9) 21% 44%, transparent 45%);
    }

    .video-card:nth-child(3)::before {
      background:
        linear-gradient(90deg, transparent 10%, rgba(122, 27, 48, .9) 28% 43%, transparent 44%),
        linear-gradient(120deg, transparent 48%, rgba(92, 38, 38, .72) 49% 72%, transparent 73%);
    }

    .video-card.has-poster::before {
      background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .62));
      opacity: 1;
    }

    .video-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(0, 0, 0, .14);
    }

    .video-card:hover img {
      transform: scale(1.025);
    }

    .video-card:active {
      transform: scale(.985);
      filter: brightness(.96);
    }

    .video-play {
      position: absolute;
      left: 50%;
      top: 48%;
      z-index: 2;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      display: grid;
      place-items: center;
      background: rgba(0, 0, 0, .5);
      color: #fff;
      box-shadow: 0 6px 16px rgba(0, 0, 0, .22);
      transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
    }

    .video-inline-card.is-playing::before,
    .video-inline-card.is-playing > img,
    .video-inline-card.is-playing > span,
    .video-inline-card.is-playing > .video-play {
      display: none;
    }

    .video-card:hover .video-play {
      transform: translate(-50%, -50%) scale(1.08);
      background: rgba(0, 0, 0, .62);
      box-shadow: 0 10px 22px rgba(0, 0, 0, .28);
    }

    .video-play i {
      width: 0;
      height: 0;
      margin-left: 3px;
      border-top: 9px solid transparent;
      border-bottom: 9px solid transparent;
      border-left: 14px solid #fff;
    }

    .video-card span {
      position: absolute;
      left: 8px;
      right: 8px;
      bottom: 9px;
      z-index: 2;
      color: #fff;
      font-size: 14px;
      line-height: 1.05;
      font-weight: 500;
      text-shadow: 0 1px 1px rgba(0, 0, 0, .3);
    }

    .product-video-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      padding: 10px 8px 18px;
      background: #f5f5f5;
    }

    .product-video-grid .video-card {
      width: 100%;
      min-width: 0;
      height: auto;
      aspect-ratio: 9 / 16;
      flex: none;
    }

    .product-video-grid .video-card span {
      font-size: 13px;
      font-weight: 600;
      line-height: 1.15;
    }

    .product-video-grid .video-play {
      width: 38px;
      height: 38px;
    }

    .video-modal {
      position: fixed;
      inset: 0;
      z-index: 160;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 18px;
      background: rgba(0, 0, 0, .78);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity .2s ease, visibility .2s ease;
    }

    .video-modal.open {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .video-modal.closing {
      opacity: 0;
      visibility: visible;
    }

    .video-player-shell {
      position: relative;
      width: min(calc(var(--app-w) - 28px), 390px);
      max-height: 86vh;
      border-radius: 18px;
      overflow: hidden;
      background: #080808;
      box-shadow: 0 18px 50px rgba(0, 0, 0, .38);
      transform: translateY(18px) scale(.96);
      opacity: 0;
      transition: transform .24s cubic-bezier(.2, .8, .2, 1), opacity .2s ease;
    }

    .video-modal.open .video-player-shell {
      transform: translateY(0) scale(1);
      opacity: 1;
    }

    .video-modal.closing .video-player-shell {
      transform: translateY(14px) scale(.97);
      opacity: 0;
    }

    .product-video {
      display: block;
      width: 100%;
      max-height: 86vh;
      aspect-ratio: 9 / 16;
      object-fit: contain;
      background: #080808;
    }

    .video-close {
      position: absolute;
      right: 10px;
      top: 10px;
      z-index: 2;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .92);
      color: #333;
      box-shadow: 0 8px 20px rgba(0, 0, 0, .22);
    }

    .video-close::before,
    .video-close::after {
      content: "";
      position: absolute;
      left: 10px;
      top: 17px;
      width: 16px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    .video-close::before {
      transform: rotate(45deg);
    }

    .video-close::after {
      transform: rotate(-45deg);
    }

    .image-modal {
      position: fixed;
      inset: 0;
      z-index: 170;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 18px;
      background: rgba(0, 0, 0, .86);
    }

    .image-modal.open {
      display: flex;
    }

    .image-viewer {
      position: relative;
      width: min(calc(var(--app-w) - 28px), 410px);
      max-height: 88vh;
      display: grid;
      place-items: center;
    }

    .image-viewer img {
      display: block;
      max-width: 100%;
      max-height: 86vh;
      border-radius: 8px;
      object-fit: contain;
      background: #111;
      box-shadow: 0 18px 48px rgba(0, 0, 0, .42);
    }

    .image-close {
      position: fixed;
      right: max(16px, calc((100vw - var(--app-w)) / 2 + 14px));
      top: 18px;
      z-index: 2;
      width: 38px;
      height: 38px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .92);
      color: #333;
    }

    .image-close::before,
    .image-close::after {
      content: "";
      position: absolute;
      left: 10px;
      top: 18px;
      width: 18px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
    }

    .image-close::before {
      transform: rotate(45deg);
    }

    .image-close::after {
      transform: rotate(-45deg);
    }

    .shop {
      padding: 12px;
    }

    .shop-head {
      display: grid;
      grid-template-columns: 70px 1fr auto;
      gap: 10px;
      align-items: center;
    }

    .shop-logo {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid var(--line);
      color: #b51624;
      font-family: var(--brand-font);
      font-size: 24px;
      background: #fff;
      overflow: hidden;
    }

    .shop-logo img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      padding: 6px;
    }

    .shop-name {
      font-weight: 800;
      font-size: 16px;
    }

    .online {
      color: #888;
      font-size: 14px;
      line-height: 1.45;
    }

    .online::before {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      margin-right: 5px;
      border-radius: 50%;
      background: #31b86d;
      vertical-align: 1px;
    }

    .shop-btn {
      min-width: 82px;
      height: 31px;
      border: 1px solid var(--orange);
      border-radius: 4px;
      color: var(--orange);
      background: #fff;
      font-size: 14px;
    }

    .shop-stats {
      margin-top: 12px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      text-align: center;
    }

    .shop-stats div + div {
      border-left: 1px solid var(--line);
    }

    .shop-stats b {
      display: block;
      font-size: 15px;
      font-weight: 500;
    }

    .shop-stats span {
      color: #999;
      font-size: 13px;
    }

    .horizontal-products {
      padding: 12px;
    }

    .scroller {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .scroller::-webkit-scrollbar {
      display: none;
    }

    .mini-product {
      flex: 0 0 112px;
      border: 1px solid var(--line);
      border-radius: 5px;
      overflow: hidden;
      background: #fff;
    }

    .mini-product .mock-card {
      height: 104px;
      border-bottom: 1px solid var(--line);
    }

    .mini-body {
      padding: 8px;
    }

    .mini-name {
      font-size: 14px;
      line-height: 1.2;
      min-height: 34px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      white-space: normal;
      overflow: hidden;
      font-weight: 500;
    }

    .mini-official-badge {
      display: inline-block;
      margin-right: 4px;
      padding: 1px 3px;
      border-radius: 1px;
      background: #d9001b;
      color: #fff;
      font-size: 9px;
      font-weight: 700;
      line-height: 1.15;
      vertical-align: 1px;
    }

    .mini-price {
      margin-top: 5px;
      color: var(--orange);
      font-size: 14px;
    }

    .mini-rating {
      display: inline-flex;
      margin-top: 8px;
      padding: 2px 6px;
      border: 1px solid #ffb300;
      color: #222;
      font-size: 12px;
      gap: 3px;
    }

    .sold-mini {
      margin-top: 8px;
      font-size: 12px;
      color: #333;
    }

    .detail-tabs {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: center;
      padding: 14px 12px;
      width: 100%;
      border-bottom: 1px solid var(--line);
      background: #fff;
      color: var(--text);
      font-size: 17px;
      font-weight: 700;
      text-align: left;
    }

    .detail-tabs span:last-child {
      color: #282828;
      font-weight: 500;
      white-space: nowrap;
    }

    .description {
      padding: 12px;
      color: #5d5d5d;
      font-size: 16px;
      line-height: 1.58;
    }

    .description.is-collapsed {
      max-height: 192px;
      overflow: hidden;
    }

    .desc-extra {
      display: block;
    }

    .description.is-collapsed .desc-extra {
      display: none;
    }

    .description.is-collapsed .desc-preview {
      display: -webkit-box;
      overflow: hidden;
      -webkit-line-clamp: 1;
      -webkit-box-orient: vertical;
    }

    .description h3 {
      margin: 0 0 14px;
      color: #242424;
      font-size: 17px;
      line-height: 1.25;
    }

    .description h4 {
      margin: 18px 0 8px;
      color: #242424;
      font-size: 16px;
      line-height: 1.3;
    }

    .description p {
      margin: 0 0 12px;
    }

    .description ul {
      margin: 0 0 12px;
      padding-left: 20px;
    }

    .description li + li {
      margin-top: 6px;
    }

    .description-media {
      margin-top: 14px;
      display: grid;
      gap: 8px;
    }

    .description-media img {
      width: 100%;
      height: auto;
      display: block;
      border-radius: 4px;
      background: #fff;
      object-fit: contain;
    }

    .horizontal-products .mock-card.has-real-thumb img,
    .recommend .mock-card.has-real-thumb img {
      object-fit: contain;
      background: #fff8ef;
    }

    .collapse-btn {
      width: 100%;
      padding: 12px;
      border-top: 1px solid var(--line);
      background: #fff;
      color: #242424;
      font-size: 16px;
      text-align: center;
    }

    .review-summary {
      padding: 14px 12px;
    }

    .rating-title {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      font-size: 18px;
      font-weight: 800;
    }

    .rating-title > span {
      min-width: 0;
      line-height: 1.18;
    }

    .rating-title button {
      flex: 0 0 auto;
      min-width: 54px;
      padding: 2px 0 2px 8px;
      color: #111;
      font-size: 16px;
      line-height: 1.1;
      font-weight: 800;
      text-align: center;
      white-space: normal;
    }

    .star {
      color: #ffb20d;
    }

    .chips {
      position: relative;
      display: flex;
      gap: 6px;
      margin-top: 10px;
      overflow-x: auto;
      scrollbar-width: none;
      scroll-padding-inline: 0 10px;
      -webkit-overflow-scrolling: touch;
    }

    .chips::-webkit-scrollbar {
      display: none;
    }

    .chip {
      flex: 0 0 auto;
      padding: 5px 10px;
      border: 1px solid #ddd;
      border-radius: 999px;
      color: #555;
      background: #fff;
      font-size: 13px;
      line-height: 1.15;
      white-space: nowrap;
    }

    .review-search {
      margin-top: 10px;
      height: 34px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 12px;
      border: 1px solid #ddd;
      border-radius: 5px;
      color: #aaa;
      font-size: 14px;
    }

    .review-search span {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .review-search .icon {
      flex: 0 0 auto;
    }

    @media (max-width: 374px) {
      .review-summary {
        padding: 12px 10px;
      }

      .rating-title {
        gap: 8px;
        font-size: 16px;
      }

      .rating-title button {
        min-width: 46px;
        font-size: 15px;
      }

      .chips {
        gap: 5px;
        margin-top: 9px;
      }

      .chip {
        padding: 5px 9px;
        font-size: 12px;
      }

      .review-search {
        height: 33px;
        padding-inline: 10px;
        font-size: 13px;
      }
    }

    .review-list-page {
      display: none;
    }

    .review-list-page.active-page {
      display: block;
    }

    #reviewPage {
      position: fixed;
      inset: 0 auto 0 50%;
      z-index: 90;
      width: var(--app-w);
      max-width: var(--app-max);
      min-height: 100svh;
      overflow-y: auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      transform: translateX(-50%);
      background: #f5f5f5;
      padding-bottom: calc(76px + var(--safe-bottom));
    }

    .review-tabs {
      position: sticky;
      top: 56px;
      z-index: 76;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      background: #fff;
      border-bottom: 1px solid var(--line);
      box-shadow: 0 1px 0 rgba(0, 0, 0, .04);
    }

    .review-tab {
      height: 50px;
      color: #222;
      font-size: 16px;
      border-bottom: 2px solid transparent;
    }

    .review-tab.active {
      color: var(--orange);
      border-bottom-color: var(--orange);
    }

    .filter-row {
      position: sticky;
      top: 106px;
      z-index: 75;
      display: flex;
      gap: 7px;
      padding: 12px 10px;
      overflow-x: auto;
      border-bottom: 1px solid var(--line);
      background: #fff;
      box-shadow: 0 6px 10px rgba(0, 0, 0, .04);
      scrollbar-width: none;
      scroll-padding-inline: 10px;
      -webkit-overflow-scrolling: touch;
    }

    .filter-row::-webkit-scrollbar {
      display: none;
    }

    .filter {
      flex: 0 0 auto;
      width: clamp(82px, 22vw, 112px);
      min-height: 48px;
      padding: 7px 8px;
      border: 1px solid var(--line);
      border-radius: 5px;
      color: #222;
      background: #fff;
      font-size: 13px;
      line-height: 1.2;
      text-align: center;
      white-space: normal;
      overflow-wrap: anywhere;
    }

    .filter span {
      color: #999;
      font-size: 12px;
    }

    .filter.active {
      border-color: var(--orange);
      color: var(--orange);
    }

    .review {
      padding: 14px 12px;
      border-top: 1px solid var(--line);
      background: #fff;
    }

    .featured-reviews .review:first-child {
      border-top: 0;
    }

    .review-load-more-wrap {
      padding: 0 12px 14px;
      background: #fff;
    }

    .review-load-more-wrap .info-submit[hidden] {
      display: none;
    }

    .review-head {
      display: grid;
      grid-template-columns: 36px 1fr auto;
      align-items: center;
      gap: 8px;
    }

    .avatar {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background:
        radial-gradient(circle at 42% 35%, #607d8b 0 4px, transparent 5px),
        linear-gradient(#d7e2e7, #d7e2e7);
      overflow: hidden;
    }

    .avatar.photo {
      background:
        linear-gradient(0deg, rgba(0, 0, 0, .4), transparent),
        radial-gradient(circle at 35% 35%, #494949, #aeb3b6 42%, #2b2b2b 43%);
    }

    .user {
      font-weight: 700;
      font-size: 15px;
    }

    .helpful {
      display: flex;
      align-items: center;
      gap: 5px;
      color: #555;
      font-size: 14px;
    }

    .stars {
      margin: 9px 0 8px;
      color: #ffb20d;
      letter-spacing: 1px;
      font-size: 16px;
    }

    .variant-line {
      color: #777;
      font-size: 15px;
      margin-bottom: 8px;
    }

    .review-text {
      margin: 0 0 12px;
      color: #252525;
      font-size: 16px;
      line-height: 1.38;
      white-space: pre-line;
    }

    .review-media {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      max-width: 100%;
      margin-top: 8px;
    }

    .review-photo {
      position: relative;
      width: 72px;
      height: 72px;
      border-radius: 2px;
      overflow: hidden;
      border: 1px solid #eee;
      background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .7) 0 30px, transparent 31px),
        linear-gradient(90deg, rgba(228, 65, 98, .82) 38% 52%, transparent 53%),
        var(--photo-bg, #e1e5e2);
    }

    .review-photo.video::after {
      content: "0:10";
      position: absolute;
      right: 7px;
      bottom: 6px;
      color: #fff;
      font-size: 13px;
    }

    .review-photo.video::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 34px;
      background: rgba(0, 0, 0, .48);
    }

    .review-photo img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      background: #f7f7f7;
      transition: transform .16s ease;
    }

    .review-photo:active img {
      transform: scale(.97);
    }

    .review-date {
      margin-top: 10px;
      color: #777;
      font-size: 14px;
    }

    .seller-reply {
      margin-top: 10px;
      padding: 8px 9px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-radius: 4px;
      background: #f5f5f5;
      color: #777;
      font-size: 15px;
    }

    .review-loader {
      padding: 14px 12px 20px;
      border-top: 1px solid var(--line);
      background: #fff;
      color: #888;
      font-size: 14px;
      text-align: center;
    }

    .review-loader.done {
      color: #aaa;
    }

    .recommend {
      background: #f1f1f1;
      padding: 12px 8px 0;
    }

    .recommend-title {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 17px;
      font-weight: 700;
    }

    .recommend-title::before,
    .recommend-title::after {
      content: "";
      width: 48px;
      height: 1px;
      background: #999;
    }

    .grid-products {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 6px;
    }

    .product-card {
      position: relative;
      background: #fff;
      overflow: hidden;
    }

    .product-card .mock-card {
      height: auto;
      aspect-ratio: 1 / 1;
    }

    .brand-footer {
      margin-top: 8px;
      padding: 26px 16px calc(30px + var(--safe-bottom));
      background:
        linear-gradient(180deg, rgba(95, 24, 31, .92), rgba(42, 21, 24, .98)),
        #4b1f25;
      color: #f4e8e5;
    }

    .footer-logo {
      display: block;
      width: min(210px, 72%);
      height: auto;
      margin: 0 auto 20px;
      filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .22));
    }

    .footer-grid {
      display: grid;
      gap: 22px;
    }

    .footer-block h3,
    .footer-block h4 {
      margin: 0 0 10px;
      color: #fff;
      font-size: 16px;
      line-height: 1.3;
    }

    .footer-block p {
      margin: 0 0 8px;
      color: #f0dedb;
      font-size: 14px;
      line-height: 1.45;
    }

    .footer-block a {
      color: #fff;
      text-decoration: none;
    }

    .footer-policies {
      display: grid;
      gap: 8px;
    }

    .footer-socials {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 14px;
    }

    .footer-socials a {
      min-width: 42px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .12);
      color: #fff;
      font-size: 13px;
      text-align: center;
    }

    .footer-copy {
      margin-top: 22px;
      padding-top: 14px;
      border-top: 1px solid rgba(255, 255, 255, .18);
      color: #e7d4d1;
      font-size: 13px;
      line-height: 1.45;
      text-align: center;
    }

    .discount {
      position: absolute;
      top: 0;
      right: 0;
      padding: 4px 8px;
      background: #fff3ee;
      color: var(--orange);
      font-size: 14px;
    }

    .card-body {
      padding: 8px;
    }

    .card-name {
      height: 39px;
      color: #222;
      font-size: 15px;
      line-height: 1.28;
      overflow: hidden;
    }

    .card-tags {
      display: flex;
      gap: 4px;
      margin: 6px 0;
      overflow: hidden;
      white-space: nowrap;
    }

    .tag {
      flex: 0 0 auto;
      padding: 1px 4px;
      border: 1px solid var(--orange);
      color: var(--orange);
      font-size: 12px;
      line-height: 16px;
    }

    .tag.hot {
      background: var(--orange);
      color: #fff;
    }

    .card-price {
      color: var(--orange);
      font-size: 20px;
      line-height: 1.2;
    }

    .card-meta,
    .card-ship {
      margin-top: 7px;
      color: #555;
      font-size: 12px;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .card-ship {
      color: #229f92;
    }

    .floating-up {
      position: fixed;
      right: max(12px, calc((100vw - var(--app-max)) / 2 + 12px));
      bottom: calc(80px + var(--safe-bottom));
      z-index: 94;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      display: grid;
      place-items: center;
      border: 1px solid rgba(238, 77, 45, .14);
      background:
        radial-gradient(circle at 34% 20%, rgba(255, 255, 255, .9), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 247, 243, .96));
      color: var(--orange);
      box-shadow:
        0 10px 22px rgba(60, 38, 32, .18),
        inset 0 1px 0 rgba(255, 255, 255, .86);
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px) scale(.96);
      transition: opacity .18s ease, transform .18s ease, visibility .18s ease, box-shadow .18s ease;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
    }

    .floating-up.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0) scale(1);
    }

    .floating-up .icon {
      width: 24px;
      height: 24px;
      stroke-width: 2.35;
      transform: translateY(-1px);
    }

    .floating-up:active {
      transform: translateY(1px) scale(.95);
      box-shadow: 0 5px 12px rgba(60, 38, 32, .14);
    }

    .app.review-mode .floating-up,
    .app.video-mode .floating-up,
    .app.product-detail-mode .floating-up {
      bottom: calc(82px + var(--safe-bottom));
    }

    .bottom-bar {
      position: fixed;
      left: 50%;
      bottom: 0;
      z-index: 96;
      width: var(--app-w);
      transform: translateX(-50%);
      display: grid;
      grid-template-columns: 1fr 1fr 2fr;
      height: calc(64px + var(--safe-bottom));
      padding-bottom: var(--safe-bottom);
      background: #fff;
      box-shadow: 0 -4px 14px rgba(0, 0, 0, .12);
    }

    .bottom-btn {
      display: grid;
      place-items: center;
      color: #fff;
      background: var(--teal);
      border-right: 1px solid rgba(0, 0, 0, .18);
      font-size: 24px;
    }

    .buy-btn {
      background: var(--orange);
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      line-height: 1.25;
    }

    .buy-btn strong {
      font-family: var(--display-font);
      font-size: 20px;
      font-weight: 500;
    }

    .sheet-overlay {
      position: fixed;
      inset: 0;
      z-index: 110;
      display: none;
      align-items: flex-end;
      justify-content: center;
      background: rgba(0, 0, 0, .58);
    }

    .sheet-overlay.open {
      display: flex;
    }

    .sheet {
      width: var(--app-w);
      max-height: 78vh;
      max-height: 78dvh;
      padding-bottom: calc(14px + var(--safe-bottom));
      border-radius: 12px 12px 0 0;
      background: #fff;
      overflow: auto;
      animation: slideUp .2s ease-out;
    }

    @keyframes slideUp {
      from { transform: translateY(28px); opacity: .8; }
      to { transform: translateY(0); opacity: 1; }
    }

    .sheet-head {
      position: relative;
      display: grid;
      grid-template-columns: 128px 1fr;
      gap: 12px;
      padding: 12px;
      border-bottom: 1px solid var(--line);
    }

    .sheet-img {
      width: 128px;
      height: 128px;
      border: 1px solid #ddd;
      border-radius: 5px;
      overflow: hidden;
    }

    .sheet-info {
      align-self: end;
      padding-bottom: 10px;
    }

    .sheet-price {
      color: var(--orange);
      font-size: 24px;
      line-height: 1.2;
      white-space: nowrap;
    }

    .old-price {
      color: #aaa;
      font-size: 14px;
      text-decoration: line-through;
    }

    .stock {
      margin-top: 16px;
      color: #999;
      font-size: 15px;
    }

    .close-sheet {
      position: absolute;
      top: 13px;
      right: 13px;
      width: 30px;
      height: 30px;
      color: #999;
    }

    .close-sheet::before,
    .close-sheet::after {
      content: "";
      position: absolute;
      left: 14px;
      top: 2px;
      width: 2px;
      height: 28px;
      background: currentColor;
    }

    .close-sheet::before { transform: rotate(45deg); }
    .close-sheet::after { transform: rotate(-45deg); }

    .sheet-ship {
      display: grid;
      grid-template-columns: 34px 1fr;
      align-items: center;
      gap: 2px;
      padding: 12px;
      border-bottom: 1px solid var(--line);
      font-size: 16px;
      font-weight: 700;
    }

    .option-block {
      padding: 12px;
      border-bottom: 1px solid var(--line);
    }

    .option-title {
      margin: 0 0 12px;
      font-size: 15px;
    }

    .options {
      display: flex;
      flex-wrap: wrap;
      gap: 10px 12px;
    }

    .option {
      min-height: 36px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      max-width: 100%;
      padding: 5px 10px;
      border: 1px solid transparent;
      border-radius: 4px;
      background: #f5f5f5;
      color: #222;
      font-size: 15px;
      text-align: left;
    }

    .option img,
    .option .tiny-img {
      width: 28px;
      height: 22px;
      border-radius: 2px;
      background: #fff;
    }

    .option.selected {
      border-color: var(--orange);
      color: var(--orange);
      background: #fff;
    }

    .option.disabled {
      opacity: .42;
      color: #888;
    }

    .option.single-option {
      cursor: default;
    }

    .qty-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 12px;
      font-size: 17px;
    }

    .qty-control {
      display: grid;
      grid-template-columns: 42px 54px 42px;
      height: 27px;
      border: 1px solid #ddd;
      border-radius: 7px;
      overflow: hidden;
      color: var(--orange);
    }

    .qty-control button,
    .qty-control span {
      display: grid;
      place-items: center;
      border-right: 1px solid #ddd;
      background: #fff;
      font-size: 17px;
    }

    .qty-control button:last-child {
      border-right: 0;
      color: #777;
    }

    .qty-control button:first-child {
      color: #ddd;
    }

    .sheet-submit-wrap {
      padding: 8px 8px 0;
      background: #fafafa;
      border-top: 1px solid var(--line);
    }

    .sheet-submit {
      width: 100%;
      height: 46px;
      border-radius: 6px;
      background: var(--orange);
      color: #fff;
      font-size: 18px;
    }

    .sheet-submit.disabled {
      background: #e7e7e7;
      color: #aaa;
    }

    .info-sheet {
      width: var(--app-w);
      max-height: min(78vh, 708px);
      max-height: min(78dvh, 708px);
      padding-bottom: calc(14px + var(--safe-bottom));
      border-radius: 12px 12px 0 0;
      background: #fff;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      animation: slideUp .2s ease-out;
      box-shadow: 0 -8px 22px rgba(0, 0, 0, .12);
    }

    .info-sheet.tall {
      min-height: min(71vh, 620px);
      min-height: min(71dvh, 620px);
    }

    .info-title {
      height: 44px;
      display: grid;
      place-items: center;
      border-bottom: 1px solid var(--line);
      color: #242424;
      font-family: var(--display-font);
      font-size: 19px;
      font-weight: 700;
      text-align: center;
    }

    .info-body {
      flex: 1 1 auto;
      max-height: calc(min(78vh, 708px) - 118px - var(--safe-bottom));
      max-height: calc(min(78dvh, 708px) - 118px - var(--safe-bottom));
      overflow-y: auto;
      scrollbar-width: none;
    }

    .info-body::-webkit-scrollbar {
      display: none;
    }

    .ship-promise {
      padding: 16px 12px 14px;
      border-bottom: 1px solid var(--line);
    }

    .ship-promise h3 {
      margin: 0;
      display: flex;
      align-items: center;
      gap: 7px;
      color: #242424;
      font-size: 17px;
      line-height: 1.25;
    }

    .fast-icon {
      display: inline-block;
      width: 22px;
      height: 14px;
      border: 2px solid #39bfb0;
      border-left: 0;
      border-radius: 0 9px 9px 0;
      position: relative;
    }

    .fast-icon::before {
      content: "";
      position: absolute;
      left: -11px;
      top: 3px;
      width: 13px;
      height: 2px;
      background: #39bfb0;
      box-shadow: -5px 5px 0 #39bfb0, 0 -5px 0 #39bfb0;
    }

    .fast-icon::after {
      content: "";
      position: absolute;
      right: 3px;
      top: 3px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: #39bfb0;
    }

    .ship-promise p {
      margin: 11px 0 0;
      color: #666;
      font-size: 15px;
      line-height: 1.3;
    }

    .ship-address {
      display: grid;
      grid-template-columns: 1fr auto 18px;
      align-items: center;
      gap: 8px;
      padding: 14px 12px;
      border-bottom: 10px solid #f6f6f6;
      color: #242424;
      font-size: 16px;
    }

    .ship-address strong {
      font-weight: 500;
      white-space: nowrap;
    }

    .shipping-option {
      display: grid;
      grid-template-columns: 34px minmax(0, 1fr) max-content;
      align-items: start;
      gap: 6px;
      padding: 14px 12px;
      border-bottom: 10px solid #f6f6f6;
    }

    .shipping-option.compact {
      grid-template-columns: minmax(0, 1fr) auto;
      padding-left: 12px;
    }

    .shipping-option.pickup {
      border-bottom: 0;
      border-top: 1px solid var(--line);
      margin: 0 12px;
      padding-left: 0;
      padding-right: 0;
    }

    .ship-date {
      color: #242424;
      font-size: 17px;
      line-height: 1.25;
      font-weight: 700;
    }

    .ship-service,
    .ship-eta {
      margin-top: 8px;
      color: #777;
      font-size: 15px;
      line-height: 1.32;
    }

    .ship-eta {
      margin-top: 5px;
    }

    .ship-price {
      padding-top: 2px;
      color: var(--teal);
      font-size: 15px;
      white-space: nowrap;
    }

    .ship-price del {
      color: #aaa;
      margin-right: 6px;
    }

    .pickup-title {
      padding: 16px 12px 12px;
      color: #242424;
      font-size: 17px;
      font-weight: 700;
    }

    .info-submit-wrap {
      flex: 0 0 auto;
      padding: 10px 8px calc(10px + var(--safe-bottom));
      background: #fff;
      box-shadow: 0 -4px 15px rgba(0, 0, 0, .06);
    }

    .info-submit {
      width: 100%;
      height: 46px;
      border-radius: 6px;
      background: var(--orange);
      color: #fff;
      font-size: 18px;
    }

    .spec-list {
      padding: 12px 24px 86px;
    }

    .spec-row {
      display: grid;
      grid-template-columns: minmax(96px, .76fr) 1fr 20px;
      align-items: center;
      min-height: 40px;
      gap: 10px;
      color: #606060;
      font-size: 16px;
    }

    .spec-row + .spec-row {
      margin-top: 10px;
    }

    .spec-value {
      color: #5f5f5f;
    }

    .care-row {
      display: grid;
      grid-template-columns: 52px 1fr 20px;
      gap: 8px;
      align-items: start;
      padding: 20px 12px 0;
      color: inherit;
      text-decoration: none;
    }

    .care-row + .care-row {
      padding-top: 28px;
    }

    .care-icon {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      color: var(--orange);
    }

    .care-icon.box {
      border: 2px solid currentColor;
      border-radius: 50%;
      position: relative;
    }

    .care-icon.box::before {
      content: "";
      width: 16px;
      height: 16px;
      border: 2px solid currentColor;
      transform: rotate(30deg);
    }

    .care-icon.shield {
      background: var(--orange);
      color: #fff;
      clip-path: polygon(50% 0, 90% 14%, 84% 68%, 50% 100%, 16% 68%, 10% 14%);
      font-size: 21px;
      font-weight: 800;
    }

    .care-copy h3 {
      margin: 0 0 8px;
      color: #242424;
      font-size: 17px;
      line-height: 1.25;
    }

    .care-copy p {
      margin: 0;
      color: #7b7b7b;
      font-size: 15px;
      line-height: 1.22;
    }

    .care-copy .small {
      font-size: 15px;
      line-height: 1.35;
    }

    .assurance-sheet {
      max-height: min(82vh, 560px);
      max-height: min(82dvh, 560px);
      min-height: 0;
      padding-bottom: 0;
    }

    .assurance-sheet .info-body {
      max-height: none;
      padding-bottom: 4px;
    }

    .assurance-sheet .care-row {
      padding: 16px 14px;
    }

    .assurance-sheet .care-row + .care-row {
      padding-top: 16px;
      border-top: 1px solid var(--line);
    }

    .assurance-sheet .care-copy p {
      font-size: 14px;
      line-height: 1.3;
    }

    .price-sheet {
      width: var(--app-w);
      max-height: min(58vh, 560px);
      max-height: min(58dvh, 560px);
      padding-bottom: calc(18px + var(--safe-bottom));
      border-radius: 12px 12px 0 0;
      background: #fff;
      overflow: hidden;
      animation: slideUp .2s ease-out;
      box-shadow: 0 -8px 22px rgba(0, 0, 0, .12);
    }

    .price-sheet-title {
      position: relative;
      height: 56px;
      display: grid;
      place-items: center;
      border-bottom: 1px solid var(--line);
      color: #242424;
      font-family: var(--display-font);
      font-size: 20px;
      font-weight: 700;
    }

    .price-close {
      position: absolute;
      right: 13px;
      top: 11px;
      width: 34px;
      height: 34px;
      color: #555;
    }

    .price-close::before,
    .price-close::after {
      content: "";
      position: absolute;
      left: 16px;
      top: 1px;
      width: 2px;
      height: 32px;
      border-radius: 2px;
      background: currentColor;
    }

    .price-close::before {
      transform: rotate(45deg);
    }

    .price-close::after {
      transform: rotate(-45deg);
    }

    .price-detail-body {
      padding: 0 12px;
      color: #242424;
    }

    .price-detail-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 14px;
      align-items: start;
      padding: 17px 0;
      border-bottom: 1px solid var(--line);
      font-size: 17px;
      line-height: 1.22;
    }

    .price-detail-row:last-child {
      border-bottom: 0;
      padding-bottom: 4px;
    }

    .price-detail-label strong {
      font-weight: 700;
    }

    .price-detail-note {
      margin-top: 7px;
      color: #999;
      font-size: 14px;
      line-height: 1.24;
    }

    .price-detail-value {
      color: #606060;
      font-family: var(--display-font);
      font-size: 17px;
      white-space: nowrap;
    }

    .price-detail-value.minus,
    .price-detail-value.total {
      color: var(--orange);
    }

    .price-detail-value.total {
      font-size: 22px;
      font-weight: 800;
      line-height: 1.05;
    }

    .page {
      display: block;
    }

    .page.hidden {
      display: none;
    }

    .page.gesture-back-preview {
      transform: translate3d(var(--gesture-x, 0), 0, 0);
      will-change: transform;
      box-shadow: -12px 0 28px rgba(0, 0, 0, .08);
    }

    .page.gesture-back-reset,
    .page.gesture-back-finish {
      transition: transform .17s cubic-bezier(.22, .75, .28, 1), box-shadow .17s ease;
    }

    .review-page-header {
      position: sticky;
      top: 0;
      z-index: 78;
      height: 56px;
      display: grid;
      grid-template-columns: 46px 1fr 42px;
      align-items: center;
      padding: 0 12px;
      background: #fff;
      color: var(--orange);
    }

    .review-page-header h2 {
      margin: 0;
      color: #222;
      font-size: 22px;
      font-weight: 500;
    }

    .review-page-header button,
    .review-page-header a {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      color: var(--orange);
      text-decoration: none;
    }

    .video-page {
      min-height: 100svh;
      background: #f5f5f5;
      touch-action: pan-y;
    }

    #videoPage {
      position: fixed;
      inset: 0 auto 0 50%;
      z-index: 90;
      width: var(--app-w);
      max-width: var(--app-max);
      min-height: 100svh;
      overflow-y: auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      transform: translateX(-50%);
      padding-bottom: calc(76px + var(--safe-bottom));
    }

    .video-page.active-page {
      animation: none;
    }

    .video-page-header {
      position: sticky;
      top: 0;
      z-index: 78;
      height: 56px;
      display: grid;
      grid-template-columns: 46px 1fr 46px;
      align-items: center;
      padding: 0 12px;
      border-bottom: 1px solid var(--line);
      background: #fff;
      color: var(--orange);
    }

    .video-page-header h1 {
      margin: 0;
      color: #222;
      font-size: 20px;
      font-weight: 600;
      text-align: left;
    }

    .video-page-header button {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      color: var(--orange);
    }

    .video-page-copy {
      padding: 14px 12px 12px;
      border-bottom: 1px solid var(--line);
      background: #fff;
      color: #666;
      font-size: 14px;
      line-height: 1.35;
    }

    .video-page-copy p {
      margin: 0;
    }

    .video-page.active-page .video-page-header,
    .video-page.active-page .video-page-copy,
    .video-page.active-page .product-video-grid {
      animation: none;
    }

    .product-detail-page {
      min-height: 100vh;
      min-height: 100dvh;
      background: #f5f5f5;
    }

    .product-detail-header {
      position: sticky;
      top: 0;
      z-index: 78;
      height: 56px;
      display: grid;
      grid-template-columns: 46px 1fr 46px;
      align-items: center;
      padding: 0 12px;
      border-bottom: 1px solid var(--line);
      background: #fff;
      color: var(--orange);
    }

    .product-detail-header h1 {
      margin: 0;
      color: #222;
      font-size: 19px;
      font-weight: 600;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .product-detail-header button {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      color: var(--orange);
    }

    .product-detail-media {
      position: relative;
      min-height: var(--app-w);
      display: grid;
      place-items: center;
      background: #fff;
      overflow: hidden;
    }

    .product-detail-media img {
      display: block;
      width: 100%;
      height: var(--app-w);
      object-fit: cover;
      background: #f7f7f7;
    }

    .product-detail-media .mock-card {
      width: min(64vw, 260px);
      height: min(82vw, 330px);
      border-radius: 8px;
      box-shadow: 0 16px 38px rgba(0, 0, 0, .16);
    }

    .product-detail-info {
      padding: 12px;
      background: #fff;
    }

    .product-detail-price {
      display: flex;
      align-items: baseline;
      gap: 8px;
      margin-bottom: 8px;
      color: var(--orange);
      font-size: 25px;
      font-weight: 800;
    }

    .product-detail-price small {
      color: #999;
      font-size: 15px;
      font-weight: 400;
      text-decoration: line-through;
    }

    .product-detail-name {
      margin: 0 0 8px;
      color: #222;
      font-size: 17px;
      font-weight: 700;
      line-height: 1.35;
    }

    .product-official-badge {
      display: inline-block;
      margin-right: 6px;
      padding: 2px 4px;
      border-radius: 1px;
      background: #d9001b;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      line-height: 1.1;
      vertical-align: 2px;
    }

    .product-detail-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      color: #777;
      font-size: 14px;
    }

    .product-detail-desc {
      margin-top: 8px;
      padding: 12px;
      background: #fff;
      color: #555;
      font-size: 15px;
      line-height: 1.5;
    }

    .product-detail-gallery {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 6px;
      padding: 8px;
      background: #f5f5f5;
    }

    .product-detail-gallery img {
      display: block;
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      border-radius: 5px;
      background: #fff;
    }

    [data-open-light-product] {
      cursor: pointer;
    }

    .checkout-page-header {
      position: sticky;
      top: 0;
      z-index: 78;
      height: 56px;
      display: grid;
      grid-template-columns: 46px 1fr 42px;
      align-items: center;
      padding: 0 12px;
      border-bottom: 1px solid var(--line);
      background: #fff;
      color: var(--orange);
    }

    .checkout-page-header h2 {
      margin: 0;
      color: #222;
      font-size: 21px;
      font-weight: 600;
      text-align: left;
    }

    .checkout-page {
      background: #f5f5f5;
      min-height: 100vh;
      min-height: 100dvh;
    }

    .checkout-section {
      margin-top: 8px;
      background: #fff;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .checkout-address {
      display: grid;
      grid-template-columns: 28px 1fr 18px;
      gap: 8px;
      padding: 14px 12px;
      width: 100%;
      background: #fff;
      color: #242424;
      text-align: left;
    }

    .checkout-address-icon {
      color: var(--orange);
      font-size: 22px;
      line-height: 1;
    }

    .checkout-address b {
      display: block;
      margin-bottom: 5px;
      font-size: 16px;
      line-height: 1.25;
    }

    .checkout-address span {
      display: block;
      color: #666;
      font-size: 14px;
      line-height: 1.35;
    }

    .checkout-address.empty b {
      color: var(--orange);
    }

    .checkout-address.empty span {
      color: #999;
    }

    .checkout-shop-title {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 12px;
      border-bottom: 1px solid var(--line);
      font-size: 16px;
      font-weight: 700;
    }

    .checkout-shop-title .shop-dot {
      width: 18px;
      height: 18px;
      border-radius: 3px;
      display: grid;
      place-items: center;
      background: var(--orange);
      color: #fff;
      font-size: 12px;
      font-weight: 800;
    }

    .checkout-item {
      display: grid;
      grid-template-columns: 78px minmax(0, 1fr);
      gap: 10px;
      padding: 12px;
      border-bottom: 1px solid #f0f0f0;
    }

    .checkout-item:last-child {
      border-bottom: 0;
    }

    .checkout-thumb {
      width: 78px;
      height: 78px;
      border: 1px solid #ddd;
      border-radius: 4px;
      overflow: hidden;
    }

    .checkout-item-name {
      color: #222;
      font-size: 15px;
      line-height: 1.28;
      display: -webkit-box;
      overflow: hidden;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
    }

    .checkout-variant {
      margin-top: 6px;
      color: #888;
      font-size: 13px;
      line-height: 1.25;
    }

    .checkout-item-bottom {
      margin-top: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .checkout-price {
      color: var(--orange);
      font-size: 16px;
      white-space: nowrap;
    }

    .checkout-qty {
      display: grid;
      grid-template-columns: 30px 38px 30px;
      height: 26px;
      border: 1px solid #ddd;
      border-radius: 4px;
      overflow: hidden;
      flex: 0 0 auto;
    }

    .checkout-qty button,
    .checkout-qty span {
      display: grid;
      place-items: center;
      border-right: 1px solid #ddd;
      color: #555;
      background: #fff;
      font-size: 15px;
    }

    .checkout-qty button:last-child {
      border-right: 0;
    }

    .checkout-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto 18px;
      align-items: center;
      gap: 8px;
      padding: 13px 12px;
      border-top: 1px solid var(--line);
      color: #222;
      font-size: 15px;
    }

    .checkout-row small {
      display: block;
      margin-top: 4px;
      color: #888;
      font-size: 13px;
      line-height: 1.25;
    }

    .checkout-row strong {
      color: var(--teal);
      font-weight: 500;
      white-space: nowrap;
    }

    .checkout-row strong.pending {
      color: #999;
    }

    .checkout-summary {
      padding: 4px 12px;
    }

    .summary-line {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 10px 0;
      color: #555;
      font-size: 14px;
    }

    .summary-line b {
      color: #222;
      font-weight: 500;
    }

    .checkout-submit-bar {
      position: fixed;
      left: 50%;
      bottom: 0;
      z-index: 98;
      width: var(--app-w);
      min-height: calc(72px + var(--safe-bottom));
      padding: 8px 12px calc(8px + var(--safe-bottom));
      transform: translateX(-50%);
      display: grid;
      grid-template-columns: minmax(0, 1fr) 140px;
      gap: 10px;
      align-items: center;
      background: #fff;
      box-shadow: 0 -4px 14px rgba(0, 0, 0, .12);
    }

    .checkout-total-copy {
      color: #555;
      font-size: 13px;
      line-height: 1.25;
      min-width: 0;
    }

    .checkout-total-copy strong {
      display: block;
      margin-top: 2px;
      color: var(--orange);
      font-family: var(--display-font);
      font-size: 21px;
      font-weight: 700;
      white-space: nowrap;
    }

    .place-order-btn {
      height: 46px;
      border-radius: 4px;
      background: var(--orange);
      color: #fff;
      font-size: 17px;
      font-weight: 500;
    }

    .place-order-btn:disabled {
      background: #ddd;
      color: #999;
    }

    .address-form {
      padding: 12px;
      display: grid;
      gap: 10px;
    }

    .address-field {
      display: grid;
      gap: 6px;
    }

    .address-field label {
      color: #555;
      font-size: 14px;
    }

    .optional-label {
      margin-left: 4px;
      color: #999;
      font-size: 12px;
      font-weight: 500;
    }

    .address-field input,
    .address-field textarea {
      width: 100%;
      border: 1px solid #ddd;
      border-radius: 4px;
      padding: 10px 11px;
      color: #222;
      background: #fff;
      font: inherit;
      font-size: 15px;
      outline: none;
    }

    .address-field textarea {
      min-height: 72px;
      resize: vertical;
    }

    .address-field input:focus,
    .address-field textarea:focus {
      border-color: var(--orange);
    }

    .toast {
      position: fixed;
      left: 50%;
      bottom: calc(92px + var(--safe-bottom));
      z-index: 130;
      max-width: calc(var(--app-w) - 40px);
      padding: 10px 14px;
      border-radius: 999px;
      transform: translateX(-50%) translateY(12px);
      background: rgba(0, 0, 0, .78);
      color: #fff;
      font-size: 14px;
      line-height: 1.25;
      opacity: 0;
      pointer-events: none;
      transition: opacity .18s ease, transform .18s ease;
      white-space: nowrap;
    }

    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }

    .screen-reader {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
    }

    @media (max-width: 389px) {
      .topbar {
        grid-template-columns: 38px 1fr 38px 38px 32px;
        gap: 2px;
        padding-inline: 12px;
      }

      .circle-action {
        width: 30px;
        height: 30px;
      }

      .search-pill {
        height: 34px;
        padding-inline: 10px;
        font-size: 14px;
      }

      .hero-copy {
        right: 13px;
        width: 54%;
      }

      .hero-copy .script {
        font-size: clamp(42px, 14vw, 56px);
      }

      .hero-copy h1 {
        font-size: clamp(34px, 11vw, 43px);
      }

      .feature-bars {
        gap: 7px;
      }

      .feature-bar {
        min-height: 38px;
        padding: 8px 8px 7px 27px;
        font-size: 9px;
      }

      .product-stage {
        left: 12px;
        width: 39%;
      }

      .bottle {
        width: clamp(58px, 18vw, 70px);
        height: clamp(208px, 64vw, 250px);
      }

      .bottle b {
        font-size: clamp(36px, 11vw, 44px);
      }

      .bottle-mini {
        width: 40px;
        height: 142px;
      }

      .price-row {
        gap: 6px;
      }

      .price-main {
        font-size: 23px;
      }

      .price-detail-trigger {
        font-size: 13px;
      }

      .sold {
        gap: 4px;
        font-size: 13px;
      }

      .title,
      .thin-row,
      .shipping {
        font-size: 14px;
      }

      .video-card {
        flex-basis: 34%;
        height: 132px;
      }

      .bottom-bar {
        grid-template-columns: .9fr .9fr 2.2fr;
      }

      .buy-btn {
        font-size: 15px;
      }

      .buy-btn strong {
        font-size: 19px;
      }

      .sheet-head {
        grid-template-columns: 112px minmax(0, 1fr);
      }

      .sheet-img {
        width: 112px;
        height: 112px;
      }

      .sheet-price {
        font-size: 21px;
      }

      .shipping-option {
        grid-template-columns: 28px minmax(0, 1fr) max-content;
        gap: 4px;
      }

      .shipping-option.compact,
      .shipping-option.pickup {
        grid-template-columns: minmax(0, 1fr) max-content;
      }

      .ship-price {
        font-size: 14px;
      }

      .spec-list {
        padding-inline: 18px;
      }

      .care-row {
        grid-template-columns: 44px 1fr 18px;
      }

      .checkout-submit-bar {
        grid-template-columns: minmax(0, 1fr) 128px;
      }

      .checkout-total-copy strong {
        font-size: 19px;
      }

      .place-order-btn {
        font-size: 16px;
      }
    }

    @media (max-width: 340px) {
      .topbar {
        grid-template-columns: 34px 1fr 34px 34px 30px;
        padding-inline: 9px;
      }

      .icon {
        width: 23px;
        height: 23px;
      }

      .hero-brand {
        top: 14px;
        gap: 10px;
        font-size: 9px;
      }

      .logo-script {
        font-size: 17px;
      }

      .play-float {
        width: 62px;
        height: 62px;
      }

      .play-triangle {
        border-top-width: 16px;
        border-bottom-width: 16px;
        border-left-width: 23px;
      }

      .thumb {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
      }

      .price-main {
        font-size: 21px;
      }

      .price-row {
        grid-template-columns: 1fr;
        align-items: start;
      }

      .sold {
        justify-self: end;
      }

      .video-list {
        gap: 6px;
      }

      .video-card {
        height: 120px;
      }

      .video-card span {
        font-size: 13px;
      }

      .card-price {
        font-size: 18px;
      }

      .price-detail-row {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .price-detail-value {
        justify-self: end;
      }

      .checkout-item {
        grid-template-columns: 70px minmax(0, 1fr);
      }

      .checkout-thumb {
        width: 70px;
        height: 70px;
      }

      .checkout-submit-bar {
        grid-template-columns: 1fr;
      }

      .place-order-btn {
        width: 100%;
      }
    }

    @media (min-width: 431px) {
      body {
        background:
          linear-gradient(90deg, #dcdcdc 0, #ededed 50%, #dcdcdc 100%);
      }

      .app {
        min-height: 100vh;
        min-height: 100dvh;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
      }
    }

    @media (hover: none) {
      button {
        cursor: default;
      }
    }

    /* Button and icon polish */
    button,
    .circle-action,
    .bottom-btn,
    .buy-btn,
    .sheet-submit,
    .info-submit,
    .place-order-btn,
    .option,
    .filter,
    .shop-btn,
    .checkout-address,
    .checkout-qty button,
    .qty-control button,
    .price-detail-trigger {
      transition: transform .14s ease, box-shadow .14s ease, background .14s ease, border-color .14s ease, color .14s ease, opacity .14s ease;
    }

    button:focus-visible {
      outline: 2px solid rgba(238, 77, 45, .38);
      outline-offset: 2px;
    }

    button:active,
    .option:active,
    .filter:active,
    .checkout-address:active {
      transform: scale(.985);
    }

    .icon {
      stroke-width: 2;
      vector-effect: non-scaling-stroke;
    }

    .mini-icon {
      width: 20px;
      height: 20px;
    }

    .circle-action {
      border: 1px solid rgba(255, 255, 255, .32);
      background: rgba(40, 40, 40, .36);
      box-shadow: 0 8px 18px rgba(0, 0, 0, .14);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .topbar.is-scrolled .circle-action,
    .topbar.force-solid .circle-action {
      border-color: rgba(238, 77, 45, .12);
      background: linear-gradient(180deg, #fff, #fff7f4);
      box-shadow: 0 4px 12px rgba(238, 77, 45, .12);
    }

    .circle-action:active {
      box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
    }

    .search-pill {
      border: 1px solid rgba(0, 0, 0, .04);
      border-radius: 7px;
      background: #f3f3f3;
    }

    .badge {
      right: -6px;
      top: -8px;
      min-width: 19px;
      height: 19px;
      border: 2px solid #fff;
      background: linear-gradient(180deg, #ff6548, #ee3f24);
      box-shadow: 0 3px 8px rgba(238, 77, 45, .24);
      font-size: 11px;
      line-height: 15px;
      font-weight: 700;
    }

    .truck,
    .shield,
    .wallet,
    .checkout-address-icon {
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      font-size: 0;
      transform: none;
    }

    .truck {
      background: #e8faf6;
      color: var(--teal);
    }

    .shield,
    .wallet,
    .checkout-address-icon {
      background: #fff0ec;
      color: var(--orange);
    }

    .bottom-btn {
      background: linear-gradient(180deg, #35c5b4, #239d90);
      box-shadow: inset -1px 0 0 rgba(0, 0, 0, .12);
    }

    .buy-btn,
    .sheet-submit,
    .info-submit,
    .place-order-btn {
      background: linear-gradient(180deg, #ff674c, #ee4328);
      box-shadow: 0 8px 18px rgba(238, 77, 45, .22);
      font-weight: 500;
    }

    .buy-btn:active,
    .sheet-submit:active,
    .info-submit:active,
    .place-order-btn:active,
    .bottom-btn:active {
      filter: brightness(.96);
      box-shadow: 0 3px 10px rgba(238, 77, 45, .16);
    }

    .place-order-btn:disabled,
    .sheet-submit.disabled {
      background: #e7e7e7;
      box-shadow: none;
      filter: none;
    }

    .price-detail-trigger {
      min-height: 22px;
      padding: 3px 6px;
      border-radius: 999px;
      background: #fff3ef;
      box-shadow: inset 0 0 0 1px rgba(238, 77, 45, .1);
    }

    .shop-btn {
      border-radius: 6px;
      background: #fff;
      box-shadow: inset 0 0 0 1px rgba(238, 77, 45, .14);
      font-weight: 500;
    }

    .option,
    .filter {
      border-radius: 7px;
      background: #f8f8f8;
    }

    .option.selected,
    .filter.active {
      position: relative;
      border-color: var(--orange);
      background: #fff8f5;
      box-shadow: 0 4px 12px rgba(238, 77, 45, .09);
    }

    .option.selected::after {
      content: "";
      position: absolute;
      right: 0;
      bottom: 0;
      width: 0;
      height: 0;
      border-bottom: 14px solid var(--orange);
      border-left: 14px solid transparent;
      border-radius: 0 0 6px 0;
    }

    .qty-control,
    .checkout-qty {
      border-radius: 8px;
      background: #fff;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .04);
    }

    .qty-control button,
    .checkout-qty button {
      color: var(--orange);
      background: linear-gradient(180deg, #fff, #fafafa);
    }

    .checkout-address {
      box-shadow: inset 3px 0 0 rgba(238, 77, 45, .82);
    }

    .checkout-address.empty {
      background: linear-gradient(180deg, #fff, #fffaf8);
      box-shadow: inset 3px 0 0 rgba(238, 77, 45, .82), 0 4px 12px rgba(238, 77, 45, .06);
    }

    .sheet,
    .info-sheet,
    .price-sheet {
      border: 1px solid rgba(0, 0, 0, .04);
      box-shadow: 0 -14px 32px rgba(0, 0, 0, .16);
    }

    .close-sheet,
    .price-close {
      border-radius: 999px;
    }

    .close-sheet:active,
    .price-close:active {
      background: #f5f5f5;
    }

    .address-field input,
    .address-field textarea {
      border-radius: 7px;
      background: #fbfbfb;
    }

    .address-field input:focus,
    .address-field textarea:focus {
      background: #fff;
      box-shadow: 0 0 0 3px rgba(238, 77, 45, .08);
    }

    /* Premium action controls */
    .topbar {
      height: 58px;
      grid-template-columns: 38px 1fr 38px 34px;
      gap: 7px;
      padding: 8px 14px;
    }

    .circle-action {
      width: 34px;
      height: 34px;
      border: 1px solid rgba(132, 64, 52, .12);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .9), rgba(255, 248, 244, .72));
      color: #8e4039;
      box-shadow:
        0 8px 18px rgba(85, 46, 35, .16),
        inset 0 1px 0 rgba(255, 255, 255, .8);
      backdrop-filter: blur(14px) saturate(1.12);
      -webkit-backdrop-filter: blur(14px) saturate(1.12);
    }

    .circle-action .icon {
      width: 23px;
      height: 23px;
      stroke-width: 2.15;
    }

    .topbar:not(.is-scrolled):not(.force-solid) .circle-action:nth-of-type(2),
    .topbar:not(.is-scrolled):not(.force-solid) .circle-action:nth-of-type(3) {
      color: #6f615c;
    }

    .topbar.is-scrolled .circle-action,
    .topbar.force-solid .circle-action {
      border-color: rgba(238, 77, 45, .14);
      background: linear-gradient(180deg, #fff, #fff5f0);
      color: var(--orange);
      box-shadow: 0 5px 14px rgba(238, 77, 45, .12);
    }

    .circle-action:hover {
      transform: translateY(-1px);
      box-shadow:
        0 11px 22px rgba(85, 46, 35, .18),
        inset 0 1px 0 rgba(255, 255, 255, .9);
    }

    .circle-action:active {
      transform: scale(.95);
      box-shadow: 0 3px 8px rgba(85, 46, 35, .14);
    }

    @media (max-width: 1023px) {
      .topbar.home-topbar {
        position: fixed;
        left: 50%;
        top: 0;
        z-index: 120;
        transform: translateX(-50%);
        width: var(--app-w);
        height: 58px;
        grid-template-columns: 38px minmax(0, 1fr) 40px;
        gap: 8px;
        padding: 8px 10px;
        background: rgba(255, 255, 255, .96);
        color: var(--orange);
        border-bottom: 2px solid rgba(238, 77, 45, .82);
        box-shadow: 0 1px 10px rgba(35, 35, 35, .08);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
      }

      #productPage {
        padding-top: 58px;
      }

      .topbar.home-topbar:not(.is-scrolled):not(.force-solid) {
        grid-template-columns: 38px minmax(0, 1fr) 40px;
      }

      .topbar.home-topbar .search-pill,
      .topbar.home-topbar:not(.is-scrolled):not(.force-solid) .search-pill {
        display: flex;
        visibility: visible;
        height: 38px;
        padding: 0 12px;
        border: 1px solid #ececec;
        border-radius: 9px;
        background: #f6f6f6;
        color: #9a9a9a;
        font-size: 14px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .8);
      }

      .topbar.home-topbar .search-pill .icon {
        width: 20px;
        height: 20px;
        color: #9a9a9a;
        flex: 0 0 auto;
      }

      .topbar.home-topbar .search-pill span {
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .topbar.home-topbar .circle-action,
      .topbar.home-topbar.is-scrolled .circle-action,
      .topbar.home-topbar.force-solid .circle-action {
        width: 36px;
        height: 36px;
        border: 0;
        background: #fff;
        color: var(--orange);
        box-shadow: none;
      }

      .topbar.home-topbar .circle-action .icon {
        width: 22px;
        height: 22px;
        stroke-width: 2;
      }

      .topbar.home-topbar .cart-wrap {
        background: #fff4f1;
        color: #ee4328;
      }

      .topbar.home-topbar .badge {
        right: -3px;
        top: -4px;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        border-width: 1px;
        font-size: 10px;
        line-height: 14px;
      }
    }

    .bottom-bar {
      grid-template-columns: 54px 54px minmax(0, 1fr);
      gap: 10px;
      height: calc(64px + var(--safe-bottom));
      padding: 10px 12px var(--safe-bottom);
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .98));
      box-shadow: 0 -12px 28px rgba(45, 35, 32, .12);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .bottom-btn,
    .buy-btn {
      min-width: 0;
      height: 54px;
      border-radius: 18px;
    }

    .bottom-btn {
      position: relative;
      overflow: hidden;
      color: var(--orange);
      border: 1px solid rgba(238, 77, 45, .16);
      background:
        radial-gradient(circle at 50% 10%, rgba(255, 255, 255, .92), transparent 42%),
        linear-gradient(180deg, #fff 0%, #fff7f4 100%);
      box-shadow:
        0 10px 20px rgba(130, 62, 44, .12),
        inset 0 1px 0 rgba(255, 255, 255, .92);
    }

    .bottom-btn::after {
      content: "";
      position: absolute;
      inset: auto 13px 7px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      opacity: .28;
    }

    .bottom-btn .icon {
      position: relative;
      z-index: 1;
      width: 24px;
      height: 24px;
      stroke-width: 2.1;
      filter: drop-shadow(0 2px 3px rgba(238, 77, 45, .16));
    }

    .messenger-btn {
      color: #0a7cff;
      border-color: rgba(10, 124, 255, .18);
      background:
        radial-gradient(circle at 36% 12%, rgba(255, 255, 255, .96), transparent 40%),
        linear-gradient(180deg, #fff 0%, #f2f8ff 100%);
      box-shadow:
        0 10px 20px rgba(0, 104, 210, .13),
        inset 0 1px 0 rgba(255, 255, 255, .94);
    }

    .messenger-icon {
      position: relative;
      z-index: 1;
      width: 27px;
      height: 27px;
      display: block;
      fill: currentColor;
      filter: drop-shadow(0 2px 4px rgba(0, 86, 190, .18));
    }

    .messenger-header-link .messenger-icon {
      width: 27px;
      height: 27px;
      color: var(--orange);
      filter: none;
    }

    .buy-btn {
      border: 1px solid rgba(255, 255, 255, .36);
      background:
        radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .24), transparent 38%),
        linear-gradient(180deg, #ff684c 0%, #f24c31 58%, #e63f27 100%);
      box-shadow:
        0 10px 22px rgba(238, 77, 45, .28),
        inset 0 1px 0 rgba(255, 255, 255, .32);
      letter-spacing: 0;
    }

    .buy-btn span {
      font-size: 15px;
      line-height: 1.15;
    }

    .buy-btn strong {
      margin-top: 1px;
      font-size: 19px;
      font-weight: 600;
    }

    .bottom-btn:hover,
    .buy-btn:hover {
      transform: translateY(-1px);
    }

    .bottom-btn:active,
    .buy-btn:active {
      transform: scale(.98);
      filter: none;
    }

    @media (max-width: 389px) {
      .topbar {
        grid-template-columns: 36px 1fr 36px 32px;
        gap: 6px;
        padding-inline: 11px;
      }

      .topbar.home-topbar,
      .topbar.home-topbar:not(.is-scrolled):not(.force-solid) {
        grid-template-columns: 36px minmax(0, 1fr) 38px;
        gap: 8px;
        padding-inline: 10px;
      }

      .circle-action {
        width: 32px;
        height: 32px;
      }

      .circle-action .icon {
        width: 22px;
        height: 22px;
      }

      .bottom-bar {
        grid-template-columns: 54px 54px minmax(0, 1fr);
        gap: 7px;
        padding-inline: 8px;
      }
    }

    @media (max-width: 340px) {
      .topbar {
        grid-template-columns: 33px 1fr 33px 30px;
        gap: 5px;
        padding-inline: 8px;
      }

      .topbar.home-topbar,
      .topbar.home-topbar:not(.is-scrolled):not(.force-solid) {
        grid-template-columns: 34px minmax(0, 1fr) 36px;
        gap: 6px;
        padding-inline: 8px;
      }

      .circle-action {
        width: 30px;
        height: 30px;
      }

      .circle-action .icon {
        width: 20px;
        height: 20px;
      }

      .bottom-bar {
        grid-template-columns: 48px 48px minmax(0, 1fr);
        gap: 6px;
        height: calc(62px + var(--safe-bottom));
      }

      .bottom-btn,
      .buy-btn {
        height: 52px;
        border-radius: 12px;
      }

      .buy-btn strong {
        font-size: 18px;
      }
    }

    /* Responsive layout for tablets and desktops */
    @media (min-width: 760px) {
      :root {
        --app-max: 760px;
      }

      body {
        background: #eeeeee;
      }

      .app {
        background: #f5f5f5;
        box-shadow: 0 0 0 1px rgba(0, 0, 0, .05), 0 18px 46px rgba(0, 0, 0, .08);
      }

      .topbar {
        height: 64px;
        grid-template-columns: 44px minmax(240px, 1fr) 44px 40px;
        gap: 8px;
        padding: 10px 18px;
        background: rgba(255, 255, 255, .96);
        color: var(--orange);
        box-shadow: 0 1px 12px rgba(0, 0, 0, .1);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
      }

      .topbar .search-pill,
      .topbar:not(.is-scrolled):not(.force-solid) .search-pill {
        display: flex;
        visibility: visible;
      }

      .topbar:not(.is-scrolled):not(.force-solid) .circle-action {
        border-color: rgba(238, 77, 45, .14);
        background: linear-gradient(180deg, #fff, #fff5f0);
        color: var(--orange);
        box-shadow: 0 5px 14px rgba(238, 77, 45, .12);
      }

      #productPage:not(.hidden) {
        display: grid;
        grid-template-columns: minmax(340px, 1fr) minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        padding: 76px 14px calc(104px + var(--safe-bottom));
      }

      #productPage > .hero {
        grid-column: 1;
        grid-row: 1 / span 4;
        height: auto;
        max-height: none;
        aspect-ratio: 1 / 1;
        border: 1px solid var(--line);
        background: #fff8ef;
      }

      #productPage > .product-head {
        grid-column: 2;
        grid-row: 1;
      }

      #productPage > .title {
        grid-column: 2;
        grid-row: 2;
      }

      #productPage > .delivery-section {
        grid-column: 2;
        grid-row: 3;
      }

      #productPage > .review-summary {
        grid-column: 2;
        grid-row: 4;
      }

      #productPage > .featured-reviews {
        grid-column: 1 / -1;
        align-self: start;
      }

      #productPage > .video-section,
      #productPage > .shop,
      #productPage > .horizontal-products,
      #productPage > .recommend,
      #productPage > .brand-footer,
      #productPage > .section:not(.product-head):not(.title):not(.delivery-section):not(.review-summary):not(.video-section):not(.shop):not(.horizontal-products) {
        grid-column: 1 / -1;
      }

      #productPage > .section,
      #productPage > .featured-reviews,
      #productPage > .recommend,
      #productPage > .brand-footer {
        margin-top: 0;
      }

      .section + .section {
        margin-top: 0;
      }

      .hero-real-image {
        object-fit: cover;
      }

      .hero-inline-video {
        object-fit: cover;
      }

      .product-head {
        padding: 14px 16px 0;
      }

      .variant-title {
        font-size: 14px;
      }

      .thumb-row {
        gap: 10px;
      }

      .thumb {
        flex-basis: 58px;
        width: 58px;
        height: 58px;
        min-width: 58px;
      }

      .flash-sale {
        margin-inline: -16px;
        padding-inline: 16px;
      }

      .price-row {
        margin-inline: -16px;
        padding: 12px 16px;
      }

      .price-main {
        font-size: 30px;
      }

      .title {
        padding: 14px 16px;
        font-size: 17px;
      }

      .shipping,
      .thin-row {
        padding: 14px 16px;
      }

      .review-summary,
      .video-section,
      .shop,
      .horizontal-products {
        padding: 16px;
      }

      .video-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        overflow: visible;
      }

      .video-card {
        width: 100%;
        min-width: 0;
        height: auto;
        aspect-ratio: 9 / 14;
        flex: none;
      }

      .scroller {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        overflow: visible;
      }

      .mini-product {
        min-width: 0;
        flex: none;
      }

      .mini-product .mock-card {
        height: auto;
        aspect-ratio: 1 / 1;
      }

      .grid-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
      }

      .description {
        padding: 18px;
        font-size: 17px;
      }

      .description-media {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
      }

      .footer-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(220px, .8fr);
        gap: 28px;
      }

      .bottom-bar {
        width: min(calc(100vw - 28px), var(--app-max));
        grid-template-columns: 64px 64px minmax(220px, 300px);
        justify-content: end;
        border-radius: 18px 18px 0 0;
      }

      .sheet-overlay {
        align-items: center;
        padding: 24px;
      }

      .sheet,
      .info-sheet,
      .price-sheet {
        width: min(560px, calc(100vw - 48px));
        max-height: min(82vh, 720px);
        max-height: min(82dvh, 720px);
        border-radius: 12px;
        padding-bottom: 14px;
      }

      .info-sheet.tall {
        min-height: min(70vh, 620px);
        min-height: min(70dvh, 620px);
      }

      .price-sheet {
        width: min(500px, calc(100vw - 48px));
      }

      .video-player-shell {
        width: min(420px, calc(100vw - 48px));
      }

      .image-viewer {
        width: min(860px, calc(100vw - 48px));
      }

      .image-close {
        right: 24px;
      }

      .toast {
        max-width: min(560px, calc(100vw - 48px));
      }

      .product-video-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 12px;
        padding: 14px;
      }

      .product-detail-page {
        display: grid;
        grid-template-columns: minmax(340px, .9fr) minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        padding: 0 14px calc(104px + var(--safe-bottom));
      }

      .product-detail-header {
        grid-column: 1 / -1;
        margin-inline: -14px;
      }

      .product-detail-media {
        min-height: 0;
      }

      .product-detail-media img {
        height: auto;
        aspect-ratio: 1 / 1;
      }

      .product-detail-info,
      .product-detail-desc {
        margin-top: 0;
      }

      .product-detail-gallery {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
        padding: 14px 0;
      }

      .checkout-page {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 340px);
        gap: 12px;
        align-items: start;
        padding: 0 14px calc(104px + var(--safe-bottom));
      }

      .checkout-page-header {
        grid-column: 1 / -1;
        margin-inline: -14px;
      }

      .checkout-address {
        grid-column: 1 / -1;
      }

      .checkout-page > .checkout-section:not(.checkout-address):not(.checkout-summary) {
        grid-column: 1;
      }

      .checkout-summary {
        grid-column: 2;
        align-self: start;
        position: sticky;
        top: 68px;
      }

      .checkout-submit-bar {
        width: min(calc(100vw - 28px), var(--app-max));
        grid-template-columns: minmax(0, 1fr) 170px;
        border-radius: 18px 18px 0 0;
      }
    }

    @media (min-width: 1024px) {
      :root {
        --app-max: 1200px;
      }

      body {
        background: #f3f3f3;
      }

      .desktop-home-header {
        display: block;
        background: linear-gradient(180deg, #fff 0%, #fffaf7 100%);
        color: #2b2424;
        border-bottom: 1px solid #f3ded8;
        box-shadow: 0 10px 30px rgba(142, 88, 76, .08);
      }

      .desktop-home-header-inner {
        width: min(1200px, calc(100vw - 48px));
        min-height: 0;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 250px minmax(360px, 1fr) 70px;
        align-items: center;
        gap: 30px;
        padding: 18px 0;
      }

      .desktop-home-brand {
        display: flex;
        align-items: center;
        gap: 14px;
        color: #2b2424;
        text-decoration: none;
        font-size: 25px;
        font-weight: 650;
        line-height: 1.05;
      }

      .desktop-home-mark {
        width: 58px;
        height: 48px;
        display: grid;
        place-items: center;
        border: 1px solid #f3ded8;
        background: #fff;
        border-radius: 999px;
        padding: 7px;
        box-shadow: 0 8px 20px rgba(232, 75, 95, .11);
        overflow: hidden;
      }

      .desktop-home-mark img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
      }

      .desktop-home-search {
        height: 46px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 46px;
        align-items: center;
        border: 1px solid #f0ded9;
        background: #f8f3f1;
        border-radius: 999px;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
        overflow: hidden;
      }

      .desktop-home-search input {
        min-width: 0;
        border: 0;
        outline: 0;
        height: 100%;
        padding: 0 18px;
        background: transparent;
        color: #2b2424;
        font: inherit;
      }

      .desktop-home-search button {
        width: 36px;
        height: 36px;
        display: grid;
        place-items: center;
        justify-self: center;
        border-radius: 999px;
        background: #e84b5f;
        color: #fff;
        box-shadow: 0 8px 18px rgba(232, 75, 95, .2);
      }

      .desktop-home-search .icon {
        width: 22px;
        height: 22px;
      }

      .desktop-home-links {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 18px;
        font-size: 15px;
      }

      .desktop-home-links a,
      .desktop-home-links button {
        position: relative;
        color: #8b7773;
        text-decoration: none;
        font-weight: 600;
      }

      .desktop-home-links a:hover,
      .desktop-home-links button:hover {
        opacity: .85;
      }

      .desktop-home-cart {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 10px 14px;
        border: 1px solid #f3ded8;
        border-radius: 999px;
        background: #fff;
        color: #e84b5f;
        box-shadow: 0 8px 20px rgba(232, 75, 95, .12);
      }

      .desktop-home-links .icon {
        width: 20px;
        height: 20px;
      }

      .desktop-home-links .badge {
        right: -8px;
        top: -8px;
      }

      .app {
        max-width: var(--app-max);
        background: #f3f3f3;
        box-shadow: none;
      }

      .topbar {
        display: none;
      }

      #productPage:not(.hidden) {
        grid-template-columns: minmax(420px, 520px) minmax(0, 1fr);
        gap: 16px;
        padding: 18px 0 56px;
      }

      .product-head,
      .title,
      .delivery-section,
      .review-summary,
      .featured-reviews,
      .video-section,
      .shop,
      .horizontal-products,
      .recommend,
      .brand-footer,
      #productPage > .section:not(.product-head):not(.title):not(.delivery-section):not(.review-summary):not(.video-section):not(.shop):not(.horizontal-products) {
        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
      }

      .hero {
        min-height: 520px;
      }

      .featured-reviews {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
      }

      .featured-reviews .review {
        border: 1px solid var(--line);
      }

      .scroller {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .grid-products {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .product-video-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .review-list-page.active-page {
        display: block;
      }

      #reviewList {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        padding: 12px;
      }

      #reviewList .review {
        border: 1px solid var(--line);
      }

      .review-loader {
        margin: 0 12px 12px;
      }

      .filter-row {
        flex-wrap: wrap;
        overflow: visible;
      }

      .filter {
        width: auto;
        min-width: 102px;
      }

      .product-detail-page {
        grid-template-columns: minmax(420px, 520px) minmax(0, 1fr);
        padding-inline: 18px;
      }

      .product-detail-header {
        margin-inline: -18px;
      }

      .checkout-page {
        grid-template-columns: minmax(0, 1fr) 360px;
        padding-inline: 18px;
      }

      .checkout-page-header {
        margin-inline: -18px;
      }

      .bottom-bar {
        grid-template-columns: 68px 68px 320px;
      }
    }

    @media (min-width: 1280px) {
      :root {
        --app-max: 1200px;
      }

      #productPage:not(.hidden) {
        grid-template-columns: minmax(460px, 560px) minmax(0, 1fr);
      }
    }
/* --- Product page desktop styles copied from product.html (to align homepage desktop) --- */

.product-page-main {
      padding: 58px 0 calc(88px + var(--safe-bottom));
      background: #f5f5f5;
    }

    .desktop-store-header,
    .desktop-breadcrumbs,
    .product-desktop-only {
      display: none;
    }

    .product-page-top {
      background: #fff;
      border-bottom: 1px solid var(--line);
    }

    .product-page-media {
      display: grid;
      place-items: center;
      background: #fff8ef;
      overflow: hidden;
    }

    .product-page-media img {
      width: 100%;
      height: auto;
      aspect-ratio: 1 / 1;
      object-fit: contain;
      display: block;
      background: #fff8ef;
    }

    .product-page-main-media {
      width: 100%;
      display: grid;
      place-items: center;
    }

    .product-page-main-media .mock-card {
      aspect-ratio: 1 / 1;
      height: auto;
      min-height: min(100vw, var(--app-w));
    }

    .product-thumb-strip,
    .product-share-row {
      display: none;
    }

    .product-page-info {
      padding: 12px;
      background: #fff;
    }

    .product-page-desc-copy {
      margin-top: 8px;
      color: #666;
      font-size: 15px;
      line-height: 1.45;
    }

    .product-page-actions {
      position: fixed;
      left: 50%;
      bottom: 0;
      z-index: 96;
      width: var(--app-w);
      transform: translateX(-50%);
      display: grid;
      grid-template-columns: 58px minmax(0, 1fr);
      gap: 8px;
      padding: 8px 10px calc(8px + var(--safe-bottom));
      background: rgba(255, 255, 255, .98);
      box-shadow: 0 -10px 26px rgba(20, 20, 20, .12);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
    }

    .product-page-actions .buy-btn,
    .product-page-actions .bottom-btn {
      height: 56px;
      border-radius: 14px;
    }

    .product-page-main a.mini-product,
    .product-page-main .shop-btn {
      color: inherit;
      text-decoration: none;
    }

    .product-page-main .shop-btn {
      display: inline-grid;
      place-items: center;
    }

    .product-page-header {
      grid-template-columns: 42px minmax(0, 1fr) 42px;
    }

    .product-spec-list {
      display: grid;
      gap: 16px;
      padding: 14px 0 4px;
    }

    .product-spec-item {
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr);
      gap: 18px;
      color: #333;
      font-size: 14px;
      line-height: 1.35;
    }

    .product-spec-label {
      color: #999;
    }

    .product-recommend {
      padding: 12px;
      background: #f5f5f5;
    }

    .product-recommend-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
    }

    @media (min-width: 760px) {
      :root {
        --app-max: 1120px;
      }

      .product-page-main {
        display: grid;
        grid-template-columns: minmax(360px, 520px) minmax(0, 1fr);
        gap: 16px;
        padding: 76px 18px calc(104px + var(--safe-bottom));
      }

      .product-page-top {
        display: contents;
      }

      .product-page-media,
      .product-page-info {
        border: 1px solid var(--line);
      }

      .product-page-main > .section,
      .product-page-main > .featured-reviews,
      .product-page-main > .shop,
      .product-page-main > .horizontal-products,
      .product-page-main > .brand-footer {
        grid-column: 1 / -1;
        margin-top: 0;
        border-left: 1px solid var(--line);
        border-right: 1px solid var(--line);
      }

      .product-page-actions {
        width: min(calc(100vw - 28px), var(--app-max));
        grid-template-columns: 68px 320px;
        justify-content: end;
        border-radius: 18px 18px 0 0;
      }
    }

    @media (min-width: 1024px) {
      :root {
        --app-max: 1200px;
      }

      body {
        background: #f3f3f3;
      }

      .desktop-store-header {
        display: block;
        background: #d9001b;
        color: #fff;
      }

      .desktop-store-header-inner {
        width: min(1200px, calc(100vw - 48px));
        margin: 0 auto;
        padding: 12px 0 24px;
      }

      .desktop-store-meta {
        display: flex;
        justify-content: space-between;
        gap: 24px;
        margin-bottom: 24px;
        font-size: 13px;
        line-height: 1;
      }

      .desktop-store-nav,
      .desktop-store-user {
        display: flex;
        align-items: center;
        gap: 12px;
      }

      .desktop-store-brand-row {
        display: grid;
        grid-template-columns: 240px minmax(0, 520px) 80px;
        align-items: center;
        gap: 28px;
      }

      .desktop-store-brand {
        display: flex;
        align-items: center;
        gap: 14px;
        color: #fff;
        font-size: 30px;
        line-height: 1;
        text-decoration: none;
      }

      .desktop-store-mark {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        background: #fff;
        border: 1px solid rgba(255, 255, 255, .9);
        border-radius: 999px;
        font-size: 20px;
        font-weight: 800;
        letter-spacing: 0;
        overflow: hidden;
      }

      .desktop-store-mark img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        padding: 5px;
      }

      .desktop-store-search {
        height: 40px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 62px;
        background: #fff;
      }

      .desktop-store-search input {
        min-width: 0;
        border: 0;
        padding: 0 14px;
        color: #333;
        font: inherit;
        outline: 0;
      }

      .desktop-store-search button {
        display: grid;
        place-items: center;
        background: #cc0019;
        color: #fff;
      }

      .desktop-store-cart {
        position: relative;
        color: #fff;
      }

      .desktop-store-cart .icon {
        width: 34px;
        height: 34px;
      }

      .desktop-store-cart b {
        position: absolute;
        right: -9px;
        top: -9px;
        min-width: 21px;
        height: 21px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        background: #fff;
        color: #d9001b;
        font-size: 13px;
      }

      .product-page-header {
        display: none;
      }

      .app {
        max-width: none;
        width: 100%;
        background: #f3f3f3;
        box-shadow: none;
      }

      .desktop-breadcrumbs {
        display: flex;
        width: min(1200px, calc(100vw - 48px));
        margin: 0 auto;
        padding: 16px 0;
        gap: 8px;
        color: #555;
        font-size: 14px;
      }

      .desktop-breadcrumbs a {
        color: #0055aa;
        text-decoration: none;
      }

      .product-page-main {
        width: min(1200px, calc(100vw - 48px));
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0 0 40px;
        background: transparent;
      }

      .product-page-top {
        display: grid;
        grid-template-columns: 450px minmax(0, 1fr);
        gap: 34px;
        order: 1;
        padding: 14px;
        border: 0;
        background: #fff;
      }

      .product-page-media {
        display: block;
        border: 0;
        background: #fff;
        overflow: visible;
      }

      .product-page-main-media {
        height: 450px;
        background: #fff8ef;
        overflow: hidden;
      }

      .product-page-main-media .mock-card {
        min-height: 450px;
      }

      .product-page-media img {
        width: 100%;
        height: 100%;
        aspect-ratio: auto;
        object-fit: contain;
      }

      .product-thumb-strip {
        margin-top: 10px;
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: 10px;
      }

      .product-thumb-strip button {
        height: 82px;
        border: 1px solid #e0e0e0;
        background: #fff;
        overflow: hidden;
      }

      .product-thumb-strip button.active {
        border-color: var(--orange);
      }

      .product-thumb-strip img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
      }

      .product-share-row {
        margin-top: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 20px;
        color: #333;
        font-size: 16px;
      }

      .product-share-icons {
        display: inline-flex;
        gap: 6px;
      }

      .product-share-icons i {
        width: 22px;
        height: 22px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        color: #fff;
        font-size: 12px;
        font-style: normal;
      }

      .share-blue { background: #1877f2; }
      .share-red { background: #e60023; }
      .share-black { background: #111; }

      .product-page-info {
        padding: 8px 0 0;
        border: 0;
      }

      .product-desktop-only {
        display: block;
      }

      .product-detail-price,
      .product-page-desc-copy {
        display: none;
      }

      .product-detail-name {
        margin: 0 0 10px;
        font-size: 22px;
        line-height: 1.35;
        font-weight: 700;
      }

      .product-official-badge {
        margin-right: 7px;
        padding: 1px 3px;
        font-size: 12px;
        vertical-align: 3px;
      }

      .product-detail-meta {
        justify-content: flex-start;
        gap: 18px;
        margin-bottom: 10px;
        color: #666;
        font-size: 15px;
      }

      .product-desktop-rating {
        color: #222;
        text-decoration: underline;
        text-underline-offset: 5px;
      }

      .desktop-flash {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 34px;
        padding: 0 18px;
        background: linear-gradient(90deg, #ff4d22, #ff6421);
        color: #fff;
        font-weight: 800;
      }

      .desktop-price-panel {
        padding: 16px 20px;
        background: #fff5f4;
        color: var(--orange);
        font-size: 32px;
        font-weight: 700;
      }

      .desktop-price-panel del {
        margin-left: 10px;
        color: #999;
        font-size: 15px;
        font-weight: 400;
      }

      .desktop-info-grid {
        display: grid;
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 18px;
        padding: 18px 20px 0;
        color: #555;
        font-size: 15px;
      }

      .desktop-info-label {
        color: #777;
      }

      .voucher-row {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
      }

      .voucher-row span {
        padding: 3px 8px;
        background: #fff0ef;
        color: #d9001b;
        font-size: 14px;
      }

      .desktop-shipping strong,
      .desktop-assurance strong {
        display: block;
        color: #222;
        margin-bottom: 6px;
      }

      .desktop-shipping em {
        display: block;
        color: var(--teal);
        font-style: normal;
        font-weight: 700;
      }

      .desktop-qty-row {
        display: flex;
        align-items: center;
        gap: 14px;
      }

      .desktop-qty {
        display: grid;
        grid-template-columns: 32px 48px 32px;
        height: 32px;
        border: 1px solid #ddd;
      }

      .desktop-qty button,
      .desktop-qty span {
        display: grid;
        place-items: center;
        border-right: 1px solid #ddd;
        background: #fff;
        color: #555;
      }

      .desktop-qty button:last-child {
        border-right: 0;
      }

      .desktop-action-row {
        display: flex;
        gap: 14px;
        padding: 28px 20px 0;
      }

      .desktop-cart-btn,
      .desktop-buy-btn {
        height: 48px;
        min-width: 200px;
        border: 1px solid #d9001b;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        text-decoration: none;
        font-size: 16px;
      }

      .desktop-cart-btn {
        background: #fff4f3;
        color: #d9001b;
      }

      .desktop-buy-btn {
        background: #d9001b;
        color: #fff;
        font-weight: 700;
      }

      .delivery-section {
        display: none;
      }

      .video-section {
        order: 2;
        padding: 24px 26px;
        background: #fff;
        border: 0;
      }

      .video-list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .shop {
        order: 3;
        padding: 30px 36px;
        border: 0;
        background: #fff;
      }

      .shop-head {
        grid-template-columns: 86px 250px 120px minmax(0, 1fr);
        gap: 14px;
      }

      .shop-logo {
        width: 80px;
        height: 80px;
      }

      .shop-stats {
        grid-column: 4;
        grid-row: 1;
        margin-top: 0;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px 34px;
        text-align: left;
      }

      .shop-stats div + div {
        border-left: 0;
      }

      .shop-stats b {
        color: var(--orange);
      }

      .shop-stats .product-desktop-only {
        display: block;
      }

      .product-spec-section {
        order: 4;
        padding: 26px;
        background: #fff;
        border: 0;
      }

      .desktop-section-heading {
        margin: 0 0 24px;
        padding: 14px 16px;
        background: #fafafa;
        color: #222;
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
      }

      .product-spec-list {
        gap: 24px;
        padding: 0 14px 10px;
      }

      .product-spec-item {
        grid-template-columns: 180px minmax(0, 1fr);
      }

      .product-description-section {
        order: 5;
        border: 0;
        background: #fff;
      }

      .product-description-section .description {
        padding: 26px;
        color: #333;
        font-size: 15px;
        line-height: 1.6;
      }

      .product-description-section .description-media {
        margin-top: 20px;
        gap: 14px;
      }

      .product-description-section .description-media img {
        border-radius: 0;
      }

      .product-description-section .description h3 {
        margin: 0 0 24px;
        padding: 14px 16px;
        background: #fafafa;
        font-size: 20px;
        text-transform: uppercase;
      }

      .review-summary {
        order: 6;
        padding: 26px 26px 0;
        border: 0;
        background: #fff;
      }

      .review-summary::before {
        content: "ĐÁNH GIÁ SẢN PHẨM";
        display: block;
        margin-bottom: 16px;
        color: #222;
        font-size: 20px;
        font-weight: 700;
      }

      .rating-title {
        align-items: center;
        justify-content: flex-start;
        gap: 28px;
        padding: 28px 30px;
        border: 1px solid #f3dfd8;
        background: #fff9f7;
      }

      .rating-title > span {
        color: var(--orange);
        font-size: 24px;
        min-width: 140px;
      }

      .rating-title a {
        color: var(--orange);
        text-decoration: none;
      }

      .chips {
        margin: 14px 0 24px;
        flex-wrap: wrap;
        overflow: visible;
      }

      .chip {
        min-width: 100px;
        border-radius: 0;
        text-align: center;
      }

      .review-search {
        display: none;
      }

      .featured-reviews {
        order: 6;
        display: block;
        padding: 0 26px 26px;
        background: #fff;
        border: 0;
      }

      .featured-reviews .review {
        padding: 24px 20px;
        border-top: 1px solid #eee;
      }

      .horizontal-products {
        order: 7;
        padding: 26px;
        border: 0;
        background: #fff;
      }

      .horizontal-products .section-title {
        color: #777;
        text-transform: uppercase;
      }

      .scroller {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }

      .scroller .mini-product,
      .product-recommend-grid .mini-product {
        min-width: 0;
      }

      .scroller .mini-product .mock-card,
      .product-recommend-grid .mini-product .mock-card {
        height: auto;
        aspect-ratio: 1 / 1;
      }

      .scroller .mock-card.has-real-thumb img,
      .product-recommend-grid .mock-card.has-real-thumb img {
        object-fit: cover;
        background: #fff8ef;
      }

      .product-recommend {
        order: 8;
        padding: 26px;
        background: #f3f3f3;
      }

      .product-recommend .section-title {
        color: #777;
        text-transform: uppercase;
      }

      .product-recommend-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
      }

      .product-recommend-grid .mini-product {
        background: #fff;
      }

      .brand-footer {
        order: 9;
      }

      .product-page-actions {
        display: none;
      }
    }

/* --- Homepage desktop product-detail layout --- */
.desktop-home-breadcrumbs,
.desktop-index-product-top {
  display: none;
}

/* Standalone product page refinements */
body.product-standalone-page .product-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 8px 0;
  color: #777;
  font-size: 13px;
}

body.product-standalone-page .product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

body.product-standalone-page .product-variant-panel {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

body.product-standalone-page .product-variant-label {
  margin-bottom: 8px;
  color: #777;
  font-size: 13px;
}

body.product-standalone-page .product-variant-options {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

body.product-standalone-page .product-variant-options::-webkit-scrollbar {
  display: none;
}

body.product-standalone-page .product-variant-option {
  flex: 0 0 auto;
  max-width: 168px;
  padding: 8px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  color: #333;
  font-size: 13px;
  line-height: 1.25;
  text-decoration: none;
}

body.product-standalone-page .product-variant-option.active {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff6f3;
  font-weight: 650;
}

body.product-standalone-page .product-policy-section {
  padding: 0 12px 12px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

body.product-standalone-page .delivery-section + .product-policy-section {
  margin-top: 0;
  border-top: 0;
}

body.product-standalone-page .product-policy-row {
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  color: #333;
  font-size: 14px;
  text-align: left;
}

body.product-standalone-page .product-spec-section {
  margin: 8px 10px 0;
  padding: 14px 12px;
  border: 1px solid #eeeeee;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}

body.product-standalone-page .product-spec-section .desktop-section-heading {
  margin: 0 0 12px;
  color: #222;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 700;
}

body.product-standalone-page .product-spec-list {
  display: grid;
  gap: 0;
  padding: 0;
}

body.product-standalone-page .product-spec-item {
  display: grid;
  grid-template-columns: minmax(86px, 32%) minmax(0, 1fr);
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #f3f3f3;
  color: #333;
  font-size: 14px;
  line-height: 1.45;
  min-width: 0;
}

body.product-standalone-page .product-spec-item:first-child {
  border-top: 0;
}

body.product-standalone-page .product-spec-label {
  color: #888;
}

body.product-standalone-page .product-spec-item span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
  word-break: normal;
}

body.product-standalone-page .product-spec-item a {
  color: #333;
  text-decoration: none;
}

@media (min-width: 1024px) {
  body {
    background: #f3f3f3;
  }

  .desktop-home-header {
    display: block;
    background:
      linear-gradient(180deg, #fff 0%, #fffaf7 100%);
    color: #2b2424;
    border-bottom: 1px solid #f3ded8;
    box-shadow: 0 10px 30px rgba(142, 88, 76, .08);
  }

  .desktop-home-header-inner {
    width: min(1200px, calc(100vw - 48px));
    min-height: 0;
    margin: 0 auto;
    display: block;
    padding: 10px 0 18px;
  }

  .desktop-home-meta {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
    padding: 2px 0;
    color: #8b7773;
    font-size: 13px;
    line-height: 1.2;
  }

  .desktop-home-nav,
  .desktop-home-user {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
  }

  .desktop-home-nav b,
  .desktop-home-user b {
    color: #e84b5f;
    font-weight: 700;
  }

  .desktop-home-brand-row {
    display: grid;
    grid-template-columns: 250px minmax(360px, 1fr) 70px;
    align-items: center;
    gap: 30px;
  }

  .desktop-home-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #2b2424;
    text-decoration: none;
    font-size: 25px;
    font-weight: 650;
    line-height: 1.05;
    letter-spacing: 0;
  }

  .desktop-home-mark {
    width: 58px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid #f3ded8;
    border-radius: 999px;
    background: #fff;
    padding: 7px;
    box-shadow: 0 8px 20px rgba(232, 75, 95, .11);
    overflow: hidden;
  }

  .desktop-home-mark img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }

  .desktop-home-search {
    height: 46px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 46px;
    align-items: center;
    border: 1px solid #f0ded9;
    border-radius: 999px;
    background: #f8f3f1;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .85);
    overflow: hidden;
  }

  .desktop-home-search input {
    min-width: 0;
    height: 100%;
    border: 0;
    outline: 0;
    padding: 0 18px;
    background: transparent;
    color: #2b2424;
    font-size: 15px;
  }

  .desktop-home-search input::placeholder {
    color: #a58e89;
  }

  .desktop-home-search button {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    justify-self: center;
    border-radius: 999px;
    background: #e84b5f;
    color: #fff;
    box-shadow: 0 8px 18px rgba(232, 75, 95, .2);
  }

  .desktop-home-search .icon {
    width: 19px;
    height: 19px;
    stroke-width: 2.4;
  }

  .desktop-home-cart {
    position: relative;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    justify-self: end;
    padding: 0;
    border: 1px solid #f3ded8;
    border-radius: 999px;
    background: #fff;
    color: #e84b5f;
    box-shadow: 0 8px 20px rgba(232, 75, 95, .12);
  }

  .desktop-home-cart .icon {
    width: 25px;
    height: 25px;
    stroke-width: 2.3;
  }

  .desktop-home-cart .badge {
    right: -4px;
    top: -5px;
    background: #e84b5f;
    color: #fff;
    border-color: #fff;
  }

  .desktop-home-breadcrumbs {
    display: flex;
    width: min(1200px, calc(100vw - 48px));
    margin: 0 auto;
    padding: 14px 0;
    gap: 8px;
    color: #8b7773;
    font-size: 14px;
    line-height: 1.35;
    align-items: center;
    overflow: hidden;
  }

  .desktop-home-breadcrumbs a {
    color: #b65462;
    text-decoration: none;
  }

  .desktop-home-breadcrumbs span:last-child {
    min-width: 0;
    color: #5f4c49;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .app {
    max-width: none;
    width: 100%;
    background: #f3f3f3;
    box-shadow: none;
  }

  .topbar,
  .bottom-bar {
    display: none;
  }

  #productPage:not(.hidden) {
    width: min(1200px, calc(100vw - 48px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 14px;
    align-items: start;
    padding: 0 0 40px;
    background: transparent;
  }

  #productPage > .desktop-index-product-top,
  #productPage > .review-summary,
  #productPage > .featured-reviews,
  #productPage > .video-section,
  #productPage > .shop,
  #productPage > .horizontal-products,
  #productPage > .recommend,
  #productPage > .brand-footer,
  #productPage > .desktop-description-section {
    grid-column: 1 / -1;
  }

  #productPage > .hero,
  #productPage > .product-head,
  #productPage > .title,
  #productPage > .delivery-section {
    display: none;
  }

  .desktop-index-product-top {
    order: 1;
    display: grid;
    grid-template-columns: 450px minmax(0, 1fr);
    gap: 34px;
    padding: 14px;
    background: #fff;
  }

  .desktop-index-media {
    background: #fff;
  }

  .desktop-index-main-media {
    height: 450px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: #fff8ef;
  }

  .desktop-index-main-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    background: #fff8ef;
  }

  .desktop-index-thumb-strip {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .desktop-index-thumb-strip button {
    height: 82px;
    border: 1px solid #e0e0e0;
    background: #fff;
    overflow: hidden;
  }

  .desktop-index-thumb-strip button.active {
    border-color: var(--orange);
  }

  .desktop-index-thumb-strip img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .desktop-index-share-row {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: #333;
    font-size: 16px;
  }

  .desktop-index-share-icons {
    display: inline-flex;
    gap: 6px;
  }

  .desktop-index-share-icons i {
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-style: normal;
  }

  .desktop-index-info {
    padding: 8px 0 0;
    background: #fff;
  }

  .desktop-index-name {
    margin: 0 0 10px;
    color: #222;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
  }

  .desktop-index-name::before {
    content: "Chính hãng";
    display: inline-block;
    margin-right: 7px;
    padding: 1px 3px;
    background: #d9001b;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    vertical-align: 3px;
  }

  .desktop-index-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    margin-bottom: 10px;
    color: #666;
    font-size: 15px;
  }

  .desktop-index-rating {
    color: #222;
    text-decoration: underline;
    text-underline-offset: 5px;
  }

  .desktop-index-flash {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 18px;
    background: linear-gradient(90deg, #ff4d22, #ff6421);
    color: #fff;
    font-weight: 800;
  }

  .desktop-index-flash b {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  .desktop-index-flash b,
  .desktop-index-flash i {
    font-style: normal;
  }

  .desktop-index-price {
    padding: 16px 20px;
    background: #fff5f4;
    color: var(--orange);
    font-size: 32px;
    font-weight: 700;
  }

  .desktop-index-price del {
    margin-left: 10px;
    color: #999;
    font-size: 15px;
    font-weight: 400;
  }

  .desktop-index-info-grid {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 18px;
    padding: 18px 20px 0;
    color: #555;
    font-size: 15px;
  }

  .desktop-index-action-row {
    display: flex;
    gap: 14px;
    padding: 28px 20px 0;
  }

  .desktop-index-action-row .desktop-cart-btn,
  .desktop-index-action-row .desktop-buy-btn {
    min-width: 200px;
    border-radius: 0;
  }

  #productPage > .video-section {
    order: 2;
  }

  #productPage > .shop {
    order: 3;
  }

  #productPage > .desktop-description-section {
    order: 4;
    border: 0;
    background: #fff;
  }

  #productPage > .review-summary {
    order: 5;
  }

  #productPage > .featured-reviews {
    order: 6;
  }

  #productPage > .review-load-more-wrap {
    order: 6;
  }

  #productPage > .horizontal-products {
    order: 7;
  }

  #productPage > .recommend {
    order: 8;
  }

  #productPage > .brand-footer {
    order: 9;
  }

  .desktop-description-section .detail-tabs {
    display: none;
  }

  .desktop-description-section .description {
    padding: 26px;
    color: #333;
    font-size: 15px;
    line-height: 1.6;
  }

  .desktop-description-section .description h3 {
    margin: 0 0 24px;
    padding: 14px 16px;
    background: #fafafa;
    color: #222;
    font-size: 20px;
    text-transform: uppercase;
  }

  .desktop-description-section .description-media {
    max-width: 920px;
    margin: 24px auto 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .desktop-description-section .description-media img {
    width: 100%;
    max-height: 430px;
    border: 1px solid #eee;
    border-radius: 4px;
    background: #fff8ef;
    object-fit: contain;
  }

  .desktop-description-section .description-media img:only-child {
    max-width: 520px;
    justify-self: center;
  }
}
