@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Poppins:wght@300;400;500;600&display=swap');

 :root {
      --bg: #fff5f5;
      --surface: #fff7f7;
      --surface-strong: #fff;
      --text: #5c1016;
      --muted: #8d3a41;
      --primary: #d71920;
      --primary-dark: #a80f15;
      --accent: #ffe3e5;
      --line: rgba(215, 25, 32, 0.18);
      --shadow: 0 18px 40px rgba(141, 24, 31, 0.12);
      --radius-lg: 28px;
      --radius-md: 18px;
      --radius-sm: 12px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(215, 25, 32, 0.18), transparent 28%),
        radial-gradient(circle at top right, rgba(215, 25, 32, 0.12), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, var(--bg) 48%, #fff0f1 100%);
    }

    img {
      display: block;
      max-width: 100%;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    input,
    button,
    select {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    input:focus-visible,
    button:focus-visible,
    a:focus-visible,
    select:focus-visible {
      outline: 3px solid rgba(187, 90, 60, 0.35);
      outline-offset: 3px;
    }

    .container {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
    }

    .topbar {
      padding: 14px 0;
      border-bottom: 1px solid rgba(215, 25, 32, 0.14);
      background: rgba(255, 255, 255, 0.92);
      backdrop-filter: blur(8px);
      position: sticky;
      top: 0;
      z-index: 20;
    }

    .top-marquee {
      background-color: var(--primary);
      color: #fff;
      border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .top-marquee .container {
      display: flex;
      justify-content: center;
      align-items: center;
      min-height: 30px;
    }

    .top-marquee .marquee-child,
    .top-marquee .marquee-child a {
      color: #fff;
      font-size: 16px;
      text-decoration: none;
      line-height: 30px;
      font-weight: 700;
      display: block;
      text-align: center;
    }

    .top-marquee .marquee-child {
      margin-top: 0;
      padding: 0;
    }

    .top-marquee {
      overflow: hidden;
    }

    .top-marquee .marquee-track {
      display: flex;
      width: max-content;
      animation: marquee-scroll 20s linear infinite;
    }

    .top-marquee .marquee-track .marquee-child {
      display: flex;
      align-items: center;
      gap: 40px;
      padding-right: 40px;
      white-space: nowrap;
    }

    .top-marquee .marquee-sep {
      color: rgba(255, 255, 255, 0.7);
    }

    .top-marquee:hover .marquee-track {
      animation-play-state: paused;
    }

    @keyframes marquee-scroll {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    @media (prefers-reduced-motion: reduce) {
      .top-marquee .marquee-track {
        animation: none;
        width: 100%;
        justify-content: center;
      }
      .top-marquee .marquee-track .marquee-child[aria-hidden="true"] {
        display: none;
      }
    }

    .topbar-inner,
    .hero,
    .section-head,
    .cart-head,
    .cart-line,
    .cart-summary-row,
    .story-grid,
    .footer-grid {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .topbar-left {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .social-links {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--primary);
      box-shadow: 0 8px 18px rgba(215, 25, 32, 0.08);
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .social-link:hover {
      transform: translateY(-2px);
      background: var(--primary);
      color: #fff;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      font-size: 1.5rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .brand-mark {
      width: 68px;
      height: 68px;
      flex: 0 0 68px;
      border-radius: 50%;
      overflow: hidden;
      box-shadow: 0 10px 24px rgba(187, 90, 60, 0.28);
    }

    .brand-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .brand small {
      display: block;
      font-size: 0.7rem;
      letter-spacing: 0.16em;
      color: var(--muted);
      margin-top: 3px;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 20px;
      font-size: 0.98rem;
      color: var(--muted);
    }

    .topbar-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 1 auto;
    }

    .topbar-search {
      min-width: 220px;
      width: clamp(220px, 24vw, 290px);
      max-width: 290px;
    }

    .topbar-search .search-field {
      width: 100%;
      min-height: 46px;
      background: #fff;
    }

    .topbar-search .search-status {
      display: none;
    }

    .topbar-search .search-suggestions {
      top: calc(100% + 8px);
      width: 100%;
    }

    .cart-toggle {
      flex: 0 0 auto;
      white-space: nowrap;
    }

    .hamburger {
      display: none;
      background: none;
      border: 1px solid var(--line);
      cursor: pointer;
      padding: 8px 10px;
      border-radius: var(--radius-sm);
      color: var(--primary);
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }

    .hamburger:hover {
      background: var(--accent);
    }

    .hamburger .icon-close { display: none; }
    .hamburger.open .icon-menu { display: none; }
    .hamburger.open .icon-close { display: block; }

    .mobile-menu {
      display: none;
      flex-direction: column;
      background: #fff;
      border-top: 1px solid var(--line);
      box-shadow: 0 8px 24px rgba(141, 24, 31, 0.12);
    }

    .mobile-menu.open {
      display: flex;
    }

    .mobile-menu a {
      display: block;
      padding: 14px 20px;
      border-bottom: 1px solid var(--line);
      font-size: 1rem;
      color: var(--text);
      font-weight: 500;
      text-decoration: none;
    }

    .mobile-menu a:hover {
      background: var(--accent);
      color: var(--primary);
    }

    .mobile-menu .menu-cart-link {
      display: none;
    }

    /* ── Category Carousel ── */
    .cat-section {
      padding: 40px 0 36px;
      background: #fff;
    }

    .cat-title {
      text-align: center;
      font-size: 2rem;
      font-weight: 400;
      font-family: Georgia, "Times New Roman", serif;
      color: #111;
      margin: 0 0 32px;
    }

    /* Outer: arrows sit beside the viewport, vertically aligned to circle centers */
    .cat-carousel-outer {
      display: flex;
      align-items: flex-start;
      gap: 8px;
    }

    /* ── Arrow buttons — SVG data-URI, identical on every browser ── */
    .cat-arrow {
      flex: 0 0 auto;
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background-color: #1a1a1a;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 42%;
      border: 0;
      cursor: pointer;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
      transition: background-color 0.2s ease, transform 0.18s ease, opacity 0.2s ease;
      padding: 0;
      /* vertically centre on the 130px circle:
         circle centre = nav-pad(6) + item-pad(2) + 65 = 73px from top of viewport
         arrow centre  = 73 − 20 = 53px → margin-top: 53px                       */
      margin-top: 53px;
    }

    /* left chevron < */
    .cat-arrow-prev {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M15 18l-6-6 6-6'/%3E%3C/svg%3E");
    }

    /* right chevron > */
    .cat-arrow-next {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M9 18l6-6-6-6'/%3E%3C/svg%3E");
    }

    .cat-arrow:hover {
      background-color: #444;
      transform: scale(1.1);
    }

    .cat-arrow--dim {
      opacity: 0.3;
      pointer-events: none;
    }

    /* ── Viewport ── */
    .cat-viewport {
      flex: 1;
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .cat-viewport::-webkit-scrollbar {
      display: none;
    }

    /* ── Track ── */
    .category-nav {
      display: flex;
      align-items: flex-start;
      gap: 18px;
      padding: 6px 0 10px;
      /* width driven by children so viewport can overflow-scroll */
    }

    /* Fixed 150px per item → 8×150 + 7×18 = 1326px > ~1020px viewport → always scrolls */
    .category-nav a {
      flex: 0 0 150px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 400;
      letter-spacing: 0;
      text-transform: none;
      color: #333;
      transition: color 0.2s ease, transform 0.2s ease;
      padding: 2px 0;
    }

    .category-thumb {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      overflow: hidden;
      background: #f0f0f0;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      flex-shrink: 0;
    }

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

    .category-label {
      line-height: 1.3;
      text-align: center;
    }

    .category-nav a:hover .category-thumb {
      transform: translateY(-4px);
      box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
    }

    .category-nav a.cat-active .category-thumb {
      outline: 3px solid var(--primary);
      outline-offset: 3px;
    }

    .category-nav a.cat-active .category-label,
    .category-nav a:hover .category-label {
      color: var(--primary);
    }

    /* ── Auth topbar buttons ── */
    .auth-topbar-wrap {
      display: flex;
      align-items: center;
    }

    .auth-topbar-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 10px 18px;
      border-radius: 999px;
      font-size: 0.88rem;
      font-weight: 700;
      text-decoration: none;
      border: 1.5px solid var(--primary);
      color: var(--primary);
      background: transparent;
      transition: background 0.18s ease, color 0.18s ease, transform 0.18s ease;
      white-space: nowrap;
    }

    .auth-topbar-btn:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-1px);
    }

    .auth-topbar-btn--account {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    .auth-topbar-btn--account:hover {
      background: var(--primary-dark);
      border-color: var(--primary-dark);
    }

    .cart-toggle {
      border: 0;
      background: var(--primary);
      color: #fff;
      padding: 12px 18px;
      border-radius: 999px;
      box-shadow: 0 10px 24px rgba(215, 25, 32, 0.2);
      transition: transform 0.2s ease, background 0.2s ease;
    }

    .cart-toggle:hover,
    .btn-primary:hover,
    .product-card button:hover,
    .newsletter button:hover,
    .checkout-btn:hover,
    .checkout-submit:hover {
      transform: translateY(-2px);
      background: var(--primary-dark);
    }

    .hero-wrap {
      padding: 34px 0 28px;
    }

    .hero {
      align-items: stretch;
      gap: 28px;
    }

    .hero-copy,
    .hero-art,
    .story-card,
    .shipping-banner,
    .newsletter,
    .cart-panel {
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(215, 25, 32, 0.08);
      box-shadow: var(--shadow);
    }

    .hero-copy {
      flex: 1.15;
      padding: 56px;
      border-radius: var(--radius-lg);
    }

    .eyebrow {
      display: inline-block;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(215, 25, 32, 0.1);
      color: var(--primary-dark);
      font-size: 0.82rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 18px;
    }

    h1,
    h2,
    h3,
    p {
      margin: 0;
    }

    h1 {
      font-size: clamp(2.8rem, 5vw, 5rem);
      line-height: 0.95;
      margin-bottom: 18px;
    }

    .hero-copy p {
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.7;
      max-width: 52ch;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      margin-top: 28px;
      flex-wrap: wrap;
    }

    .btn-primary,
    .btn-secondary,
    .product-card button,
    .listing-body button,
    .newsletter button,
    .checkout-btn,
    .checkout-submit,
    .continue-shopping,
    .see-more-btn {
      border: 0;
      padding: 14px 20px;
      min-height: 48px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .btn-primary,
    .product-card button,
    .listing-body button,
    .newsletter button,
    .checkout-btn,
    .checkout-submit {
      background: var(--primary);
      color: #fff;
      box-shadow: 0 10px 24px rgba(215, 25, 32, 0.18);
    }

    .btn-secondary,
    .continue-shopping,
    .see-more-btn {
      background: transparent;
      border: 1px solid var(--primary);
      color: var(--primary);
    }

    .btn-secondary:hover,
    .continue-shopping:hover,
    .see-more-btn:hover {
      transform: translateY(-2px);
      background: var(--primary);
      color: #fff;
    }

    .hero-art {
      flex: 0.85;
      border-radius: var(--radius-lg);
      padding: 22px;
      min-height: 520px;
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(180deg, rgba(255, 245, 236, 0.96), rgba(251, 234, 216, 0.92)),
        linear-gradient(145deg, rgba(187, 90, 60, 0.12), rgba(215, 168, 110, 0.2));
    }

    .hero-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: #fff;
      border-radius: 50%;
      width: 104px;
      height: 104px;
      display: grid;
      place-items: center;
      text-align: center;
      font-size: 0.82rem;
      line-height: 1.3;
      box-shadow: var(--shadow);
      transform: rotate(12deg);
    }

    .yarn-display {
      height: 100%;
      border-radius: 24px;
      background:
        radial-gradient(circle at 30% 24%, #efd7bb 0, #efd7bb 18%, transparent 18.2%),
        radial-gradient(circle at 66% 30%, #cb7f5e 0, #cb7f5e 17%, transparent 17.2%),
        radial-gradient(circle at 42% 62%, #b55f43 0, #b55f43 18%, transparent 18.2%),
        radial-gradient(circle at 72% 70%, #f0c589 0, #f0c589 16%, transparent 16.2%),
        radial-gradient(circle at 20% 74%, #e7bca5 0, #e7bca5 13%, transparent 13.2%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.88), rgba(250, 223, 197, 0.72));
      position: relative;
      overflow: hidden;
    }

    .yarn-display::before,
    .yarn-display::after {
      content: "";
      position: absolute;
      inset: auto;
      border-radius: 999px;
      border: 2px solid rgba(143, 63, 40, 0.22);
    }

    .yarn-display::before {
      width: 240px;
      height: 240px;
      left: 8%;
      bottom: 9%;
    }

    .yarn-display::after {
      width: 160px;
      height: 160px;
      right: 16%;
      top: 12%;
    }

    .section {
      padding: 34px 0;
    }

    .section-head {
      margin-bottom: 22px;
      align-items: end;
    }

    .listing-search {
      display: grid;
      gap: 10px;
      min-width: min(100%, 320px);
      justify-items: end;
      position: relative;
    }

    .search-field {
      width: min(100%, 320px);
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0 16px;
      min-height: 52px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.94);
      border: 1px solid rgba(215, 25, 32, 0.14);
      box-shadow: 0 12px 24px rgba(141, 24, 31, 0.08);
    }

    .search-icon {
      color: var(--primary);
      font-size: 1rem;
      line-height: 1;
    }

    .search-field input {
      width: 100%;
      border: 0;
      background: transparent;
      color: var(--text);
      outline: 0;
      padding: 0;
    }

    .search-field input::placeholder {
      color: var(--muted);
      opacity: 0.8;
    }

    .search-status {
      font-size: 0.9rem;
      color: var(--muted);
      text-align: right;
    }

    .search-suggestions {
      position: absolute;
      top: calc(100% - 2px);
      right: 0;
      width: min(100%, 360px);
      padding: 10px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid rgba(215, 25, 32, 0.12);
      box-shadow: 0 20px 38px rgba(141, 24, 31, 0.14);
      z-index: 8;
    }

    .search-suggestion-item {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      gap: 10px;
      align-items: center;
      padding: 8px;
      border-radius: 14px;
    }

    .search-suggestion-item + .search-suggestion-item {
      margin-top: 6px;
    }

    .search-suggestion-item:hover {
      background: rgba(215, 25, 32, 0.05);
    }

    .search-suggestion-link,
    .search-suggestion-cart {
      border: 0;
      background: transparent;
      box-shadow: none;
      min-height: auto;
      padding: 0;
    }

    .search-suggestion-link {
      display: grid;
      justify-items: start;
      gap: 4px;
      text-align: left;
      color: var(--text);
    }

    .search-suggestion-title {
      font-weight: 700;
    }

    .search-suggestion-price {
      color: var(--muted);
      font-size: 0.88rem;
    }

    .search-suggestion-cart {
      padding: 9px 14px;
      border-radius: 999px;
      background: var(--primary);
      color: #fff;
      font-size: 0.82rem;
      font-weight: 700;
      white-space: nowrap;
      box-shadow: 0 10px 18px rgba(215, 25, 32, 0.14);
    }

    .search-highlight {
      box-shadow: 0 0 0 3px rgba(215, 25, 32, 0.18), 0 18px 36px rgba(141, 24, 31, 0.12);
      transition: box-shadow 0.25s ease;
    }

    .listing-empty-state {
      margin-top: 20px;
      padding: 20px 22px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(215, 25, 32, 0.12);
      color: var(--muted);
      text-align: center;
      box-shadow: 0 14px 28px rgba(141, 24, 31, 0.08);
    }

    .section-head p {
      color: var(--muted);
      max-width: 54ch;
      line-height: 1.6;
    }

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

    .product-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      width: 100%;
    }

    .product-actions button,
    .product-actions a {
      flex: 1 1 140px;
      text-align: center;
    }

    .see-more-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .product-card,
    .story-card,
    .checkout-modal {
      background: var(--surface-strong);
      border-radius: var(--radius-md);
      overflow: hidden;
      border: 1px solid var(--line);
      box-shadow: 0 14px 30px rgba(72, 38, 28, 0.08);
    }

    .product-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .product-image {
      height: 230px;
      position: relative;
      overflow: hidden;
      background: linear-gradient(140deg, #f2d7bf, #f9efe3);
    }

    .product-image.has-catalog-image {
      background: #fff;
    }

    .product-image::before,
    .product-image::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      opacity: 0.95;
    }

    .product-image::before {
      width: 130px;
      height: 130px;
      background: rgba(187, 90, 60, 0.78);
      top: 28px;
      left: 22px;
      box-shadow: 86px 34px 0 -14px rgba(215, 168, 110, 0.82);
    }

    .product-image::after {
      width: 84px;
      height: 84px;
      border: 2px solid rgba(255, 255, 255, 0.8);
      bottom: 28px;
      right: 28px;
    }

    .product-image.has-catalog-image::before,
    .product-image.has-catalog-image::after {
      display: none;
    }

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

    .product-info {
      padding: 18px;
      display: flex;
      flex: 1;
      flex-direction: column;
    }

    .product-info h3 {
      font-size: 1.24rem;
      margin-bottom: 8px;
    }

    .product-info p {
      color: var(--muted);
      line-height: 1.6;
      min-height: 50px;
    }

    .product-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-top: 16px;
      margin-top: auto;
      flex-wrap: wrap;
    }

    .price-stack {
      display: flex;
      flex-direction: column;
      gap: 5px;
      min-width: 158px;
    }

    .price {
      font-size: 1.6rem;
      font-weight: 700;
      line-height: 1;
      color: var(--primary-dark);
    }

    .price-subline {
      display: flex;
      align-items: baseline;
      gap: 8px;
      flex-wrap: wrap;
      font-size: 0.9rem;
    }

    .original-price {
      color: var(--muted);
      text-decoration: line-through;
      text-decoration-thickness: 1.5px;
      opacity: 0.88;
    }

    .discount-tag {
      color: var(--primary);
      font-weight: 700;
      white-space: nowrap;
    }

    .shipping-banner {
      padding: 22px 24px;
      border-radius: var(--radius-md);
      background:
        linear-gradient(140deg, rgba(215, 25, 32, 0.96), rgba(168, 15, 21, 0.96)),
        var(--primary);
      color: #fff;
    }

    .shipping-banner p {
      color: rgba(255, 255, 255, 0.76);
      margin-top: 6px;
    }

    .shipping-rates {
      margin-top: 12px;
      display: grid;
      gap: 6px;
      color: rgba(255, 255, 255, 0.88);
      font-size: 0.95rem;
    }

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

    .listing-card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: 0 14px 30px rgba(72, 38, 28, 0.08);
    }

    .listing-card .product-image {
      height: 190px;
    }

    .discount-strip {
      position: absolute;
      top: 14px;
      right: -34px;
      min-width: 132px;
      padding: 8px 0;
      background: linear-gradient(135deg, #d71920, #8f0d13);
      color: #fff;
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-align: center;
      text-transform: uppercase;
      box-shadow: 0 14px 28px rgba(141, 24, 31, 0.28);
      transform: rotate(45deg);
      z-index: 2;
    }

    .discount-strip::before,
    .discount-strip::after {
      content: "";
      position: absolute;
      top: 100%;
      border-top: 8px solid #7a0b10;
      border-bottom: 0;
    }

    .discount-strip::before {
      left: 0;
      border-right: 8px solid transparent;
    }

    .discount-strip::after {
      right: 0;
      border-left: 8px solid transparent;
    }

    .listing-body {
      padding: 18px;
    }

    .listing-body p {
      color: var(--muted);
      line-height: 1.6;
      margin-top: 8px;
    }

    .social-showcase {
      display: grid;
      gap: 20px;
    }

    .social-showcase > div {
      display: grid;
      gap: 20px;
    }

    .instagram-feed {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 22px;
    }

    .insta-card,
    .video-player,
    .video-tile {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      box-shadow: 0 14px 30px rgba(72, 38, 28, 0.08);
      overflow: hidden;
    }

    .insta-media {
      aspect-ratio: 4 / 5;
      position: relative;
      overflow: hidden;
      background: linear-gradient(160deg, rgba(215, 25, 32, 0.08), rgba(255, 244, 244, 0.98));
      padding: 12px 12px 0;
    }

    .insta-card {
      display: flex;
      flex-direction: column;
      border-radius: 24px;
      border: 1px solid rgba(215, 25, 32, 0.12);
      background:
        radial-gradient(circle at top left, rgba(215, 25, 32, 0.08), transparent 32%),
        linear-gradient(180deg, #ffffff, #fff7f7);
      box-shadow: 0 18px 34px rgba(110, 16, 22, 0.1);
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .insta-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 24px 44px rgba(110, 16, 22, 0.14);
      border-color: rgba(215, 25, 32, 0.2);
    }

    .insta-frame {
      width: 100%;
      height: 100%;
      min-height: 320px;
      border: 0;
      background: #fff;
      border-radius: 18px 18px 0 0;
    }

    .insta-open-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 42px;
      padding: 10px 16px;
      border-radius: 999px;
      border: 1px solid rgba(215, 25, 32, 0.18);
      color: var(--primary-dark);
      text-decoration: none;
      font-weight: 700;
      background: #fff;
      box-shadow: 0 8px 18px rgba(215, 25, 32, 0.08);
      transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    }

    .insta-open-link:hover {
      background: var(--primary);
      color: #fff;
      border-color: var(--primary);
    }

    .insta-content {
      padding: 16px 18px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      border-top: 1px solid rgba(215, 25, 32, 0.08);
    }

    .insta-meta {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
      color: var(--primary-dark);
      font-size: 0.88rem;
      font-weight: 600;
      flex: 1;
    }

    .insta-meta span:first-child {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 6px 12px;
      border-radius: 999px;
      background: rgba(215, 25, 32, 0.08);
      border: 1px solid rgba(215, 25, 32, 0.12);
    }

    .insta-meta span:last-child {
      letter-spacing: 0.02em;
    }

    .video-layout {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 24px;
      align-items: stretch;
    }

    .video-player {
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
      padding: 22px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 245, 0.98));
      border: 1px solid rgba(215, 25, 32, 0.12);
      box-shadow: 0 24px 48px rgba(110, 16, 22, 0.12);
    }

    .video-frame {
      aspect-ratio: 16 / 9;
      width: 100%;
      border: 0;
      border-radius: 20px;
      display: block;
      background: #140304;
      box-shadow: 0 18px 34px rgba(61, 8, 11, 0.18);
    }

    .video-caption {
      margin-top: 16px;
      padding: 4px 2px 2px;
    }

    .video-caption h3 {
      font-size: 1.35rem;
      line-height: 1.2;
    }

    .video-caption p {
      color: var(--muted);
      margin-top: 8px;
      line-height: 1.6;
      max-width: 62ch;
    }

    .video-list {
      display: contents;
    }

    .video-tile {
      width: 100%;
      height: 100%;
      text-align: left;
      padding: 0;
      border: 1px solid var(--line);
      background: #fff;
      color: inherit;
      font: inherit;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
      appearance: none;
      -webkit-appearance: none;
    }

    .video-tile:hover,
    .video-tile.active {
      transform: translateY(-2px);
      border-color: rgba(215, 25, 32, 0.38);
      box-shadow: 0 18px 34px rgba(110, 16, 22, 0.12);
    }

    .video-thumb {
      position: relative;
      aspect-ratio: 16 / 9;
      background: linear-gradient(145deg, #b21d23, #f7dfe0);
    }

    .video-thumb::before {
      content: "";
      position: absolute;
      inset: 50%;
      width: 68px;
      height: 68px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.92);
      transform: translate(-50%, -50%);
      box-shadow: 0 10px 22px rgba(86, 14, 18, 0.16);
    }

    .video-thumb::after {
      content: "";
      position: absolute;
      inset: 50%;
      margin-left: 4px;
      border-top: 12px solid transparent;
      border-bottom: 12px solid transparent;
      border-left: 18px solid var(--primary);
      transform: translate(-50%, -50%);
    }

    .video-tile-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    .video-tile-body h3 {
      font-size: 1.04rem;
      margin: 0;
    }

    .video-tile-body p {
      color: var(--muted);
      margin-top: 8px;
      line-height: 1.6;
    }

    .story-grid,
    .footer-grid {
      align-items: stretch;
    }

    .story-grid {
      gap: 18px;
    }

    .story-card {
      padding: 28px;
      flex: 1;
    }

    .story-card h3 {
      margin-bottom: 10px;
    }

    .story-card p {
      color: var(--muted);
      line-height: 1.7;
    }

    .newsletter {
      margin: 34px 0 44px;
      padding: 28px;
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
    }

    .newsletter p {
      color: var(--muted);
      margin-top: 8px;
      max-width: 50ch;
    }

    .newsletter form {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .newsletter input {
      min-width: min(320px, 100%);
      padding: 14px 16px;
      border-radius: 999px;
      border: 1px solid var(--line);
      background: #fff;
      font: inherit;
    }

    footer {
      padding: 0 0 36px;
    }

    .footer-grid {
      border-top: 1px solid var(--line);
      padding-top: 24px;
      color: var(--muted);
      flex-wrap: wrap;
    }

    .cart-panel {
      position: fixed;
      top: 24px;
      right: 24px;
      width: min(390px, calc(100% - 24px));
      max-height: calc(100vh - 48px);
      border-radius: 26px;
      padding: 22px;
      z-index: 30;
      transform: translateX(calc(100% + 30px));
      transition: transform 0.3s ease;
      overflow: auto;
    }

    .cart-panel.open {
      transform: translateX(0);
    }

    .cart-head {
      align-items: start;
      margin-bottom: 16px;
    }

    .cart-head button {
      border: 0;
      background: transparent;
      font-size: 1.4rem;
      line-height: 1;
      color: var(--muted);
    }

    .cart-items {
      display: grid;
      gap: 14px;
    }

    .cart-line {
      padding: 14px 0;
      border-top: 1px solid var(--line);
      align-items: start;
    }

    .cart-line:first-child {
      border-top: 0;
      padding-top: 0;
    }

    .cart-line h4 {
      margin: 0 0 4px;
      font-size: 1rem;
    }

    .cart-line p,
    .cart-empty {
      color: var(--muted);
      line-height: 1.6;
    }

    .qty-controls {
      display: inline-flex;
      align-items: center;
      border: 1px solid var(--line);
      border-radius: 999px;
      overflow: hidden;
      margin-top: 10px;
    }

    .qty-controls button {
      border: 0;
      background: transparent;
      width: 34px;
      height: 34px;
      font-size: 1rem;
    }

    .qty-controls span {
      min-width: 32px;
      text-align: center;
      font-size: 0.95rem;
    }

    .remove-btn {
      border: 0;
      background: transparent;
      color: var(--primary-dark);
      padding: 0;
      margin-top: 10px;
    }

    .cart-summary {
      margin-top: 18px;
      border-top: 1px solid var(--line);
      padding-top: 18px;
    }

    .cart-summary-row {
      margin-bottom: 10px;
      color: var(--muted);
    }

    .cart-summary-row.total {
      font-weight: 700;
      color: var(--text);
      font-size: 1.1rem;
    }

    .checkout-btn {
      width: 100%;
      margin-top: 8px;
    }

    .overlay {
      position: fixed;
      inset: 0;
      background: rgba(92, 16, 22, 0.28);
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
      z-index: 25;
    }

    .overlay.show {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-shell {
      position: fixed;
      inset: 0;
      z-index: 35;
      display: grid;
      place-items: center;
      padding: 16px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.25s ease;
    }

    .modal-shell.show {
      opacity: 1;
      pointer-events: auto;
    }

    .checkout-modal {
      width: min(960px, 100%);
      max-height: calc(100vh - 32px);
      overflow: auto;
      border-radius: 30px;
      padding: 30px;
      background:
        radial-gradient(circle at top left, rgba(215, 25, 32, 0.08), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(255, 250, 250, 0.98));
      border: 1px solid rgba(215, 25, 32, 0.12);
      box-shadow: 0 32px 70px rgba(92, 16, 22, 0.18);
      transition: width 0.3s ease;
    }

    .checkout-modal.oss-mode {
      width: min(460px, 100%);
    }

    .checkout-top,
    .checkout-total-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .checkout-top {
      margin-bottom: 22px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(215, 25, 32, 0.1);
    }

    .checkout-close {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid rgba(215, 25, 32, 0.12);
      background: rgba(255, 255, 255, 0.92);
      color: var(--primary-dark);
      font-size: 1.4rem;
      line-height: 1;
      box-shadow: 0 10px 24px rgba(110, 16, 22, 0.08);
    }

    .checkout-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
      gap: 24px;
      align-items: start;
    }

    .checkout-form-panel,
    .order-summary-box {
      border-radius: 24px;
      border: 1px solid rgba(215, 25, 32, 0.1);
      background: rgba(255, 255, 255, 0.94);
      box-shadow: 0 20px 40px rgba(110, 16, 22, 0.08);
    }

    .checkout-form-panel {
      padding: 22px;
    }

    .checkout-subtitle {
      margin-top: 8px;
      color: var(--muted);
      line-height: 1.6;
      max-width: 46ch;
    }

    .checkout-panel-heading {
      margin-bottom: 18px;
      padding: 16px 18px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(215, 25, 32, 0.08), rgba(215, 25, 32, 0.03));
      border: 1px solid rgba(215, 25, 32, 0.1);
    }

    .checkout-panel-heading h3,
    .summary-top h3,
    .payment-top h3 {
      margin-bottom: 4px;
    }

    .checkout-panel-heading p,
    .summary-top p,
    .payment-top p {
      color: var(--muted);
      line-height: 1.6;
    }

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

    .field,
    .field-full {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .field-full {
      grid-column: 1 / -1;
    }

    .field label,
    .field-full label {
      font-size: 0.92rem;
      color: var(--muted);
    }

    .field input,
    .field-full input,
    .field select {
      width: 100%;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: #fff;
      color: var(--text);
      transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .field input:focus,
    .field-full input:focus,
    .field select:focus {
      border-color: rgba(215, 25, 32, 0.42);
      box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12);
      outline: none;
      transform: translateY(-1px);
    }

    .order-summary-box {
      padding: 22px;
      align-self: start;
      position: sticky;
      top: 16px;
    }

    .summary-top {
      margin-bottom: 18px;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(215, 25, 32, 0.1);
    }

    .payment-box {
      margin-top: 22px;
      padding: 18px;
      border-top: 1px solid rgba(215, 25, 32, 0.08);
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(215, 25, 32, 0.05), rgba(255, 255, 255, 0.95));
      display: grid;
      gap: 14px;
    }

    .payment-top {
      display: grid;
      gap: 4px;
    }

    .payment-box p {
      color: var(--muted);
      line-height: 1.6;
    }

    .payment-qr {
      width: min(220px, 100%);
      aspect-ratio: 1 / 1;
      border-radius: 20px;
      border: 1px solid var(--line);
      background: #fff;
      padding: 10px;
      box-shadow: 0 12px 24px rgba(110, 16, 22, 0.08);
    }

    .payment-meta {
      display: grid;
      gap: 10px;
    }

    .payment-chip {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      max-width: 100%;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(215, 25, 32, 0.08);
      border: 1px solid rgba(215, 25, 32, 0.14);
      color: var(--primary-dark);
      font-weight: 700;
      word-break: break-all;
    }

    .payment-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      min-height: 44px;
      padding: 12px 18px;
      border-radius: 999px;
      background: var(--primary);
      color: #fff;
      box-shadow: 0 10px 24px rgba(215, 25, 32, 0.18);
    }

    .payment-check {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-top: 18px;
      padding: 14px 16px;
      border-radius: 16px;
      background: rgba(215, 25, 32, 0.05);
      border: 1px solid rgba(215, 25, 32, 0.1);
      color: var(--muted);
    }

    .field-hint,
    .shipping-note-text {
      margin-top: 8px;
      color: var(--muted);
      font-size: 0.9rem;
      line-height: 1.5;
    }

    .payment-check input {
      width: 18px;
      height: 18px;
      margin-top: 2px;
    }

    .checkout-items {
      display: grid;
      gap: 12px;
      margin-bottom: 18px;
    }

    .checkout-item {
      display: flex;
      align-items: start;
      justify-content: space-between;
      gap: 14px;
      color: var(--muted);
      padding: 12px 0;
      border-bottom: 1px dashed rgba(215, 25, 32, 0.12);
    }

    .checkout-item strong,
    .checkout-total-row strong {
      color: var(--text);
    }

    .checkout-total-row {
      padding-top: 12px;
      border-top: 1px solid var(--line);
      margin-top: 12px;
    }

    .checkout-actions {
      margin-top: 6px;
    }

    .checkout-submit,
    .continue-shopping {
      width: 100%;
      margin-top: 16px;
    }

    .checkout-message {
      margin-top: 14px;
      min-height: 24px;
      color: var(--primary-dark);
      font-size: 0.95rem;
    }

    .cart-note {
      margin-top: 10px;
      color: var(--primary-dark);
      font-size: 0.92rem;
      min-height: 20px;
    }

    .order-success {
      margin-top: 18px;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(215, 25, 32, 0.08);
      border: 1px solid rgba(215, 25, 32, 0.16);
      color: var(--text);
      display: none;
    }

    .order-success.show {
      display: block;
    }

    .order-success-screen {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 36px 24px 40px;
      text-align: center;
      gap: 18px;
    }

    .oss-icon-wrap {
      width: 100px;
      height: 100px;
      border-radius: 50%;
      background: linear-gradient(135deg, #e6f9ef 0%, #c3f0d5 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 12px 36px rgba(39, 174, 96, 0.22);
      animation: oss-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }

    @keyframes oss-pop {
      from { transform: scale(0); opacity: 0; }
      to   { transform: scale(1); opacity: 1; }
    }

    .oss-icon-wrap.oss-spinning {
      background: linear-gradient(135deg, #fff3f3 0%, #ffe0e0 100%);
      box-shadow: 0 12px 36px rgba(215, 25, 32, 0.15);
      animation: oss-rotate 1s linear infinite;
    }

    .oss-icon-wrap.oss-spinning .oss-icon {
      color: var(--primary);
    }

    @keyframes oss-rotate {
      to { transform: rotate(360deg); }
    }

    .oss-icon {
      width: 52px;
      height: 52px;
      color: #1ea854;
    }

    .oss-icon svg {
      width: 100%;
      height: 100%;
      stroke: currentColor;
    }

    .oss-title {
      font-size: 2.2rem;
      font-weight: 800;
      color: var(--text);
      margin: 0;
      line-height: 1.1;
      animation: oss-rise 0.45s 0.12s ease both;
    }

    .oss-sub {
      color: var(--muted);
      font-size: 0.97rem;
      line-height: 1.75;
      max-width: 36ch;
      margin: 0;
      animation: oss-rise 0.45s 0.22s ease both;
    }

    @keyframes oss-rise {
      from { transform: translateY(14px); opacity: 0; }
      to   { transform: translateY(0);    opacity: 1; }
    }

    .oss-id-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      padding: 18px 48px;
      background: rgba(215, 25, 32, 0.04);
      border: 1.5px dashed rgba(215, 25, 32, 0.28);
      border-radius: 20px;
      width: 100%;
      max-width: 340px;
      animation: oss-rise 0.45s 0.32s ease both;
    }

    .oss-id-label {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.15em;
      color: var(--muted);
    }

    .oss-id-value {
      font-size: 1.45rem;
      font-weight: 800;
      color: var(--primary);
      font-family: monospace, monospace;
      letter-spacing: 0.06em;
      word-break: break-all;
    }

    .oss-btn {
      width: auto !important;
      min-width: 220px;
      margin-top: 6px !important;
      padding: 15px 40px !important;
      font-size: 1rem;
      font-weight: 700;
      animation: oss-rise 0.45s 0.42s ease both;
    }

    @media (max-width: 600px) {
      .order-success-screen {
        padding: 40px 20px;
        gap: 16px;
        min-height: 300px;
      }
      .oss-icon-wrap {
        width: 80px;
        height: 80px;
      }
      .oss-icon {
        width: 42px;
        height: 42px;
      }
      .oss-title {
        font-size: 1.7rem;
      }
      .oss-id-box {
        padding: 16px 20px;
        max-width: 100%;
      }
      .oss-btn {
        width: 100% !important;
        min-width: unset;
      }
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 980px) {
      .topbar-actions {
        gap: 8px;
      }

      .topbar-search {
        min-width: 190px;
        width: clamp(190px, 22vw, 240px);
        max-width: 240px;
      }

      .hero,
      .story-grid,
      .footer-grid {
        flex-direction: column;
      }

      .hero-copy,
      .hero-art {
        width: 100%;
      }

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

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

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

      .checkout-modal {
        width: min(720px, 100%);
        padding: 22px;
      }

      .order-summary-box {
        position: static;
      }
    }

    @media (max-width: 700px) {
      .section-head,
      .cart-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .listing-search {
        width: 100%;
        justify-items: stretch;
      }

      .search-field {
        width: 100%;
      }

      .search-suggestions {
        width: 100%;
      }

      .search-status {
        text-align: left;
      }

      .topbar-inner {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
      }

      .nav {
        display: none;
      }

      .hamburger {
        display: flex;
      }

      .topbar-left {
        flex-direction: row;
        align-items: center;
        flex: 1;
        min-width: 0;
        text-align: left;
      }

      .social-links {
        display: none;
      }

      .brand {
        gap: 10px;
        font-size: 1rem;
        min-width: 0;
      }

      .brand-mark {
        width: 48px;
        height: 48px;
        flex-basis: 48px;
      }

      .brand-copy {
        min-width: 0;
      }

      .brand-copy > span,
      .brand small {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .brand small {
        max-width: 145px;
      }

      .topbar-actions {
        width: auto;
        margin-left: auto;
        gap: 8px;
        flex-shrink: 0;
        flex-wrap: nowrap;       /* keep cart + hamburger on one row */
        justify-content: flex-end;
        align-items: center;
      }

      /* hide topbar search on mobile — it lives inside the drawer instead */
      .topbar-search {
        display: none !important;
      }

      .cart-toggle {
        padding: 10px 14px;
        font-size: 0.9rem;
        flex-shrink: 0;
      }

      .hamburger {
        width: 44px;
        height: 44px;
        padding: 0;
        border-radius: 50%;
        flex-shrink: 0;
      }

      .mobile-menu {
        padding-bottom: 8px;
      }

      .mobile-menu .menu-cart-link {
        display: block;
        color: var(--primary-dark);
        font-weight: 700;
      }

      .cat-title {
        font-size: 1.5rem;
        margin-bottom: 22px;
      }

      .category-nav a {
        flex: 0 0 120px;
        font-size: 0.82rem;
      }

      .category-thumb {
        width: 104px;
        height: 104px;
      }

      .cat-arrow {
        margin-top: 43px;
      }

      .hero-copy {
        padding: 36px 24px;
      }

      .hero-art {
        min-height: 320px;
      }

      .products {
        grid-template-columns: 1fr;
      }

      .listing-grid {
        grid-template-columns: 1fr;
      }

      .video-layout {
        grid-template-columns: 1fr;
      }

      .video-list {
        display: grid;
        grid-template-columns: 1fr;
      }

      .newsletter {
        padding: 24px 18px;
      }

      .newsletter form,
      .newsletter input,
      .newsletter button,
      .checkout-btn {
        width: 100%;
      }

      .product-meta,
      .cart-line,
      .checkout-top,
      .checkout-total-row {
        align-items: flex-start;
        flex-direction: column;
      }

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

      .cart-panel {
        top: 12px;
        right: 12px;
        width: calc(100% - 24px);
        max-height: calc(100vh - 24px);
      }

      .checkout-modal {
        padding: 22px 16px;
      }
    }

    @media (max-width: 420px) {
      .container {
        width: min(1120px, calc(100% - 22px));
      }

      .brand {
        gap: 8px;
        font-size: 0.92rem;
      }

      .brand-mark {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
      }

      .brand small {
        max-width: 120px;
        font-size: 0.56rem;
        letter-spacing: 0.12em;
      }

      .cart-toggle {
        padding: 10px 12px;
        font-size: 0.84rem;
      }

      .cat-section {
        padding: 28px 0 22px;
      }

      .cat-title {
        font-size: 1.3rem;
        margin-bottom: 18px;
      }

      .category-nav a {
        flex: 0 0 100px;
        font-size: 0.76rem;
        gap: 8px;
      }

      .category-thumb {
        width: 84px;
        height: 84px;
      }

      .cat-arrow {
        display: none;
      }

      /* no gap from hidden arrows — viewport takes full width */
      .cat-carousel-outer {
        gap: 0;
      }

      /* tighter section spacing on small screens */
      .cat-section {
        padding: 20px 0 18px;
      }

      .cat-title {
        font-size: 1.2rem;
        margin-bottom: 14px;
      }
    }

    @media (max-width: 767px) {
      .top-marquee .marquee-child,
      .top-marquee .marquee-child a {
        font-size: 13px;
        line-height: 30px;
      }

      .top-marquee .marquee-child {
        margin-top: 0;
      }
    }

    @media (max-width: 360px) {
      .top-marquee .marquee-child,
      .top-marquee .marquee-child a {
        font-size: 11px;
        line-height: 30px;
      }
    }
    .breadcrumb {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(215, 25, 32, 0.08);
    box-shadow: 0 8px 18px rgba(110, 16, 22, 0.05);
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1;
}
.breadcrumb-current {
    color: var(--text);
    font-weight: 700;
}
.breadcrumb-sep {
    color: rgba(141, 58, 65, 0.55);
}
.breadcrumb-wrap {
    padding: 16px 0 4px;
}
.container {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}
.breadcrumb a {
    color: var(--primary);
    font-weight: 700;
} 
.list h1 {
    font-size: 25px;
}

.main-nav {
  background: #fff;
  border-bottom: 1px solid rgba(215, 25, 32, 0.14);
  position: sticky;
  top: 97px;
  z-index: 19;
  /* overflow MUST be visible — any other value clips the dropdowns */
}


.main-nav-inner {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

/* ── Top-level link ── */
.main-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.main-nav-link:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: rgba(215, 25, 32, 0.04);
}

.main-nav-link--highlight {
  color: var(--primary-dark);
  font-style: italic;
}

.main-nav-link--highlight:hover {
  color: var(--primary);
}

/* chevron icon */
.nav-chevron {
  font-size: 0.6rem;
  margin-top: 1px;
  transition: transform 0.2s ease;
  color: var(--muted);
}

/* ── Dropdown wrapper ── */
.main-nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

/* ── Dropdown panel (hidden by default) ── */
.main-nav-dropdown {
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 190px;
  background: #fff;
  border: 1px solid rgba(215, 25, 32, 0.12);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(92, 16, 22, 0.14);
  padding: 6px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 100;
}

/* ── Show on hover ── */
.main-nav-item:hover .main-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav-item:hover .nav-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.main-nav-item:hover > .main-nav-link {
  color: var(--primary);
  border-bottom-color: var(--primary);
  background: rgba(215, 25, 32, 0.04);
}

/* ── Dropdown links ── */
.main-nav-dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, padding-left 0.15s ease;
  white-space: nowrap;
}

.main-nav-dropdown a:hover {
  background: rgba(215, 25, 32, 0.06);
  color: var(--primary);
  padding-left: 24px;
}

/* thin red left-border accent on hover */
.main-nav-dropdown a:hover {
  border-left: 3px solid var(--primary);
  padding-left: 21px;
}

.main-nav-dropdown a:not(:last-child) {
  border-bottom: 1px solid rgba(215, 25, 32, 0.06);
}

/* ── Hamburger button (hidden on desktop) ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1.5px solid rgba(215, 25, 32, 0.28);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 7px;
  transition: background 0.2s ease, border-color 0.2s ease;
  flex-shrink: 0;
}

.hamburger:hover {
  background: rgba(215, 25, 32, 0.07);
  border-color: var(--primary);
}

.ham-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease;
  transform-origin: center;
}

/* Animate to X when open */
.hamburger.open .ham-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .ham-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open .ham-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile overlay ── */
.mob-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(92, 16, 22, 0.45);
  z-index: 200;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.mob-overlay.show {
  display: block;
  opacity: 1;
}

/* ── Mobile drawer ── */
.mob-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 88vw);
  background: #fff;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 8px 0 40px rgba(92, 16, 22, 0.18);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mob-drawer.open {
  transform: translateX(0);
}

/* Drawer header */
.mob-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(215,25,32,0.12), transparent 60%),
    #fff5f5;
  flex-shrink: 0;
}

.mob-brand {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.02em;
}

.mob-close {
  width: 36px;
  height: 36px;
  background: rgba(215, 25, 32, 0.08);
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s ease, transform 0.18s ease;
}

.mob-close:hover {
  background: var(--primary);
  color: #fff;
  transform: rotate(90deg);
}

/* Nav items */
.mob-nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px 0 24px;
}

.mob-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.mob-link:hover,
.mob-link.active {
  background: rgba(215, 25, 32, 0.05);
  color: var(--primary);
  border-left-color: var(--primary);
}

.mob-link--highlight {
  color: var(--primary-dark);
  font-style: italic;
}

/* Accordion chevron */
.mob-chevron {
  flex-shrink: 0;
  transition: transform 0.22s ease;
  color: var(--muted);
}

.mob-link--sub[aria-expanded="true"] .mob-chevron {
  transform: rotate(180deg);
  color: var(--primary);
}

.mob-link--sub[aria-expanded="true"] {
  color: var(--primary);
  background: rgba(215, 25, 32, 0.05);
  border-left-color: var(--primary);
}

/* Sub-menu panel */
.mob-sub {
  display: none;
  flex-direction: column;
  background: rgba(215, 25, 32, 0.03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mob-sub.open {
  display: flex;
}

.mob-sub-link {
  display: block;
  padding: 11px 22px 11px 36px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, padding-left 0.15s ease;
}

.mob-sub-link:hover {
  background: rgba(215, 25, 32, 0.07);
  color: var(--primary);
  border-left-color: var(--primary);
  padding-left: 40px;
}

/* Auth row at bottom */
.mob-auth-row {
  margin-top: auto;
  padding: 16px 20px;
  border-top: 1px solid var(--line);
}

.mob-signin {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 12px 18px;
  background: transparent;
  border: 1.5px solid var(--primary);
  border-radius: 999px;
  color: var(--primary);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  justify-content: center;
  transition: background 0.18s ease, color 0.18s ease;
}

.mob-signin:hover {
  background: var(--primary);
  color: #fff;
}

.mob-signin--account {
  background: var(--primary);
  color: #fff;
}

.mob-signin--account:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* ── Breakpoint: hide desktop nav, show hamburger ── */
@media (max-width: 1099px) {
  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Sign In button moves into the drawer on mobile/tablet */
  .auth-topbar-wrap {
    display: none;
  }
}

@media (max-width: 700px) {
  .auth-topbar-btn span:not(.auth-avatar) {
    display: none;
  }
}

/* ═══════════════════════════════════════════
   FEATURED COLLECTIONS  &  BEST SELLERS
   ═══════════════════════════════════════════ */

.home-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 10px;
}

.home-title {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  font-weight: 800;
  color: var(--text);
  margin: 0;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ── Featured Collections ── */
.fc-section {
  padding: 80px 0 60px;
}

.fc-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.fc-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--primary);
  flex-shrink: 0;
  transition: gap 0.2s;
}
.fc-view-all:hover { gap: 10px; }

.fc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.fc-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  text-decoration: none;
  cursor: pointer;
}

.fc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}

.fc-card:hover img { transform: scale(1.07); }

.fc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,10,5,0.72) 0%, rgba(0,0,0,0.05) 55%, transparent 100%);
  transition: background 0.3s;
}
.fc-card:hover .fc-overlay {
  background: linear-gradient(to top, rgba(15,10,5,0.82) 0%, rgba(0,0,0,0.1) 55%, transparent 100%);
}

.fc-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 22px 24px;
  color: #fff;
}

.fc-cat-name {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 6px;
  letter-spacing: -0.01em;
}

.fc-shop-link {
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0.82;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s, opacity 0.2s;
}
.fc-card:hover .fc-shop-link { gap: 9px; opacity: 1; }

/* ── Best Sellers ── */
.bs-section {
  padding: 60px 0 80px;
  background: linear-gradient(180deg, #fdf8f4 0%, #fff 100%);
}

.bs-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
}

.bs-view-all {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 3px;
  border-bottom: 1.5px solid var(--primary);
  flex-shrink: 0;
  transition: gap 0.2s;
}
.bs-view-all:hover { gap: 10px; }

.bs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.bs-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(215, 25, 32, 0.08);
  box-shadow: 0 6px 20px rgba(72, 38, 28, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.28s ease;
}
.bs-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 50px rgba(72, 38, 28, 0.15);
}

.bs-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f5ede6;
}

.bs-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.bs-card:hover .bs-img-wrap img { transform: scale(1.06); }

.bs-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  pointer-events: none;
}

.bs-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}

.bs-name {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
}

.bs-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.bs-price {
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--primary);
  margin: 4px 0 0;
}

.bs-actions {
  display: flex;
  gap: 9px;
  margin-top: 14px;
}

.bs-add-btn {
  flex: 1;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 11px 14px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
}
.bs-add-btn:hover {
  background: var(--primary-dark, #9d1118);
  transform: translateY(-2px);
}

.bs-see-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1.5px solid rgba(215, 25, 32, 0.28);
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.bs-see-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.bs-footer {
  text-align: center;
  margin-top: 44px;
}

.bs-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  border-radius: 999px;
  padding: 14px 36px;
  font-size: 0.97rem;
  font-weight: 700;
  font-family: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.18s;
}
.bs-all-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .fc-grid { grid-template-columns: repeat(2, 1fr); }
  .bs-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .fc-section { padding: 48px 0 36px; }
  .bs-section  { padding: 36px 0 52px; }

  .fc-header,
  .bs-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 22px;
  }

  .fc-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .fc-cat-name { font-size: 1rem; }

  .bs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .bs-body { padding: 14px 14px 18px; gap: 6px; }
  .bs-name { font-size: 0.9rem; }
  .bs-desc { display: none; }
  .bs-price { font-size: 1rem; }
  .bs-actions { flex-direction: column; gap: 7px; }
  .bs-add-btn, .bs-see-btn { padding: 10px 12px; }
  .bs-footer { margin-top: 28px; }
}

/* ═══════════════════════════════════════════
   SWIPER CAROUSELS  (FC + BS sections)
   ═══════════════════════════════════════════ */

.swiper-section {
  padding: 72px 0 0;
}
.swiper-section + .swiper-section {
  padding-top: 56px;
}

/* section header row */
.sw-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.sw-header-left { flex: 1; }

.sw-nav-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* frame holding [prev] [swiper] [next] */
.sw-frame {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/* buttons sit alongside swiper, pushed down to image vertical centre */
.sw-frame > .sw-btn {
  flex-shrink: 0;
  margin-top: 135px; /* image centre for 4 slides desktop (≈310px tall ÷2 − 20px) */
}

.sw-inner {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  padding-bottom: 44px;
}

@media (max-width: 1024px) {
  .sw-frame > .sw-btn { margin-top: 148px; } /* 3.3 slides */
}

@media (max-width: 768px) {
  .sw-frame > .sw-btn { margin-top: 118px; } /* 2.8 slides */
}

@media (max-width: 480px) {
  .sw-frame > .sw-btn { margin-top: 96px;  } /* 2.2 slides */
}

@media (max-width: 380px) {
  .sw-frame > .sw-btn { margin-top: 80px;  } /* 1.25 slides */
}

.sw-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 0;
  background-color: #1a1a1a;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.18s ease, opacity 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
  padding: 0;
}
.sw-btn:hover {
  background-color: #444;
  transform: scale(1.1);
}
.sw-btn:disabled,
.sw-btn.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.sw-view-all {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 1.5px solid var(--primary);
  white-space: nowrap;
  transition: gap 0.2s;
}
.sw-view-all:hover { gap: 9px; }

/* legacy - kept for compatibility */
.sw-outer { overflow: hidden; }

/* pagination */
.sw-pagination {
  margin-top: 20px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.sw-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: rgba(215, 25, 32, 0.22);
  opacity: 1;
  border-radius: 999px;
  transition: width 0.3s, background 0.3s;
}
.sw-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 24px;
}

/* ── product card shared ── */
.sp-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(215, 25, 32, 0.08);
  box-shadow: 0 4px 16px rgba(72, 38, 28, 0.07);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.26s ease, box-shadow 0.26s ease;
}
.sp-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 48px rgba(72, 38, 28, 0.16);
}

.sp-img-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f5ede6;
}
.sp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.sp-card:hover .sp-img-wrap img { transform: scale(1.06); }

.sp-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  pointer-events: none;
}

.sp-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 5px;
}

.sp-cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0;
}

.sp-name {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.6em;
}

.sp-price {
  font-size: 1.08rem;
  font-weight: 800;
  color: var(--text);
  margin: 6px 0 0;
}

.sp-atc {
  margin-top: auto;
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s, transform 0.18s;
}
.sp-atc:hover {
  background: var(--primary-dark, #9d1118);
  transform: translateY(-2px);
}

/* background tint on Best Sellers section */
.bs-swiper-section {
  background: linear-gradient(180deg, #fdf8f4 0%, #fff 100%);
  padding-bottom: 80px;
}
.fc-swiper-section {
  padding-bottom: 20px;
}

/* mobile "View All" shown below swiper */
.sw-mobile-viewall {
  display: none;
  justify-content: center;
  margin-top: 22px;
}

/* hide Shop by Category arrows on all mobile (≤600px) */
@media (max-width: 600px) {
  .cat-arrow {
    display: none;
  }
  .cat-carousel-outer {
    gap: 0;
  }
  .cat-section {
    padding: 20px 0 18px;
  }
  .cat-title {
    font-size: 1.2rem;
    margin-bottom: 14px;
  }
}

/* responsive */
@media (max-width: 600px) {
  /* hide prev/next arrows on mobile */
  .sw-frame > .sw-btn {
    display: none;
  }

  /* remove gap left by hidden buttons */
  .sw-frame {
    gap: 0;
  }

  /* hide "View All" from header on mobile */
  .sw-header .sw-view-all {
    display: none;
  }

  /* show "View All" below the swiper on mobile */
  .sw-mobile-viewall {
    display: flex;
  }

  .sw-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
  }
  .swiper-section { padding-top: 48px; }
  .sp-body { padding: 13px 14px 16px; }
  .sp-name { font-size: 0.9rem; }
  .sp-price { font-size: 0.98rem; margin-top: 4px; }
  .sp-atc { padding: 10px; font-size: 0.84rem; }
}

/* ── Mobile drawer search box ── */
.mob-search-sec {
  padding: 12px 16px 8px;
  border-bottom: 1px solid var(--line);
}
.mob-search-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(215,25,32,0.16);
  box-shadow: 0 4px 14px rgba(141,24,31,0.08);
}
.mob-search-field svg { color: var(--primary); flex-shrink: 0; }
.mob-search-field input {
  flex: 1;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
}
.mob-search-field input::placeholder { color: var(--muted); opacity: 0.8; }
