*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --primary: #b76e79;
      --primary-light: #d4929b;
      --primary-dark: #9a5560;
      --bg: #faf8f7;
      --bg-alt: #f3eeec;
      --text: #1a1a1a;
      --text-mid: #4a4a4a;
      --text-light: #888;
      --border: #e8e0dd;
      --white: #ffffff;
      --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
      --shadow-md: 0 4px 16px rgba(0,0,0,0.09);
      --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
      --radius: 4px;
      --radius-lg: 8px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      font-size: 15px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4, h5 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      line-height: 1.25;
    }

    a { color: inherit; text-decoration: none; }
    img { display: block; max-width: 100%; }
    button { cursor: pointer; font-family: 'Inter', sans-serif; }

    /* ─── BACK LINK ─── */
    .back-bar {
      background: var(--text);
      color: var(--white);
      padding: 8px 24px;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .back-bar a {
      color: var(--primary-light);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: color 0.2s;
    }
    .back-bar a:hover { color: var(--white); }
    .back-bar svg { width: 14px; height: 14px; }

    /* ─── NAV ─── */
    nav {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 200;
    }
    .nav-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--text);
    }
    .nav-logo span { color: var(--primary); }
    .nav-links {
      display: flex;
      gap: 32px;
      list-style: none;
    }
    .nav-links a {
      font-size: 13px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-mid);
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--primary); }
    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .cart-btn {
      background: none;
      border: none;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-mid);
      padding: 8px 12px;
      border-radius: var(--radius);
      transition: background 0.2s, color 0.2s;
      position: relative;
    }
    .cart-btn:hover { background: var(--bg-alt); color: var(--primary); }
    .cart-btn svg { width: 20px; height: 20px; }
    .cart-count {
      background: var(--primary);
      color: white;
      font-size: 10px;
      font-weight: 600;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 4px;
      right: 2px;
    }
    .cart-count.hidden { display: none; }

    /* Hamburger */
    .hamburger {
      display: none;
      background: none;
      border: none;
      padding: 8px;
      flex-direction: column;
      gap: 5px;
    }
    .hamburger span {
      display: block;
      width: 22px;
      height: 1.5px;
      background: var(--text);
      transition: all 0.3s;
    }

    /* ─── HERO ─── */
    .hero {
      background: linear-gradient(135deg, #f9f0f2 0%, #faf8f7 40%, #f5ede8 100%);
      padding: 80px 24px 72px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(183,110,121,0.08) 0%, transparent 65%);
      pointer-events: none;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('https://images.unsplash.com/photo-1617038260897-41a1f14a8ca0?w=1400') center/cover no-repeat;
      opacity: 0.12;
      pointer-events: none;
    }
    .hero-eyebrow {
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 20px;
      font-weight: 500;
    }
    .hero h1 {
      font-size: clamp(36px, 5vw, 62px);
      font-weight: 300;
      color: var(--text);
      margin-bottom: 20px;
      max-width: 680px;
      margin-left: auto;
      margin-right: auto;
    }
    .hero h1 em { font-style: italic; color: var(--primary); }
    .hero p {
      font-size: 16px;
      color: var(--text-mid);
      max-width: 440px;
      margin: 0 auto 36px;
      font-weight: 300;
    }
    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--primary);
      color: white;
      padding: 14px 32px;
      border-radius: 2px;
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 500;
      transition: background 0.2s, transform 0.2s;
    }
    .hero-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }
    .hero-badges {
      display: flex;
      justify-content: center;
      gap: 32px;
      margin-top: 48px;
      flex-wrap: wrap;
    }
    .hero-badge {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
    }
    .hero-badge-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--white);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }
    .hero-badge-icon svg { width: 18px; height: 18px; }
    .hero-badge span {
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-light);
    }

    /* ─── SECTION WRAPPER ─── */
    .section {
      max-width: 1200px;
      margin: 0 auto;
      padding: 64px 24px;
    }
    .section-header {
      text-align: center;
      margin-bottom: 40px;
    }
    .section-label {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 10px;
    }
    .section-title {
      font-size: clamp(28px, 3vw, 40px);
      font-weight: 300;
      color: var(--text);
    }
    .section-subtitle {
      font-size: 14px;
      color: var(--text-light);
      margin-top: 8px;
      font-weight: 300;
    }
    .divider {
      width: 48px;
      height: 1px;
      background: var(--primary);
      margin: 16px auto 0;
      opacity: 0.5;
    }

    /* ─── CATEGORIES ─── */
    .category-tabs {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      justify-content: center;
      margin-bottom: 48px;
    }
    .cat-tab {
      background: none;
      border: 1px solid var(--border);
      color: var(--text-mid);
      padding: 8px 20px;
      border-radius: 100px;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: all 0.2s;
    }
    .cat-tab:hover { border-color: var(--primary); color: var(--primary); }
    .cat-tab.active {
      background: var(--primary);
      border-color: var(--primary);
      color: white;
    }

    .search-wrap {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 100px;
      padding: 8px 16px;
      max-width: 300px;
      margin: 0 auto 24px;
      transition: border-color 0.2s ease;
    }
    .search-wrap:focus-within { border-color: var(--primary); }
    .search-wrap svg { flex-shrink: 0; color: var(--text-light); }
    .search-input {
      border: none;
      outline: none;
      background: transparent;
      font-family: inherit;
      font-size: 14px;
      color: var(--text);
      width: 100%;
    }
    .search-input::placeholder { color: var(--text-light); }

    .promo-row {
      display: flex;
      gap: 8px;
      margin: 12px 0 16px;
      padding: 0 24px;
    }
    .promo-input {
      flex: 1;
      padding: 8px 12px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius, 4px);
      font-family: inherit;
      font-size: 13px;
      background: var(--bg);
    }
    .promo-input:focus { outline: none; border-color: var(--primary); }
    .promo-btn {
      padding: 8px 16px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: var(--radius, 4px);
      font-family: inherit;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
    }
    .promo-btn:hover { opacity: 0.9; }

    .fulfillment-toggle {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
    }
    .fulfill-btn {
      flex: 1;
      padding: 10px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius, 4px);
      background: var(--bg);
      font-family: inherit;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.2s;
    }
    .fulfill-btn.active {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }
    .pickup-info {
      background: var(--bg-alt);
      border-radius: var(--radius, 4px);
      padding: 12px 16px;
      margin-bottom: 16px;
      font-size: 13px;
      color: var(--text-light);
    }

    /* Checkout modal for jewelry */
    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26,26,26,.55);
      backdrop-filter: blur(3px);
      z-index: 300;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.2s ease;
    }
    .modal-overlay.open { opacity: 1; pointer-events: all; }
    .checkout-modal {
      background: var(--white);
      border-radius: var(--radius-lg);
      width: 100%;
      max-width: 480px;
      max-height: 90vh;
      overflow-y: auto;
      box-shadow: var(--shadow-lg);
      transform: translateY(20px);
      transition: transform 0.3s ease;
    }
    .modal-overlay.open .checkout-modal { transform: translateY(0); }
    .checkout-modal-header {
      padding: 24px 28px 18px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .checkout-modal-header h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
    }
    .checkout-modal-close {
      background: none;
      border: none;
      font-size: 20px;
      color: var(--text-light);
      cursor: pointer;
      padding: 2px;
    }
    .checkout-modal-body { padding: 24px 28px; }
    .checkout-order-summary {
      background: var(--bg-alt);
      border-radius: var(--radius);
      padding: 14px 16px;
      margin-bottom: 20px;
      font-size: 13px;
    }
    .checkout-order-summary h4 {
      font-family: 'Inter', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 10px;
    }
    .checkout-summary-line {
      display: flex;
      justify-content: space-between;
      color: var(--text-mid);
      padding: 3px 0;
    }
    .checkout-summary-line.total {
      border-top: 1px solid var(--border);
      margin-top: 8px;
      padding-top: 8px;
      font-weight: 600;
      color: var(--text);
      font-size: 14px;
    }
    .checkout-form-group { margin-bottom: 16px; }
    .checkout-form-group label {
      display: block;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-light);
      margin-bottom: 6px;
    }
    .checkout-form-group input {
      width: 100%;
      padding: 10px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      background: var(--bg);
      color: var(--text);
      outline: none;
      transition: border-color 0.2s;
    }
    .checkout-form-group input:focus { border-color: var(--primary); }
    .checkout-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .checkout-submit-btn {
      width: 100%;
      padding: 14px;
      background: var(--primary);
      color: var(--white);
      border: none;
      border-radius: var(--radius);
      font-family: 'Inter', sans-serif;
      font-size: 15px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 8px;
      transition: background 0.2s;
    }
    .checkout-submit-btn:hover { background: var(--primary-dark); }

    /* ─── PRODUCT GRID ─── */
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 28px;
    }
    .product-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      transition: box-shadow 0.25s, transform 0.25s;
    }
    .product-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-3px);
    }
    .product-card.hidden { display: none; }
    .product-img-wrap {
      position: relative;
      padding-top: 100%;
      background: var(--bg-alt);
      overflow: hidden;
    }
    .product-img-wrap img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .product-card:hover .product-img-wrap img { transform: scale(1.04); }
    .product-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      background: var(--primary);
      color: white;
      font-size: 9px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 8px;
      border-radius: 2px;
      font-weight: 500;
    }
    .product-quick-add {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: rgba(183, 110, 121, 0.92);
      color: white;
      border: none;
      padding: 12px;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      transform: translateY(100%);
      transition: transform 0.25s;
    }
    .product-card:hover .product-quick-add { transform: translateY(0); }
    .product-info {
      padding: 16px;
    }
    .product-category-tag {
      font-size: 10px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--primary);
      margin-bottom: 4px;
    }
    .product-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 18px;
      font-weight: 400;
      color: var(--text);
      margin-bottom: 8px;
      line-height: 1.3;
    }
    .product-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .product-price {
      font-size: 15px;
      font-weight: 500;
      color: var(--text);
    }
    .product-add-btn {
      background: none;
      border: 1px solid var(--border);
      color: var(--text-mid);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s;
    }
    .product-add-btn:hover {
      background: var(--primary);
      border-color: var(--primary);
      color: white;
    }
    .product-add-btn svg { width: 14px; height: 14px; }

    /* ─── CRAFT STORY ─── */
    .story-band {
      background: var(--text);
      color: var(--white);
      padding: 72px 24px;
    }
    .story-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
    }
    .story-text .label {
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--primary-light);
      margin-bottom: 16px;
    }
    .story-text h2 {
      font-size: clamp(30px, 3vw, 48px);
      font-weight: 300;
      margin-bottom: 20px;
      color: var(--white);
    }
    .story-text p {
      font-size: 14px;
      color: rgba(255,255,255,0.65);
      line-height: 1.8;
      margin-bottom: 12px;
      font-weight: 300;
    }
    .story-text .cta-ghost {
      display: inline-block;
      margin-top: 12px;
      border: 1px solid rgba(255,255,255,0.3);
      color: var(--white);
      padding: 12px 28px;
      font-size: 11px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      transition: all 0.2s;
      border-radius: 2px;
    }
    .story-text .cta-ghost:hover {
      background: rgba(255,255,255,0.1);
      border-color: var(--white);
    }
    .story-image {
      aspect-ratio: 4/5;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }
    .story-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: brightness(0.88) saturate(0.9);
    }

    /* ─── TESTIMONIALS ─── */
    .testimonials-bg { background: var(--bg-alt); }
    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
    }
    .testimonial-card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 28px;
    }
    .stars {
      display: flex;
      gap: 3px;
      margin-bottom: 14px;
      color: var(--primary);
      font-size: 14px;
    }
    .testimonial-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: 17px;
      font-style: italic;
      color: var(--text);
      line-height: 1.6;
      margin-bottom: 18px;
      font-weight: 300;
    }
    .testimonial-author {
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--text-light);
    }

    /* ─── INSTAGRAM STRIP ─── */
    .insta-strip {
      display: flex;
      overflow-x: auto;
      gap: 4px;
      scrollbar-width: none;
    }
    .insta-strip::-webkit-scrollbar { display: none; }
    .insta-tile {
      flex: 0 0 200px;
      aspect-ratio: 1;
      overflow: hidden;
      position: relative;
      cursor: pointer;
    }
    .insta-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s, filter 0.3s;
    }
    .insta-tile:hover img { transform: scale(1.06); filter: brightness(0.8); }
    .insta-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transition: opacity 0.3s;
      color: white;
      font-size: 13px;
      letter-spacing: 0.1em;
    }
    .insta-tile:hover .insta-overlay { opacity: 1; }

    /* ─── NEWSLETTER ─── */
    .newsletter {
      background: linear-gradient(135deg, #f9eeef 0%, var(--bg) 100%);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 64px 24px;
      text-align: center;
    }
    .newsletter h2 {
      font-size: clamp(26px, 3vw, 38px);
      font-weight: 300;
      margin-bottom: 10px;
    }
    .newsletter p {
      font-size: 14px;
      color: var(--text-light);
      margin-bottom: 28px;
    }
    .newsletter-form {
      display: flex;
      max-width: 420px;
      margin: 0 auto;
      gap: 0;
    }
    .newsletter-form input {
      flex: 1;
      padding: 13px 18px;
      border: 1px solid var(--border);
      border-right: none;
      border-radius: 2px 0 0 2px;
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      background: var(--white);
      color: var(--text);
      outline: none;
      transition: border-color 0.2s;
    }
    .newsletter-form input:focus { border-color: var(--primary); }
    .newsletter-form input::placeholder { color: var(--text-light); }
    .newsletter-form button {
      padding: 13px 24px;
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 0 2px 2px 0;
      font-size: 11px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      transition: background 0.2s;
    }
    .newsletter-form button:hover { background: var(--primary-dark); }

    /* ─── FOOTER ─── */
    footer {
      background: var(--text);
      color: rgba(255,255,255,0.7);
      padding: 56px 24px 32px;
    }
    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }
    .footer-brand h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 12px;
    }
    .footer-brand h3 span { color: var(--primary-light); }
    .footer-brand p {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 20px;
    }
    .footer-social {
      display: flex;
      gap: 12px;
    }
    .footer-social a {
      width: 34px;
      height: 34px;
      border: 1px solid rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,0.6);
      transition: all 0.2s;
    }
    .footer-social a:hover {
      border-color: var(--primary-light);
      color: var(--primary-light);
    }
    .footer-social svg { width: 14px; height: 14px; }
    .footer-col h4 {
      font-size: 11px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul a {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      transition: color 0.2s;
    }
    .footer-col ul a:hover { color: var(--primary-light); }
    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 12px; }
    .footer-demo-badge {
      background: var(--primary);
      color: white;
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 100px;
      font-weight: 500;
    }

    /* ─── CART DRAWER ─── */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.4);
      z-index: 400;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s;
    }
    .cart-overlay.open { opacity: 1; pointer-events: all; }
    .cart-drawer {
      position: fixed;
      right: 0;
      top: 0;
      bottom: 0;
      width: 380px;
      max-width: 100vw;
      background: var(--white);
      z-index: 500;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      box-shadow: var(--shadow-lg);
    }
    .cart-drawer.open { transform: translateX(0); }
    .cart-header {
      padding: 24px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .cart-header h3 {
      font-size: 22px;
      font-weight: 400;
    }
    .cart-close {
      background: none;
      border: none;
      padding: 8px;
      color: var(--text-mid);
      border-radius: var(--radius);
      transition: background 0.2s;
    }
    .cart-close:hover { background: var(--bg-alt); }
    .cart-close svg { width: 20px; height: 20px; }
    .cart-items {
      flex: 1;
      overflow-y: auto;
      padding: 16px;
    }
    .cart-empty {
      text-align: center;
      padding: 48px 16px;
    }
    .cart-empty svg { width: 48px; height: 48px; color: var(--border); margin: 0 auto 16px; }
    .cart-empty p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      color: var(--text-light);
    }
    .cart-empty small {
      font-size: 12px;
      color: var(--text-light);
    }
    .cart-item {
      display: flex;
      gap: 14px;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
    }
    .cart-item-img {
      width: 72px;
      height: 72px;
      border-radius: var(--radius);
      overflow: hidden;
      flex-shrink: 0;
      background: var(--bg-alt);
    }
    .cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
    .cart-item-info { flex: 1; }
    .cart-item-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 16px;
      margin-bottom: 4px;
    }
    .cart-item-price { font-size: 14px; color: var(--primary); font-weight: 500; }
    .cart-item-controls {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 8px;
    }
    .qty-btn {
      background: var(--bg-alt);
      border: none;
      width: 26px;
      height: 26px;
      border-radius: var(--radius);
      font-size: 16px;
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
    }
    .qty-btn:hover { background: var(--border); }
    .qty-num { font-size: 14px; font-weight: 500; min-width: 20px; text-align: center; }
    .remove-item {
      background: none;
      border: none;
      color: var(--text-light);
      font-size: 11px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      margin-left: auto;
      align-self: center;
      transition: color 0.2s;
    }
    .remove-item:hover { color: var(--primary); }
    .cart-footer {
      padding: 20px 24px;
      border-top: 1px solid var(--border);
    }
    .cart-subtotal {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 8px;
    }
    .cart-subtotal span { font-size: 13px; color: var(--text-light); }
    .cart-subtotal strong { font-size: 20px; font-family: 'Cormorant Garamond', serif; }
    .cart-note {
      font-size: 11px;
      color: var(--text-light);
      margin-bottom: 16px;
      text-align: center;
    }
    .checkout-btn {
      width: 100%;
      background: var(--primary);
      color: white;
      border: none;
      padding: 16px;
      font-size: 12px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      font-weight: 500;
      border-radius: var(--radius);
      transition: background 0.2s;
    }
    .checkout-btn:hover { background: var(--primary-dark); }
    .checkout-btn:disabled {
      background: var(--border);
      color: var(--text-light);
      cursor: not-allowed;
    }

    /* ─── TOAST ─── */
    .toast {
      position: fixed;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--text);
      color: white;
      padding: 12px 24px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      z-index: 600;
      opacity: 0;
      transition: opacity 0.3s, transform 0.3s;
      pointer-events: none;
      white-space: nowrap;
    }
    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    .toast .toast-dot {
      display: inline-block;
      width: 8px;
      height: 8px;
      background: #4ade80;
      border-radius: 50%;
      margin-right: 8px;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }
      .story-inner { grid-template-columns: 1fr; gap: 40px; }
      .story-image { order: -1; aspect-ratio: 16/9; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
    }
    @media (max-width: 600px) {
      .hero { padding: 56px 16px 48px; }
      .hero-badges { gap: 20px; }
      .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .footer-inner { grid-template-columns: 1fr; }
      .cart-drawer { width: 100vw; }
      .newsletter-form { flex-direction: column; }
      .newsletter-form input { border-right: 1px solid var(--border); border-radius: 2px; }
      .newsletter-form button { border-radius: 2px; }
      .footer-bottom { justify-content: center; text-align: center; }
    }

    /* Mobile nav */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      top: 64px;
      background: var(--white);
      z-index: 190;
      padding: 24px;
      flex-direction: column;
      gap: 8px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      font-size: 22px;
      font-family: 'Cormorant Garamond', serif;
      padding: 14px 0;
      border-bottom: 1px solid var(--border);
      color: var(--text);
    }
    .mobile-nav a:hover { color: var(--primary); }
