﻿/* ===== RESET ===== */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { font-family: 'DM Sans', sans-serif; background: #FDFBFF; color: #1A0A2E; overflow-x: hidden; }

  /* ===== COLOR THEME =====
     Women   â†’ Royal Purple  #5B21B6 / Violet  #7C3AED / Lavender #EDE9FE
     Kids    â†’ Coral Pink    #F43F5E / Sky Blue #0EA5E9 / Mint     #ECFDF5
     Men     â†’ Deep Navy     #1E1B4B / Slate    #334155 / Bold Red  #E11D48
     Neutral â†’ Warm White    #FDFBFF / Cream    #F5F3FF / Light     #F1F5F9
  ===== */
  :root {
    --purple:       #5B21B6;
    --purple-mid:   #7C3AED;
    --purple-light: #A78BFA;
    --purple-pale:  #EDE9FE;
    --purple-deep:  #2E1065;
    --coral:        #F43F5E;
    --coral-light:  #FDA4AF;
    --coral-pale:   #FFF1F2;
    --sky:          #0EA5E9;
    --sky-light:    #7DD3FC;
    --sky-pale:     #E0F2FE;
    --navy:         #1E1B4B;
    --navy-mid:     #312E81;
    --slate:        #334155;
    --cream:        #F5F3FF;
    --white:        #FDFBFF;
    --text:         #1A0A2E;
    --muted:        #64748B;
    --border:       #E2E8F0;
  }

  h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }

  /* ===== NAVBAR ===== */
  nav {
    background: var(--navy);
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--purple-mid);
  }
  .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-decoration: none;
  }
  .logo span { color: var(--coral); }
  .logo em { color: var(--purple-light); font-style: normal; }

  .nav-links {
    display: flex;
    gap: 2.25rem;
    list-style: none;
  }
  .nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 12.5px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.2s;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
  }
  .nav-links a:hover { color: var(--purple-light); border-bottom-color: var(--purple-light); }
  .nav-links a.sale { color: var(--coral-light); }
  .nav-links a.sale:hover { color: var(--coral); border-bottom-color: var(--coral); }

  .nav-right { display: flex; align-items: center; gap: 1.25rem; }
  .nav-right i {
    color: rgba(255,255,255,0.7);
    font-size: 22px;
    cursor: pointer;
    transition: color 0.2s;
  }
  .nav-right i:hover { color: var(--purple-light); }
  .cart-wrap { position: relative; cursor: pointer; }
  .cart-badge {
    position: absolute;
    top: -7px; right: -7px;
    background: var(--coral);
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    border-radius: 50%;
    width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
  }

  /* ===== TICKER ===== */
  .ticker {
    background: linear-gradient(90deg, var(--purple) 0%, var(--purple-mid) 50%, var(--coral) 100%);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
  }
  .ticker-inner {
    display: inline-flex;
    animation: ticker 24s linear infinite;
  }
  @keyframes ticker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }
  .ticker-item {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.95);
    font-weight: 500;
    padding: 0 2.5rem;
  }
  .ticker-dot { color: rgba(255,255,255,0.4); margin: 0 0.25rem; }

  /* ===== HERO ===== */
  .hero {
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 90vh;
    overflow: hidden;
  }
  .hero-left {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, var(--purple-deep) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    position: relative;
    overflow: hidden;
  }
  .hero-left::before {
    content: '';
    position: absolute;
    width: 500px; height: 500px;
    border: 1px solid rgba(124,58,237,0.2);
    border-radius: 50%;
    top: -120px; left: -120px;
  }
  .hero-left::after {
    content: '';
    position: absolute;
    width: 350px; height: 350px;
    border: 1px solid rgba(244,63,94,0.15);
    border-radius: 50%;
    bottom: -80px; right: -40px;
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
  }
  .hero-title {
    font-size: clamp(44px, 5.5vw, 76px);
    font-weight: 300;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 1.75rem;
    font-style: italic;
  }
  .hero-title strong {
    font-style: normal;
    font-weight: 600;
    display: block;
    background: linear-gradient(90deg, var(--purple-light), var(--coral-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .hero-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    max-width: 380px;
    margin-bottom: 2.75rem;
    font-weight: 300;
  }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--purple-mid), var(--coral));
    color: #fff;
    padding: 15px 34px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.2s;
    text-decoration: none;
    font-family: 'DM Sans', sans-serif;
    border-radius: 2px;
  }
  .btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
  .btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: rgba(255,255,255,0.75);
    padding: 15px 34px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 400;
    border: 1px solid rgba(167,139,250,0.4);
    cursor: pointer;
    transition: all 0.2s;
    font-family: 'DM Sans', sans-serif;
    border-radius: 2px;
  }
  .btn-ghost:hover { border-color: var(--purple-light); color: var(--purple-light); }

  .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
  }
  .hero-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 32px;
    font-weight: 400;
    color: var(--purple-light);
    line-height: 1;
    margin-bottom: 4px;
  }
  .hero-stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
  }

  .hero-right {
    display: grid;
    grid-template-rows: 1fr 1fr;
    background: var(--cream);
  }
  .hero-img-top {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #1E0A40 0%, #3B1478 50%, #1E0A40 100%);
  }
  .hero-img-bot { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-img-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 200px;
  }
  .hero-img-sub:first-child {
    background: linear-gradient(135deg, #4A0020 0%, #9F0737 50%, #4A0020 100%);
  }
  .hero-img-sub:last-child {
    background: linear-gradient(135deg, #003859 0%, #0369A1 50%, #003859 100%);
  }
  .img-icon-wrap {
    text-align: center;
    position: relative;
    z-index: 2;
  }
  .img-icon-wrap i { font-size: 80px; color: rgba(255,255,255,0.2); }
  .img-icon-wrap .ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
  }
  .img-label {
    position: absolute;
    bottom: 16px; left: 16px;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 10px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-left: 2px solid var(--purple-light);
  }
  .hero-img-sub:first-child .img-label { border-left-color: var(--coral-light); }
  .hero-img-sub:last-child .img-label { border-left-color: var(--sky-light); }

  /* ===== CATEGORIES ===== */
  .categories-section {
    padding: 5rem 4rem;
    background: var(--white);
  }
  .section-header { text-align: center; margin-bottom: 3.5rem; }
  .section-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--purple-mid);
    margin-bottom: 0.75rem;
  }
  .section-title {
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 300;
    font-style: italic;
    color: var(--text);
    line-height: 1.2;
  }
  .section-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--purple-mid), var(--coral));
    margin: 1rem auto 0;
    border-radius: 2px;
  }

  .cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .cat-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 3/4;
    display: flex;
    align-items: flex-end;
    border-radius: 8px;
  }
  .cat-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s ease;
    border-radius: 8px;
  }
  .cat-card:hover .cat-bg { transform: scale(1.07); }
  .cat-card:nth-child(1) .cat-bg {
    background: linear-gradient(160deg, #1E0A40 0%, #5B21B6 40%, #7C3AED 70%, #1E0A40 100%);
  }
  .cat-card:nth-child(2) .cat-bg {
    background: linear-gradient(160deg, #4A0020 0%, #BE185D 40%, #F43F5E 70%, #4A0020 100%);
  }
  .cat-card:nth-child(3) .cat-bg {
    background: linear-gradient(160deg, #003859 0%, #0284C7 40%, #0EA5E9 70%, #003859 100%);
  }
  .cat-card:nth-child(4) .cat-bg {
    background: linear-gradient(160deg, #1E1B4B 0%, #4338CA 40%, #6366F1 70%, #1E1B4B 100%);
  }
  .cat-icon-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -60%);
    text-align: center;
  }
  .cat-icon-center i { font-size: 60px; color: rgba(255,255,255,0.25); }
  .cat-deco-ring {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    width: 90px; height: 90px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
  }
  .cat-info {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  }
  .cat-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 21px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
  }
  .cat-count {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 2px;
    text-transform: uppercase;
  }
  .cat-arrow {
    position: absolute;
    bottom: 1.5rem; right: 1.5rem;
    width: 34px; height: 34px;
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
    background: transparent;
  }
  .cat-card:hover .cat-arrow {
    background: var(--purple-mid);
    border-color: var(--purple-mid);
  }
  .cat-arrow i { font-size: 16px; color: rgba(255,255,255,0.7); }

  /* ===== FEATURED PRODUCTS ===== */
  .featured-section {
    background: linear-gradient(180deg, var(--cream) 0%, var(--purple-pale) 100%);
    padding: 5rem 4rem;
  }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
  .product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: box-shadow 0.3s, transform 0.3s;
    position: relative;
  }
  .product-card:hover {
    box-shadow: 0 20px 40px rgba(91,33,182,0.12);
    transform: translateY(-4px);
  }
  .product-card:hover .product-actions { opacity: 1; transform: translateY(0); }
  .product-img {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .product-card:nth-child(1) .product-img { background: linear-gradient(135deg, var(--purple-pale), #D8B4FE); }
  .product-card:nth-child(2) .product-img { background: linear-gradient(135deg, var(--coral-pale), #FECDD3); }
  .product-card:nth-child(3) .product-img { background: linear-gradient(135deg, var(--sky-pale), #BAE6FD); }
  .product-card:nth-child(4) .product-img { background: linear-gradient(135deg, #E0E7FF, #C7D2FE); }
  .product-img i { font-size: 70px; color: rgba(91,33,182,0.25); transition: transform 0.4s; }
  .product-card:nth-child(2) .product-img i { color: rgba(244,63,94,0.25); }
  .product-card:nth-child(3) .product-img i { color: rgba(14,165,233,0.3); }
  .product-card:nth-child(4) .product-img i { color: rgba(67,56,202,0.25); }
  .product-card:hover .product-img i { transform: scale(1.1); }

  .product-badge {
    position: absolute;
    top: 12px; left: 12px;
    background: var(--coral);
    color: #fff;
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 4px 10px;
    font-weight: 600;
    border-radius: 4px;
  }
  .product-badge.new {
    background: var(--purple-mid);
  }
  .product-badge.hot {
    background: linear-gradient(90deg, var(--purple-mid), var(--coral));
  }

  .product-actions {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(30,27,75,0.92);
    padding: 0.85rem;
    display: flex;
    gap: 8px;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s;
  }
  .btn-add-cart {
    flex: 1;
    background: linear-gradient(90deg, var(--purple-mid), var(--coral));
    border: none;
    color: #fff;
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px;
    cursor: pointer;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    border-radius: 4px;
    transition: opacity 0.2s;
  }
  .btn-add-cart:hover { opacity: 0.9; }
  .btn-wish-small {
    width: 40px; height: 40px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.25);
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    flex-shrink: 0;
  }
  .btn-wish-small:hover { border-color: var(--coral-light); color: var(--coral-light); }
  .btn-wish-small i { font-size: 18px; }

  .product-info { padding: 1.25rem 1.25rem 1.25rem; }
  .product-tag {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--purple-mid);
    margin-bottom: 6px;
    font-weight: 500;
  }
  .product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
    line-height: 1.3;
  }
  .product-meta { display: flex; align-items: center; justify-content: space-between; }
  .product-price { font-size: 16px; font-weight: 600; color: var(--purple); }
  .product-old {
    font-size: 13px;
    color: var(--muted);
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
  }
  .product-stars { display: flex; gap: 2px; align-items: center; }
  .product-stars i { font-size: 13px; color: #F59E0B; }
  .product-stars span { font-size: 11px; color: var(--muted); margin-left: 4px; }

  /* ===== PROMO BANNER ===== */
  .promo-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
  }
  .promo-side {
    padding: 4.5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .promo-side:first-child {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #3730A3 100%);
    color: #fff;
  }
  .promo-side:last-child {
    background: linear-gradient(135deg, var(--coral) 0%, #F472B6 60%, #E879F9 100%);
    color: #fff;
  }
  .promo-eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
  }
  .promo-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #fff;
  }
  .promo-desc {
    font-size: 14px;
    line-height: 1.85;
    color: rgba(255,255,255,0.7);
    max-width: 340px;
    margin-bottom: 2rem;
  }
  .btn-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 13px 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid rgba(255,255,255,0.4);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    border-radius: 4px;
    transition: all 0.2s;
    text-decoration: none;
    width: fit-content;
  }
  .btn-white:hover { background: rgba(255,255,255,0.28); border-color: rgba(255,255,255,0.7); }
  .promo-deco {
    position: absolute;
    right: -50px; bottom: -50px;
    font-size: 220px;
    color: rgba(255,255,255,0.06);
  }

  /* ===== WATCH BANNER ===== */
  .watch-banner {
    background: linear-gradient(100deg, var(--navy-mid) 0%, var(--purple-deep) 40%, #0C0A1E 100%);
    padding: 5rem 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
  .watch-text .eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--sky-light);
    margin-bottom: 1rem;
  }
  .watch-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    font-style: italic;
  }
  .watch-text h2 span { color: var(--purple-light); }
  .watch-text p {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.85;
    max-width: 400px;
    margin-bottom: 2.5rem;
  }
  .watch-types {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .watch-type {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 1rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 8px;
  }
  .watch-type:hover { background: rgba(124,58,237,0.2); border-color: var(--purple-mid); }
  .watch-type i { font-size: 32px; color: var(--purple-light); margin-bottom: 10px; display: block; }
  .watch-type:nth-child(2) i { color: var(--coral-light); }
  .watch-type:nth-child(3) i { color: var(--sky-light); }
  .watch-type-name {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    letter-spacing: 1px;
    font-weight: 400;
  }
  .watch-type-count {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    margin-top: 4px;
    letter-spacing: 1px;
  }

  /* ===== PERKS ===== */
  .perks {
    background: #fff;
    padding: 3.5rem 4rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border-top: 3px solid;
    border-image: linear-gradient(90deg, var(--purple-mid), var(--coral), var(--sky)) 1;
  }
  .perk { display: flex; align-items: flex-start; gap: 1rem; }
  .perk-icon {
    width: 48px; height: 48px;
    background: var(--purple-pale);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s;
  }
  .perk:hover .perk-icon { background: var(--purple-mid); }
  .perk-icon i { font-size: 22px; color: var(--purple-mid); transition: color 0.3s; }
  .perk:hover .perk-icon i { color: #fff; }
  .perk:nth-child(2) .perk-icon { background: var(--coral-pale); }
  .perk:nth-child(2) .perk-icon i { color: var(--coral); }
  .perk:nth-child(2):hover .perk-icon { background: var(--coral); }
  .perk:nth-child(2):hover .perk-icon i { color: #fff; }
  .perk:nth-child(3) .perk-icon { background: var(--sky-pale); }
  .perk:nth-child(3) .perk-icon i { color: var(--sky); }
  .perk:nth-child(3):hover .perk-icon { background: var(--sky); }
  .perk:nth-child(3):hover .perk-icon i { color: #fff; }
  .perk:nth-child(4) .perk-icon { background: #E0E7FF; }
  .perk:nth-child(4) .perk-icon i { color: #4338CA; }
  .perk:nth-child(4):hover .perk-icon { background: #4338CA; }
  .perk:nth-child(4):hover .perk-icon i { color: #fff; }
  .perk-title { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 4px; }
  .perk-desc { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

  /* ===== TESTIMONIALS ===== */
  .testimonials {
    background: var(--cream);
    padding: 5rem 4rem;
  }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
  }
  .review-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
  }
  .review-quote {
    font-size: 48px;
    line-height: 1;
    color: var(--purple-pale);
    font-family: 'Cormorant Garamond', serif;
    margin-bottom: 0.75rem;
  }
  .review-text {
    font-size: 14px;
    color: var(--slate);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
  }
  .review-author { display: flex; align-items: center; gap: 12px; }
  .review-avatar {
    width: 42px; height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
    flex-shrink: 0;
  }
  .review-card:nth-child(1) .review-avatar { background: var(--purple-pale); color: var(--purple); }
  .review-card:nth-child(2) .review-avatar { background: var(--coral-pale); color: var(--coral); }
  .review-card:nth-child(3) .review-avatar { background: var(--sky-pale); color: var(--sky); }
  .review-name { font-size: 14px; font-weight: 600; color: var(--text); }
  .review-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
  .review-stars { display: flex; gap: 2px; margin-bottom: 0.75rem; }
  .review-stars i { font-size: 14px; color: #F59E0B; }

  /* ===== NEWSLETTER ===== */
  .newsletter {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 40%, var(--purple-deep) 100%);
    padding: 5.5rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .newsletter::before {
    content: '';
    position: absolute;
    width: 600px; height: 600px;
    border: 1px solid rgba(124,58,237,0.15);
    border-radius: 50%;
    top: -200px; left: -200px;
  }
  .newsletter::after {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    border: 1px solid rgba(244,63,94,0.1);
    border-radius: 50%;
    bottom: -150px; right: -100px;
  }
  .newsletter-eyebrow {
    font-size: 11px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--coral-light);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }
  .newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 3.5vw, 50px);
    font-weight: 300;
    font-style: italic;
    color: #fff;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
  }
  .newsletter-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    margin-bottom: 2.5rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    position: relative;
    z-index: 1;
  }
  .email-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(167,139,250,0.3);
  }
  .email-input {
    flex: 1;
    background: rgba(255,255,255,0.07);
    border: none;
    padding: 15px 22px;
    color: #fff;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    outline: none;
  }
  .email-input::placeholder { color: rgba(255,255,255,0.35); }
  .email-btn {
    background: linear-gradient(90deg, var(--purple-mid), var(--coral));
    border: none;
    color: #fff;
    padding: 15px 30px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    white-space: nowrap;
    transition: opacity 0.2s;
  }
  .email-btn:hover { opacity: 0.9; }
  .nl-perks {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.75rem;
    position: relative;
    z-index: 1;
  }
  .nl-perk {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.5px;
  }
  .nl-perk i { font-size: 15px; color: var(--purple-light); }

  /* ===== FOOTER ===== */
  footer {
    background: #0D0B1A;
    padding: 5rem 4rem 2.5rem;
    border-top: 1px solid rgba(124,58,237,0.2);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 3.5rem;
    margin-bottom: 3.5rem;
    padding-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .footer-brand .logo-footer {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: #fff;
    letter-spacing: 4px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1.25rem;
    text-decoration: none;
  }
  .footer-brand .logo-footer span { color: var(--coral); }
  .footer-brand .logo-footer em { color: var(--purple-light); font-style: normal; }
  .footer-tagline {
    font-size: 13.5px;
    color: rgba(255,255,255,0.4);
    line-height: 1.8;
    max-width: 250px;
    margin-bottom: 1.75rem;
  }
  .footer-socials { display: flex; gap: 10px; }
  .social-btn {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s;
    background: transparent;
  }
  .social-btn:hover {
    border-color: var(--purple-mid);
    background: rgba(124,58,237,0.15);
  }
  .social-btn i { font-size: 17px; color: rgba(255,255,255,0.45); }
  .social-btn:hover i { color: var(--purple-light); }

  .footer-col h4 {
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.5rem;
    font-weight: 500;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 11px; }
  .footer-col a {
    font-size: 13.5px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-col a:hover { color: var(--purple-light); }

  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }
  .footer-copy { font-size: 12.5px; color: rgba(255,255,255,0.25); }
  .payment-methods { display: flex; gap: 8px; align-items: center; }
  .pay-badge {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 12px;
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    border-radius: 6px;
    letter-spacing: 0.5px;
    font-weight: 500;
  }

  /* ===== HOVER EFFECTS ===== */
  .btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--purple-mid);
    padding: 14px 36px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border: 1.5px solid var(--purple-mid);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    border-radius: 4px;
    transition: all 0.2s;
  }
  .btn-view-all:hover {
    background: var(--purple-mid);
    color: #fff;
  }
/* Luxura utilities */
.screen-reader-text { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }
.luxura-container { max-width:1280px;margin:0 auto;padding:0 2rem; }
.luxura-page { padding:4rem 0; }
.featured-cta { text-align:center;margin-top:3rem; }
.product-card__link { text-decoration:none;color:inherit;display:block; }
.product-thumb, .hero-media { width:100%;height:100%;object-fit:cover; }
.hero-media { position:absolute;inset:0; }
.logo-main { color:#fff; }
.logo-accent { color:var(--coral); }
nav.luxura-nav nav, nav { }
nav.luxura-nav { background:var(--navy);padding:0 2.5rem;display:flex;align-items:center;justify-content:space-between;height:68px;position:sticky;top:0;z-index:1000;border-bottom:2px solid var(--purple-mid); }
.nav-toggle { display:none; }
.nav-links .sale, .nav-links a.sale { color:var(--coral-light); }
.nav-links .sale:hover { color:var(--coral); border-bottom-color:var(--coral); }
.newsletter-message { color:var(--coral-light);margin-top:1rem;font-size:14px;position:relative;z-index:1; }
.cat-card { text-decoration:none;color:inherit; }
.watch-text h2 span { color:var(--purple-light); }
.promo-side--kids { }
.hero-img-sub--watches { }
.luxura-content.entry-content { line-height: 1.85; color: var(--slate); font-size: 16px; }
.luxura-content.entry-content h2, .luxura-content.entry-content h3 { font-family: 'Cormorant Garamond', serif; color: var(--text); margin: 1.5rem 0 0.75rem; font-weight: 400; }
.luxura-content.entry-content p { margin-bottom: 1rem; }
.luxura-content.entry-content a { color: var(--purple-mid); }
.luxura-content.entry-content ul, .luxura-content.entry-content ol { margin: 0 0 1rem 1.25rem; }
.luxura-content.entry-content img { max-width: 100%; height: auto; border-radius: 8px; }
.luxura-page--content { background: var(--white); min-height: 50vh; }
@media (max-width:1100px){.hero{grid-template-columns:1fr;min-height:auto}.hero-left{padding:4rem 2rem}.cat-grid,.products-grid{grid-template-columns:repeat(2,1fr)}.watch-banner{grid-template-columns:1fr;padding:4rem 2rem}.promo-banner{grid-template-columns:1fr}.footer-top{grid-template-columns:1fr 1fr}.perks{grid-template-columns:repeat(2,1fr)}}
@media (max-width:768px){.luxura-nav{padding:0 1.25rem;height:60px}.nav-toggle{display:flex;background:none;border:none;color:#fff;font-size:24px;cursor:pointer;padding:0}.nav-links{display:none;position:absolute;top:60px;left:0;right:0;background:var(--navy);flex-direction:column;padding:1.5rem;gap:1rem}.nav-links.is-open{display:flex}.categories-section,.featured-section,.testimonials{padding:3.5rem 1.25rem}.perks{grid-template-columns:1fr;padding:2.5rem 1.25rem}.reviews-grid,.cat-grid,.products-grid{grid-template-columns:1fr}.email-form{flex-direction:column}.footer-top{grid-template-columns:1fr}footer{padding:3rem 1.25rem 2rem}}
