
    @import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;700;800;900&family=Playfair+Display:ital,wght@0,600;0,800;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

    :root {
      --burgundy-primary: #4A0E17;
      --burgundy-light: #6B1724;
      --burgundy-dark: #2D070D;
      --pearl-bg: #FAF7F2;
      --surface-white: #FFFFFF;
      --card-cream: #F5EEE6;
      --rose-gold: #C5856B;
      --champagne-gold: #D4AF37;
      --border-rose: rgba(74, 14, 23, 0.15);
      --text-dark: #2A080E;
      --text-muted: #6B5558;
      --font-serif: 'Playfair Display', Georgia, serif;
      --font-title: 'Cinzel', serif;
      --font-sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
    }

    * { margin:0; padding:0; box-sizing: border-box; }
    body {
      background-color: var(--pearl-bg);
      color: var(--text-dark);
      font-family: var(--font-sans);
      line-height: 1.65;
      overflow-x: hidden;
    }

    .elvon-container { max-width: 1360px; margin: 0 auto; padding: 0 1.5rem; }

    /* Buttons */
    .btn-burgundy {
      background: linear-gradient(135deg, #6B1724 0%, #4A0E17 100%);
      color: #FFF;
      font-weight: 800;
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.85rem 1.85rem;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.25s ease;
      box-shadow: 0 6px 18px rgba(74, 14, 23, 0.25);
    }
    .btn-burgundy:hover {
      background: #2D070D;
      transform: translateY(-2px);
      box-shadow: 0 10px 25px rgba(74, 14, 23, 0.35);
    }
    .btn-outline-burgundy {
      background: transparent;
      border: 1.5px solid var(--burgundy-primary);
      color: var(--burgundy-primary);
      font-weight: 700;
      font-size: 0.9rem;
      text-transform: uppercase;
      padding: 0.85rem 1.85rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.25s ease;
    }
    .btn-outline-burgundy:hover {
      background: var(--burgundy-primary);
      color: #FFF;
    }
    .btn-whatsapp {
      background: #25D366;
      color: #FFF;
      font-weight: 700;
      padding: 0.85rem 1.5rem;
      border-radius: 6px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      border: none;
      cursor: pointer;
    }

    /* Header */
    .header-main {
      background: rgba(255, 255, 255, 0.95);
      border-bottom: 1px solid var(--border-rose);
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
    }
    .navbar-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.1rem 0;
    }
    .brand-logo-wrap {
      display: flex;
      align-items: center;
      gap: 0.85rem;
      text-decoration: none;
    }
    .brand-logo-img { height: 48px; }
    .brand-name {
      font-family: var(--font-title);
      font-size: 1.65rem;
      font-weight: 900;
      letter-spacing: 3px;
      color: var(--burgundy-primary);
      display: block;
      line-height: 1;
    }
    .brand-tagline {
      font-size: 0.65rem;
      font-weight: 800;
      letter-spacing: 4px;
      color: var(--rose-gold);
      display: block;
      margin-top: 4px;
    }
    .nav-menu {
      display: flex;
      list-style: none;
      gap: 2rem;
      align-items: center;
    }
    .nav-link {
      color: var(--text-dark);
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      transition: color 0.2s ease;
    }
    .nav-link:hover, .nav-link.active {
      color: var(--burgundy-primary);
    }
    .header-actions {
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .action-btn {
      background: #FFF;
      border: 1px solid var(--border-rose);
      color: var(--burgundy-primary);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      text-decoration: none;
      position: relative;
    }

    /* Cards & Grids */
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    .product-card {
      background: #FFF;
      border: 1px solid var(--border-rose);
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      box-shadow: 0 4px 15px rgba(74, 14, 23, 0.04);
    }
    .product-card:hover {
      transform: translateY(-5px);
      border-color: var(--burgundy-primary);
      box-shadow: 0 15px 30px rgba(74, 14, 23, 0.12);
    }
    .product-thumb-wrap {
      background: #FDF9F5;
      padding: 2rem;
      height: 280px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      border-bottom: 1px solid var(--border-rose);
    }
    .product-thumb-wrap img { max-height: 90%; max-width: 90%; object-fit: contain; }
    .product-info-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
    .product-category-tag { font-size: 0.72rem; font-weight: 700; color: var(--rose-gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.35rem; }
    .product-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.75rem; line-height: 1.35; }
    .product-price-row { display: flex; align-items: baseline; gap: 0.75rem; margin-top: auto; }
    .price-current { font-size: 1.3rem; font-weight: 800; color: var(--burgundy-primary); }
    .price-old { font-size: 0.88rem; color: #999; text-decoration: line-through; }
    .action-btn-pill {
      background: var(--burgundy-primary);
      color: #FFF;
      font-size: 0.8rem;
      font-weight: 800;
      padding: 0.45rem 1rem;
      border-radius: 4px;
      border: none;
      cursor: pointer;
    }

    /* Cart Drawer */
    .cart-drawer-overlay {
      position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
      background: rgba(0,0,0,0.6); z-index: 1050; display: none;
    }
    .cart-drawer {
      position: fixed; top: 0; right: -420px; width: 400px; max-width: 90vw; height: 100vh;
      background: #FFF; border-left: 1px solid var(--border-rose);
      z-index: 1060; transition: right 0.35s ease; display: flex; flex-direction: column;
    }
    .cart-drawer.open { right: 0; }
    .cart-drawer-header { padding: 1.25rem; border-bottom: 1px solid var(--border-rose); display: flex; justify-content: space-between; align-items: center; background: var(--burgundy-primary); color: #FFF; }
    .cart-drawer-body { padding: 1.25rem; flex: 1; overflow-y: auto; }

    /* Footer */
    .footer-luxury {
      background: #2D070D;
      color: #ECC880;
      padding: 4rem 0 2rem 0;
    }
  