    /* ============ DESIGN TOKENS ============ */
    :root {
      --color-primary: #d84315;       /* deep saffron */
      --color-primary-dark: #8e2f00;  /* maroon */
      --color-accent: #f9a825;        /* gold */
      --color-cream: #fff8f0;
      --color-cream-2: #fdebd0;
      --color-text: #2c1810;
      --color-muted: #6b5d54;
      --color-border: #ead9c5;
      --color-white: #ffffff;
      --color-success: #2e7d32;

      --font-display: "Fraunces", Georgia, serif;
      --font-body: "DM Sans", system-ui, -apple-system, sans-serif;

      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 22px;

      --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
      --shadow-md: 0 8px 24px rgba(44, 24, 16, 0.1);
      --shadow-lg: 0 20px 50px rgba(44, 24, 16, 0.14);

      --container: 1680px;
    }

    /* ============ RESET ============ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      color: var(--color-text);
      background: var(--color-cream);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }
    img { max-width: 100%; display: block; }
    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; background: none; }
    ul { list-style: none; }

    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 40px;
    }

    /* ============ HEADER ============ */
    .topbar {
      background: var(--color-primary-dark);
      color: var(--color-cream);
      font-size: 0.85rem;
      padding: 8px 0;
      text-align: center;
    }
    .topbar strong { color: var(--color-accent); }

    .header {
      background: var(--color-white);
      box-shadow: var(--shadow-sm);
      position: sticky;
      top: 0;
      z-index: 100;
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 40px;
      max-width: var(--container);
      margin: 0 auto;
      gap: 20px;
    }
    .logo {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: 1.7rem;
      color: var(--color-primary);
      display: flex;
      align-items: center;
      gap: 8px;
      white-space: nowrap;
    }
    .logo span { color: var(--color-primary-dark); }

    .nav { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
    .nav a {
      padding: 8px 14px;
      font-weight: 500;
      border-radius: var(--radius-sm);
      transition: all 0.2s;
      font-size: 0.95rem;
    }
    .nav a:hover { background: var(--color-cream-2); color: var(--color-primary); }

    .auth-buttons { display: flex; gap: 10px; align-items: center; }
    .btn {
      padding: 10px 20px;
      border-radius: var(--radius-sm);
      font-weight: 600;
      font-size: 0.9rem;
      transition: all 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
    }
    .btn-outline {
      border: 2px solid var(--color-primary);
      color: var(--color-primary);
      background: transparent;
    }
    .btn-outline:hover { background: var(--color-primary); color: white; }
    .btn-primary {
      background: var(--color-primary);
      color: white;
    }
    .btn-primary:hover { background: var(--color-primary-dark); transform: translateY(-1px); }

    /* Mobile menu toggle */
    .menu-toggle { display: none; font-size: 1.6rem; color: var(--color-primary); }

    /* ============ HERO SLIDER ============ */
    .hero {
      position: relative;
      overflow: hidden;
      background: var(--color-cream-2);
    }
    .hero-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(.22,.61,.36,1);
    }
    .hero-slide {
      min-width: 100%;
      height: clamp(320px, 50vw, 520px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 40px 20px;
      text-align: center;
      color: white;
      position: relative;
    }
    .hero-slide::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.15), rgba(0,0,0,0.45));
    }
    .hero-slide-1 {
      background: linear-gradient(135deg, #d84315 0%, #8e2f00 100%);
    }
    .hero-slide-2 {
      background: linear-gradient(135deg, #f9a825 0%, #d84315 100%);
    }
    .hero-slide-3 {
      background: linear-gradient(135deg, #5d4037 0%, #8e2f00 100%);
    }
    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 700px;
    }
    .hero-eyebrow {
      display: inline-block;
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(4px);
      padding: 6px 16px;
      border-radius: 50px;
      font-size: 0.85rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 18px;
      font-weight: 500;
    }
    .hero-title {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(2rem, 5vw, 3.6rem);
      line-height: 1.1;
      margin-bottom: 16px;
    }
    .hero-subtitle {
      font-size: clamp(1rem, 1.6vw, 1.2rem);
      opacity: 0.95;
      margin-bottom: 28px;
      max-width: 540px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero-cta {
      background: var(--color-accent);
      color: var(--color-primary-dark);
      padding: 14px 32px;
      font-weight: 700;
      border-radius: var(--radius-sm);
      transition: all 0.2s;
      display: inline-block;
    }
    .hero-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

    /* Slider controls */
    .hero-dots {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 2;
    }
    .hero-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255,255,255,0.5);
      transition: all 0.3s;
    }
    .hero-dot.active { background: white; width: 28px; border-radius: 6px; }

    .hero-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(8px);
      color: white;
      font-size: 1.4rem;
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 2;
      transition: background 0.2s;
    }
    .hero-arrow:hover { background: rgba(255,255,255,0.35); }
    .hero-arrow.prev { left: 20px; }
    .hero-arrow.next { right: 20px; }

    /* ============ SECTION HEADERS ============ */
    .section { padding: 70px 0; }
    .section-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 32px;
      gap: 20px;
      flex-wrap: wrap;
    }
    .section-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: clamp(1.6rem, 3vw, 2.4rem);
      color: var(--color-primary-dark);
      line-height: 1.1;
    }
    .section-title small {
      display: block;
      font-family: var(--font-body);
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--color-primary);
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }
    .view-all {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.95rem;
      transition: color 0.2s;
    }
    .view-all:hover { color: var(--color-primary-dark); }

    /* ============ CATEGORIES ============ */
    .categories {
      background: var(--color-white);
    }
    .category-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
      gap: 16px;
    }
    .category-card {
      background: var(--color-cream);
      border: 1px solid var(--color-border);
      border-radius: var(--radius-md);
      padding: 24px 12px;
      text-align: center;
      transition: all 0.25s;
      cursor: pointer;
    }
    .category-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: var(--color-primary);
      background: var(--color-white);
    }
    .category-icon {
      font-size: 2.4rem;
      margin-bottom: 10px;
      display: block;
    }
    .category-name {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--color-text);
    }
    .category-count {
      font-size: 0.8rem;
      color: var(--color-muted);
      margin-top: 4px;
    }

    /* ============ PRODUCT SLIDERS ============ */
    .slider-wrapper {
      position: relative;
    }
    .product-slider {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding-bottom: 10px;
      /* hide scrollbar */
      scrollbar-width: none;
    }
    .product-slider::-webkit-scrollbar { display: none; }

    .product-card {
      flex: 0 0 240px;
      scroll-snap-align: start;
      background: white;
      border-radius: var(--radius-md);
      border: 1px solid var(--color-border);
      overflow: hidden;
      transition: all 0.25s;
      position: relative;
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--color-primary);
    }
    .product-image {
      aspect-ratio: 1 / 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4.5rem;
      position: relative;
    }
    /* Different gradient backgrounds for variety - feels handcrafted */
    .bg-1 { background: linear-gradient(135deg, #ffecb3 0%, #f9a825 100%); }
    .bg-2 { background: linear-gradient(135deg, #ffccbc 0%, #d84315 100%); }
    .bg-3 { background: linear-gradient(135deg, #d7ccc8 0%, #8d6e63 100%); }
    .bg-4 { background: linear-gradient(135deg, #fff3e0 0%, #ffb74d 100%); }
    .bg-5 { background: linear-gradient(135deg, #ffe0b2 0%, #e65100 100%); }
    .bg-6 { background: linear-gradient(135deg, #f8bbd0 0%, #ad1457 100%); }
    .bg-7 { background: linear-gradient(135deg, #c5e1a5 0%, #558b2f 100%); }
    .bg-8 { background: linear-gradient(135deg, #ffe082 0%, #ff8f00 100%); }

    .product-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--color-primary);
      color: white;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 50px;
      letter-spacing: 0.05em;
    }
    .product-badge.hot { background: #e53935; }
    .product-badge.new { background: var(--color-success); }

    .product-wishlist {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 34px;
      height: 34px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      transition: all 0.2s;
    }
    .product-wishlist:hover { background: white; transform: scale(1.1); }

    .product-body {
      padding: 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .product-cat {
      font-size: 0.75rem;
      color: var(--color-muted);
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .product-name {
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 8px;
      color: var(--color-text);
      /* limit to 2 lines */
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 2.6em;
    }
    .product-rating {
      font-size: 0.85rem;
      color: var(--color-muted);
      margin-bottom: 10px;
    }
    .product-rating .stars { color: var(--color-accent); margin-right: 4px; }

    .product-price-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: auto;
      gap: 8px;
    }
    .product-price {
      font-weight: 700;
      color: var(--color-primary-dark);
      font-size: 1.15rem;
    }
    .product-price del {
      color: var(--color-muted);
      font-weight: 400;
      font-size: 0.85rem;
      margin-right: 6px;
    }
    .add-cart {
      background: var(--color-primary);
      color: white;
      width: 38px;
      height: 38px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    .add-cart svg {
      width: 20px;
      height: 20px;
      stroke: white;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .add-cart:hover { background: var(--color-primary-dark); transform: scale(1.05); }

    /* Slider arrows */
    .slider-arrow {
      position: absolute;
      top: 40%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      background: white;
      box-shadow: var(--shadow-md);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--color-primary-dark);
      z-index: 5;
      transition: all 0.2s;
    }
    .slider-arrow:hover { background: var(--color-primary); color: white; }
    .slider-arrow.prev { left: -16px; }
    .slider-arrow.next { right: -16px; }

    /* Section background variants */
    .section-offers {
      background: linear-gradient(180deg, var(--color-cream) 0%, var(--color-cream-2) 100%);
    }
    .section-hot { background: var(--color-white); }
    .section-all { background: var(--color-cream); }

    /* ============ NEWSLETTER ============ */
    .newsletter {
      background: var(--color-primary-dark);
      color: white;
      padding: 60px 20px;
      text-align: center;
    }
    .newsletter h2 {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 3vw, 2.2rem);
      margin-bottom: 10px;
    }
    .newsletter p { opacity: 0.9; margin-bottom: 24px; }
    .newsletter-form {
      display: flex;
      max-width: 480px;
      margin: 0 auto;
      gap: 10px;
      flex-wrap: wrap;
    }
    .newsletter-form input {
      flex: 1;
      min-width: 200px;
      padding: 14px 18px;
      border: none;
      border-radius: var(--radius-sm);
      font-size: 1rem;
      font-family: inherit;
    }
    .newsletter-form button {
      background: var(--color-accent);
      color: var(--color-primary-dark);
      padding: 14px 28px;
      border-radius: var(--radius-sm);
      font-weight: 700;
      transition: all 0.2s;
    }
    .newsletter-form button:hover { background: white; }

    /* ============ FOOTER ============ */
    .footer {
      background: #1a0e08;
      color: #e6d5c4;
      padding: 60px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer h4 {
      font-family: var(--font-display);
      color: white;
      font-size: 1.1rem;
      margin-bottom: 18px;
      font-weight: 700;
    }
    .footer-about p {
      font-size: 0.95rem;
      line-height: 1.7;
      opacity: 0.8;
      margin-bottom: 16px;
    }
    .footer-logo {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: 1.6rem;
      color: var(--color-accent);
      margin-bottom: 12px;
    }
    .footer ul li {
      margin-bottom: 10px;
    }
    .footer ul li a {
      opacity: 0.8;
      transition: all 0.2s;
      font-size: 0.95rem;
    }
    .footer ul li a:hover { color: var(--color-accent); opacity: 1; padding-left: 4px; }

    .footer-contact p { font-size: 0.95rem; margin-bottom: 10px; opacity: 0.85; }
    .footer-contact strong { color: white; }

    .social {
      display: flex;
      gap: 10px;
      margin-top: 16px;
    }
    .social a {
      width: 38px;
      height: 38px;
      background: rgba(255,255,255,0.08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.05rem;
      transition: all 0.2s;
    }
    .social a:hover { background: var(--color-primary); color: white; transform: translateY(-2px); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 24px;
      text-align: center;
      font-size: 0.88rem;
      opacity: 0.7;
    }
    .footer-bottom a { color: var(--color-accent); }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 1100px) {
      .container { padding: 0 24px; }
      .header-inner { padding: 16px 24px; }
    }
    @media (max-width: 900px) {
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    }
    @media (max-width: 768px) {
      .nav, .auth-buttons { display: none; }
      .menu-toggle { display: block; }
      .header-inner { padding: 14px 16px; }
      .container { padding: 0 16px; }
      .section { padding: 50px 0; }
      .product-card { flex: 0 0 200px; }
      .product-image { font-size: 3.5rem; }
      .slider-arrow { display: none; }
      .hero-arrow { width: 38px; height: 38px; }
      .footer-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 480px) {
      .product-card { flex: 0 0 170px; }
      .category-grid { grid-template-columns: repeat(2, 1fr); }
    }
