  :root {
    /* Ink & Gold palette */
    --ink: #0A0E14;
    --ink-deep: #050810;
    --charcoal: #1F2937;
    --charcoal-soft: #2D3748;
    --smoke: #4A5568;
    --gold: #D4A574;
    --gold-light: #E8C89A;
    --gold-rich: #C9935C;
    --gold-deep: #8B6332;
    --gold-shadow: #4A3318;
    --bone: #F5F1E8;
    --bone-soft: #FAF6ED;
    --cream: #EDE4D0;
    --line-subtle: rgba(212, 165, 116, 0.12);
    --line-warm: rgba(212, 165, 116, 0.2);
    --line-strong: rgba(212, 165, 116, 0.35);
    --shadow-deep: 0 20px 60px -20px rgba(0, 0, 0, 0.8);
    --shadow-gold: 0 15px 40px -10px rgba(212, 165, 116, 0.25);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--ink);
    color: var(--bone);
    overflow-x: hidden;
    font-weight: 300;
    line-height: 1.6;
  }

  .display { font-family: 'Italiana', serif; font-weight: 400; letter-spacing: 0.02em; }
  .serif { font-family: 'Cormorant Garamond', serif; }

  .overline {
    font-size: 11px;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--gold);
  }

  /* ========== ANNOUNCEMENT BAR ========== */
  .announcement {
    background: var(--ink-deep);
    color: var(--gold);
    text-align: center;
    padding: 11px 20px;
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    overflow: hidden;
    border-bottom: 1px solid var(--line-subtle);
  }

  .announcement-track {
    display: inline-flex;
    gap: 60px;
    animation: scroll 32s linear infinite;
    white-space: nowrap;
  }

  .announcement-track span::before {
    content: "◆";
    margin-right: 40px;
    color: var(--gold-rich);
    font-size: 8px;
  }

  @keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ========== NAVIGATION ========== */
  nav {
    position: sticky;
    top: 0;
    background: rgba(10, 14, 20, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--line-subtle);
    z-index: 100;
    padding: 20px 60px;
  }

  .nav-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
  }

  .nav-links {
    display: flex;
    gap: 44px;
    list-style: none;
  }

  .nav-links a {
    color: var(--bone);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
  }

  .nav-links a:hover { color: var(--gold); }
  .nav-links a:hover::after { width: 100%; }

  .logo {
    font-family: 'Italiana', serif;
    font-size: 32px;
    letter-spacing: 0.45em;
    color: var(--gold);
    text-align: center;
  }

  .logo-tagline {
    font-size: 9px;
    letter-spacing: 0.45em;
    color: var(--smoke);
    text-transform: uppercase;
    margin-top: 2px;
    font-weight: 300;
  }

  .nav-icons {
    display: flex;
    gap: 26px;
    justify-content: flex-end;
    align-items: center;
  }

  .nav-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    color: var(--bone);
    transition: color 0.3s;
    position: relative;
  }

  .nav-icon:hover { color: var(--gold); }

  .cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--gold);
    color: var(--ink);
    font-size: 9px;
    font-weight: 600;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
  }

  /* ========== HERO ========== */
  .hero {
    min-height: 92vh;
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 90px 60px 110px;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    background: 
      radial-gradient(ellipse at 75% 50%, var(--charcoal) 0%, var(--ink) 65%);
  }

  .hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: 
      radial-gradient(circle at 20% 20%, rgba(212, 165, 116, 0.05), transparent 35%),
      radial-gradient(circle at 80% 70%, rgba(212, 165, 116, 0.08), transparent 45%);
    pointer-events: none;
  }

  .hero-content {
    position: relative;
    z-index: 2;
  }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
    opacity: 0;
    animation: fadeUp 1s ease 0.2s forwards;
  }

  .hero-tag::before {
    content: '';
    width: 44px;
    height: 1px;
    background: var(--gold);
  }

  .hero-title {
    font-size: clamp(58px, 7.5vw, 118px);
    line-height: 0.92;
    margin-bottom: 36px;
    color: var(--bone);
    letter-spacing: -0.015em;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 1s ease 0.4s forwards;
  }

  .hero-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
  }

  .hero-subtitle {
    font-size: 17px;
    color: rgba(245, 241, 232, 0.65);
    max-width: 480px;
    margin-bottom: 48px;
    font-weight: 300;
    line-height: 1.75;
    opacity: 0;
    animation: fadeUp 1s ease 0.6s forwards;
  }

  .hero-cta {
    display: flex;
    gap: 28px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 1s ease 0.8s forwards;
  }

  .btn-primary {
    background: var(--gold);
    color: var(--ink);
    padding: 19px 42px;
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--gold);
  }

  .btn-primary:hover {
    background: var(--bone);
    border-color: var(--bone);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
  }

  .btn-primary svg { transition: transform 0.3s; }
  .btn-primary:hover svg { transform: translateX(4px); }

  .btn-ghost {
    color: var(--bone);
    text-decoration: none;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    transition: all 0.3s;
  }

  .btn-ghost:hover { color: var(--gold); }

  /* ========== HERO VISUAL ========== */
  .hero-visual {
    position: relative;
    height: 640px;
    opacity: 0;
    animation: fadeIn 1.4s ease 0.6s forwards;
  }

  .hero-frame {
    position: absolute;
    background: 
      radial-gradient(ellipse at 50% 30%, rgba(212, 165, 116, 0.18) 0%, transparent 55%),
      linear-gradient(160deg, var(--charcoal) 0%, var(--ink-deep) 100%);
    overflow: hidden;
    width: 400px;
    height: 540px;
    top: 40px;
    right: 60px;
    box-shadow: var(--shadow-deep), inset 0 1px 0 rgba(212, 165, 116, 0.12);
    border: 1px solid var(--line-strong);
  }

  .hero-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(circle at 50% 40%, rgba(212, 165, 116, 0.12), transparent 55%);
  }

  .hero-frame::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border: 1px solid var(--line-subtle);
    pointer-events: none;
  }

  .hero-decor {
    position: absolute;
    font-family: 'Italiana', serif;
    font-size: 160px;
    color: var(--gold);
    opacity: 0.06;
    line-height: 1;
    user-select: none;
  }

  .hero-decor-1 { top: 80px; left: -10px; transform: rotate(-8deg); }
  .hero-decor-2 { bottom: 60px; right: 10px; font-size: 110px; }

  .hero-price-tag {
    position: absolute;
    top: 80px;
    left: 0;
    background: var(--bone);
    padding: 18px 26px;
    box-shadow: var(--shadow-deep);
    z-index: 3;
    border-left: 2px solid var(--gold);
  }

  .hero-price-tag .overline { 
    display: block; 
    margin-bottom: 6px; 
    color: var(--gold-deep);
    font-size: 9px;
  }

  .hero-rating {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: var(--bone);
    padding: 18px 24px;
    box-shadow: var(--shadow-deep);
    display: flex;
    gap: 14px;
    align-items: center;
    border-left: 2px solid var(--gold);
    z-index: 3;
  }

  .rating-stars {
    color: var(--gold-deep);
    font-size: 13px;
    letter-spacing: 2px;
  }

  .rating-text { font-size: 11px; color: var(--charcoal); }
  .rating-text strong {
    font-weight: 600;
    color: var(--ink);
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
  }

  /* ========== HERO PROMO CARD (FlowNexa) ========== */
  .promo-frame {
    background: linear-gradient(160deg, #161c30 0%, #232a45 100%);
    border: 1px solid #d4af6a;
  }

  .promo-tag-top,
  .promo-tag-bottom {
    background: #f0ead9;
    border-left: 2px solid #d4af6a;
  }

  .promo-brand-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    color: var(--ink);
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .promo-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    text-align: center;
    z-index: 2;
  }

  .promo-icon {
    width: 84px;
    height: 84px;
    margin: 0 auto 26px;
    display: block;
  }

  .promo-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 25px;
    color: var(--bone);
    line-height: 1.35;
    margin-bottom: 10px;
  }

  .promo-subtext {
    font-size: 13px;
    color: #9AA3B5;
    letter-spacing: 0.02em;
  }

  .promo-cta-link {
    color: var(--ink);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    letter-spacing: 0.02em;
  }

  .promo-cta-link:hover { color: #8B6332; }

  /* ========== MARQUEE ========== */
  .marquee {
    background: var(--ink-deep);
    padding: 40px 0;
    overflow: hidden;
    border-top: 1px solid var(--line-subtle);
    border-bottom: 1px solid var(--line-subtle);
  }

  .marquee-track {
    display: flex;
    gap: 90px;
    animation: marqueeScroll 45s linear infinite;
    white-space: nowrap;
    font-family: 'Italiana', serif;
    font-size: 46px;
    color: var(--gold);
    letter-spacing: 0.12em;
  }

  .marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 90px;
  }

  .marquee-track span::after {
    content: '◆';
    font-size: 14px;
    color: var(--gold-rich);
    opacity: 0.6;
  }

  @keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ========== SECTIONS ========== */
  .section {
    padding: 130px 60px;
    max-width: 1600px;
    margin: 0 auto;
  }

  .section-header {
    text-align: center;
    margin-bottom: 90px;
  }

  .section-title {
    font-size: clamp(44px, 5.8vw, 84px);
    line-height: 1.02;
    margin: 22px 0;
    color: var(--bone);
    font-weight: 300;
  }

  .section-title em {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
  }

  .section-sub {
    max-width: 560px;
    margin: 0 auto;
    color: rgba(245, 241, 232, 0.6);
    font-size: 15px;
    font-weight: 300;
  }

  /* ========== CATEGORIES ========== */
  .categories {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
  }

  .category {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid var(--line-subtle);
  }

  .category:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
  }

  .cat-1, .cat-2, .cat-3, .cat-4 { 
    background: radial-gradient(ellipse at 50% 30%, var(--charcoal) 0%, var(--ink-deep) 100%); 
  }

  .category::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(5, 8, 16, 0.85) 100%);
    z-index: 1;
  }

  .category::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid var(--line-subtle);
    z-index: 1;
    pointer-events: none;
    transition: border-color 0.4s ease;
  }

  .category:hover::after {
    border-color: var(--gold);
  }

  .cat-icon {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
  }

  .category:hover .cat-icon {
    transform: translate(-50%, -60%);
  }

  .cat-info {
    position: absolute;
    bottom: 36px;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 2;
  }

  .cat-name {
    font-family: 'Italiana', serif;
    font-size: 28px;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 6px;
  }

  .cat-count {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.5);
  }

  /* ========== PRODUCTS ========== */
  .products-section {
    background: var(--ink-deep);
    padding: 130px 60px;
    border-top: 1px solid var(--line-subtle);
    border-bottom: 1px solid var(--line-subtle);
  }

  .products-inner {
    max-width: 1600px;
    margin: 0 auto;
  }

  .products-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 90px;
    gap: 40px;
  }

  .products-head .section-title { text-align: left; }

  .product-filters {
    display: flex;
    gap: 34px;
    align-items: center;
  }

  .filter {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    color: rgba(245, 241, 232, 0.4);
    transition: color 0.3s;
    padding-bottom: 6px;
    border-bottom: 1px solid transparent;
  }

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

  .filter:hover { color: var(--bone); }

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

  .product {
    background: var(--charcoal);
    position: relative;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    border: 1px solid var(--line-subtle);
  }

  .product:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-deep);
    border-color: var(--gold);
  }

  .product-image {
    aspect-ratio: 1;
    background: 
      radial-gradient(ellipse at 50% 40%, var(--charcoal-soft) 0%, var(--ink-deep) 100%);
    position: relative;
    overflow: hidden;
  }

  .product-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 40%, rgba(212, 165, 116, 0.15), transparent 55%);
  }

  .product-image svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62%;
    height: 62%;
    transition: transform 0.6s ease;
  }

  .product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
  }

  .product:hover .product-image img {
    transform: scale(1.05);
  }

  .product:hover .product-image svg {
    transform: translate(-50%, -50%) scale(1.1);
  }

  .badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--gold);
    color: var(--ink);
    padding: 6px 13px;
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 2;
  }

  .badge.new { background: var(--bone); color: var(--ink); }
  .badge.bestseller { background: var(--gold); color: var(--ink); }

  .wishlist {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(245, 241, 232, 0.08);
    backdrop-filter: blur(8px);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid var(--line-warm);
    transition: all 0.3s;
    z-index: 2;
  }

  .wishlist:hover {
    background: var(--gold);
    border-color: var(--gold);
  }

  .wishlist:hover svg { stroke: var(--ink); fill: var(--ink); }

  .wishlist svg {
    width: 14px;
    height: 14px;
    stroke: var(--bone);
    fill: transparent;
    stroke-width: 1.5;
    transition: all 0.3s;
  }

  .wishlist.active {
    background: var(--gold);
    border-color: var(--gold);
  }

  .wishlist.active svg {
    stroke: var(--ink);
    fill: var(--ink);
  }

  .quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gold);
    color: var(--ink);
    padding: 17px;
    text-align: center;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 600;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 2;
  }

  .product:hover .quick-add { transform: translateY(0); }

  .product-info { padding: 26px 22px; }

  .product-category {
    font-size: 9px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold-rich);
    margin-bottom: 10px;
  }

  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--bone);
    margin-bottom: 14px;
    font-weight: 500;
    line-height: 1.2;
  }

  .product-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    flex-wrap: wrap;
  }

  .price-current {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    color: var(--gold);
    font-weight: 500;
  }

  .price-old {
    font-size: 13px;
    color: rgba(245, 241, 232, 0.3);
    text-decoration: line-through;
    font-weight: 300;
  }

  .price-off {
    font-size: 11px;
    color: var(--gold-rich);
    letter-spacing: 0.1em;
    font-weight: 500;
  }

  /* ========== STORY ========== */
  .story {
    background: var(--ink-deep);
    color: var(--bone);
    padding: 150px 60px;
    position: relative;
    overflow: hidden;
  }

  .story::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, var(--charcoal) 0%, transparent 60%);
    opacity: 0.8;
    border-radius: 50%;
  }

  .story::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 165, 116, 0.15) 0%, transparent 60%);
    border-radius: 50%;
  }

  .story-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
  }

  .story-title {
    font-size: clamp(42px, 5.2vw, 76px);
    line-height: 1.05;
    margin: 26px 0 34px;
    font-weight: 300;
  }

  .story-text {
    color: rgba(245, 241, 232, 0.65);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 28px;
    font-weight: 300;
  }

  .story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 52px;
    padding-top: 42px;
    border-top: 1px solid var(--line-subtle);
  }

  .stat-num {
    font-family: 'Italiana', serif;
    font-size: 56px;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    font-weight: 400;
  }

  .stat-label {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(245, 241, 232, 0.45);
  }

  .story-visual {
    position: relative;
    height: 600px;
  }

  .story-card {
    position: absolute;
    background: 
      radial-gradient(ellipse at 50% 30%, var(--charcoal-soft) 0%, var(--ink-deep) 100%);
    overflow: hidden;
    border: 1px solid var(--line-warm);
  }

  .story-card-1 {
    width: 300px;
    height: 400px;
    top: 0;
    right: 60px;
  }

  .story-card-1::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid var(--line-subtle);
  }

  .story-card-2 {
    width: 260px;
    height: 320px;
    bottom: 40px;
    left: 20px;
  }

  .story-card-2::before {
    content: '';
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    bottom: 16px;
    border: 1px solid var(--line-subtle);
  }

  .story-card svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
  }

  /* ========== TESTIMONIALS ========== */
  .testimonials {
    padding: 130px 60px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--ink);
  }

  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 70px;
  }

  .testimonial {
    background: var(--charcoal);
    padding: 44px 38px;
    position: relative;
    transition: transform 0.4s ease;
    border: 1px solid var(--line-subtle);
  }

  .testimonial:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
  }

  .testimonial::before {
    content: '"';
    position: absolute;
    top: 24px;
    right: 32px;
    font-family: 'Italiana', serif;
    font-size: 90px;
    color: var(--gold);
    opacity: 0.25;
    line-height: 1;
  }

  .testimonial-stars {
    color: var(--gold);
    margin-bottom: 22px;
    letter-spacing: 3px;
    font-size: 14px;
  }

  .testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.65;
    color: var(--bone);
    margin-bottom: 30px;
  }

  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 22px;
    border-top: 1px solid var(--line-subtle);
  }

  .author-initial {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--ink);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 600;
  }

  .author-info { flex: 1; }

  .author-name {
    font-weight: 500;
    font-size: 14px;
    color: var(--bone);
  }

  .author-location {
    font-size: 11px;
    color: var(--gold-rich);
    margin-top: 2px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
  }

  /* ========== PROMISES ========== */
  .promises {
    background: var(--ink-deep);
    padding: 90px 60px;
    border-top: 1px solid var(--line-subtle);
    border-bottom: 1px solid var(--line-subtle);
  }

  .promises-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px;
  }

  .promise { 
    text-align: center; 
    padding: 0 16px;
    position: relative;
  }

  .promise:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -22px;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: var(--line-subtle);
  }

  .promise-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 22px;
    color: var(--gold);
  }

  .promise-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    color: var(--bone);
    margin-bottom: 8px;
    font-weight: 500;
  }

  .promise-text {
    font-size: 13px;
    color: rgba(245, 241, 232, 0.55);
    line-height: 1.6;
  }

  /* ========== NEWSLETTER ========== */
  .newsletter {
    padding: 150px 60px;
    text-align: center;
    background: var(--ink);
    position: relative;
    overflow: hidden;
  }

  .newsletter::before,
  .newsletter::after {
    content: '◆';
    position: absolute;
    font-family: 'Italiana', serif;
    font-size: 140px;
    color: var(--gold);
    opacity: 0.05;
  }

  .newsletter::before { top: 60px; left: 10%; }
  .newsletter::after { bottom: 60px; right: 10%; }

  .newsletter-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }

  .newsletter-title {
    font-size: clamp(42px, 5vw, 72px);
    line-height: 1.1;
    margin: 22px 0;
    color: var(--bone);
    font-weight: 300;
  }

  .newsletter-text {
    color: rgba(245, 241, 232, 0.65);
    margin-bottom: 44px;
    font-size: 16px;
  }

  .newsletter-form {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
  }

  .newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: var(--bone);
    outline: none;
  }

  .newsletter-form input::placeholder { color: rgba(245, 241, 232, 0.35); }

  .newsletter-form button {
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    cursor: pointer;
    padding: 14px 0 14px 20px;
    transition: color 0.3s;
    font-weight: 500;
  }

  .newsletter-form button:hover { color: var(--bone); }

  /* ========== FOOTER ========== */
  footer {
    background: var(--ink-deep);
    color: var(--bone);
    padding: 110px 60px 44px;
    border-top: 1px solid var(--line-subtle);
  }

  .footer-inner { max-width: 1600px; margin: 0 auto; }

  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 90px;
  }

  .footer-brand h3 {
    font-family: 'Italiana', serif;
    font-size: 38px;
    letter-spacing: 0.45em;
    margin-bottom: 18px;
    color: var(--gold);
    font-weight: 400;
  }

  .footer-brand p {
    color: rgba(245, 241, 232, 0.55);
    max-width: 300px;
    line-height: 1.75;
    font-size: 14px;
  }

  .footer-social {
    display: flex;
    gap: 14px;
    margin-top: 34px;
  }

  .footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line-warm);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bone);
    transition: all 0.3s;
  }

  .footer-social a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--ink);
  }

  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 26px;
    font-weight: 500;
  }

  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 13px; }

  .footer-col a {
    color: rgba(245, 241, 232, 0.55);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
  }

  .footer-col a:hover { color: var(--gold); }

  .footer-bottom {
    padding-top: 36px;
    border-top: 1px solid var(--line-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(245, 241, 232, 0.35);
  }

  .payment-methods {
    display: flex;
    gap: 10px;
    align-items: center;
  }

  .payment {
    padding: 5px 11px;
    border: 1px solid var(--line-warm);
    font-size: 10px;
    letter-spacing: 0.2em;
    color: var(--gold);
  }

  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ========== RESPONSIVE ========== */
  @media (max-width: 1024px) {
    nav { padding: 16px 30px; }
    .nav-links { gap: 24px; }
    .hero { grid-template-columns: 1fr; padding: 60px 30px; }
    .hero-visual { display: none; }
    .section, .newsletter, .story, .testimonials, .products-section, .promises { padding: 80px 30px; }
    .categories, .products { grid-template-columns: repeat(2, 1fr); }
    .products-head { flex-direction: column; align-items: flex-start; }
    .story-inner, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .story-visual { display: none; }
    .promises-grid { grid-template-columns: repeat(2, 1fr); }
    .promise:not(:last-child)::after { display: none; }
    .testimonial-grid { grid-template-columns: 1fr; }
    footer { padding: 60px 30px 30px; }
    .footer-bottom { flex-direction: column; gap: 20px; }
  }

  @media (max-width: 640px) {
    .nav-links { display: none; }
    .nav-inner { grid-template-columns: 1fr auto; }
    .logo { font-size: 26px; letter-spacing: 0.35em; }
    .categories, .products { grid-template-columns: 1fr; }
    .promises-grid { grid-template-columns: 1fr; }
    .marquee-track { font-size: 30px; gap: 40px; }
  }
/* ========== CART DRAWER ========== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  pointer-events: none;
}

.cart-drawer.open {
  pointer-events: auto;
}

.cart-drawer-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.cart-drawer.open .cart-drawer-overlay {
  opacity: 1;
}

.cart-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--bone-soft);
  box-shadow: var(--shadow-deep);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
}

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

.cart-drawer-header {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--ink-deep);
}

.cart-drawer-header h3 {
  font-family: 'Italiana', serif;
  font-size: 24px;
  letter-spacing: 0.3em;
  color: var(--gold);
  font-weight: 400;
}

.cart-close {
  background: transparent;
  border: none;
  color: var(--bone);
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s;
}

.cart-close:hover {
  color: var(--gold);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 28px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--smoke);
}

.cart-empty-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  opacity: 0.3;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-subtle);
}

.cart-item-image {
  width: 80px;
  height: 80px;
  background: var(--charcoal);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line-warm);
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-info h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--ink);
  margin-bottom: 6px;
  font-weight: 500;
}

.cart-item-variant {
  font-size: 12px;
  color: var(--smoke);
  margin-bottom: 8px;
}

.cart-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  color: var(--gold-deep);
  font-weight: 500;
}

.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
}

.cart-item-remove {
  background: transparent;
  border: none;
  color: var(--smoke);
  cursor: pointer;
  padding: 4px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.cart-item-remove:hover {
  color: var(--ink);
}

.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line-warm);
  border-radius: 4px;
  background: var(--ink-deep);
}

.cart-item-qty button {
  background: transparent;
  border: none;
  color: var(--bone);
  width: 28px;
  height: 28px;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.3s;
}

.cart-item-qty button:hover {
  color: var(--gold);
}

.cart-item-qty span {
  font-size: 13px;
  color: var(--bone);
  min-width: 20px;
  text-align: center;
}

.cart-drawer-footer {
  padding: 24px 28px;
  border-top: 1px solid var(--line-subtle);
  background: var(--ink-deep);
}

.cart-subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--bone);
}

.cart-subtotal span:last-child {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--gold);
  font-weight: 500;
}

.cart-shipping-note {
  font-size: 11px;
  color: var(--smoke);
  margin-bottom: 20px;
  text-align: center;
}

.cart-checkout-btn {
  width: 100%;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 16px;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 4px;
  text-decoration: none;
  display: block;
  text-align: center;
}

.cart-checkout-btn:hover {
  background: var(--bone);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ========== WHATSAPP FLOAT ========== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: all 0.3s ease;
  text-decoration: none;
  color: white;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 80px;
    right: 20px;
    width: 52px;
    height: 52px;
  }
  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
  .cart-drawer-panel {
    max-width: 100%;
  }
}

/* ========== MOBILE BOTTOM NAV ========== */
.mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--ink-deep);
  border-top: 1px solid var(--line-subtle);
  z-index: 100;
  padding: 12px 0;
}

.mobile-nav-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 100%;
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--smoke);
  transition: color 0.3s;
  position: relative;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
  color: var(--gold);
}

.mobile-nav-item svg {
  width: 22px;
  height: 22px;
}

.mobile-nav-item span {
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .mobile-nav {
    display: block;
  }
  body {
    padding-bottom: 60px;
  }
}

/* ========== AUTH PAGES (login, forgot/reset password) ========== */
.alert {
  padding: 14px 18px;
  border-radius: 6px;
  margin-bottom: 24px;
  font-size: 14px;
}

.alert-error {
  background: rgba(220, 38, 38, 0.1);
  border: 1px solid rgba(220, 38, 38, 0.3);
  color: #FCA5A5;
}

.alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #6EE7B7;
}

.auth-page {
  background: var(--ink);
  min-height: 100vh;
  padding: 80px 60px 120px;
}

.auth-container {
  max-width: 480px;
  margin: 0 auto;
}

.auth-title {
  font-family: 'Italiana', serif;
  font-size: 48px;
  color: var(--bone);
  margin-bottom: 32px;
  text-align: center;
}

.auth-subtitle {
  font-size: 14px;
  color: var(--smoke);
  text-align: center;
  margin-top: -20px;
  margin-bottom: 32px;
}

.auth-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  background: var(--charcoal);
  padding: 6px;
  border-radius: 8px;
}

.tab-btn {
  flex: 1;
  padding: 12px 16px;
  background: transparent;
  border: none;
  color: var(--smoke);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 6px;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
}

.tab-btn:hover {
  color: var(--bone);
}

.tab-btn.active {
  background: var(--gold);
  color: var(--ink);
}

.tab-content {
  display: none;
  background: var(--charcoal);
  padding: 40px 36px;
  border-radius: 8px;
  border: 1px solid var(--line-subtle);
}

.tab-content.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.auth-box {
  background: var(--charcoal);
  padding: 40px 36px;
  border-radius: 8px;
  border: 1px solid var(--line-subtle);
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.auth-form .form-group {
  display: flex;
  flex-direction: column;
}

.auth-form label {
  font-size: 13px;
  color: var(--bone);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.auth-form input {
  background: var(--ink);
  border: 1px solid var(--line-warm);
  color: var(--bone);
  padding: 14px 16px;
  font-size: 15px;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.3s;
}

.auth-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.auth-form input::placeholder {
  color: var(--smoke);
  opacity: 0.6;
}

.form-footer {
  text-align: center;
  font-size: 13px;
  color: var(--smoke);
  margin-top: 8px;
}

.form-footer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.form-footer a:hover {
  text-decoration: underline;
}

.dev-notice {
  background: rgba(212, 165, 116, 0.08);
  border: 1px dashed var(--line-strong);
  border-radius: 6px;
  padding: 16px 18px;
  margin-top: 24px;
  font-size: 13px;
  color: var(--smoke);
}

.dev-notice strong {
  display: block;
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.dev-notice a {
  color: var(--bone);
  word-break: break-all;
}

@media (max-width: 640px) {
  .auth-page { padding: 60px 30px 100px; }
  .tab-content, .auth-box { padding: 32px 24px; }
}
