  :root {
    --cream: #ffffff;
    --white: #ffffff;
    --navy: #0D2340;
    --teal: #E8231A;
    --teal-light: #4BB8E8;
    --gold: #E8231A;
    --gold-light: #4BB8E8;
    --soft-gray: #f5f6f8;
    --mid-gray: #8a8a8a;
    --text: #1a1a1a;
    --border: #e8e8e8;
    --red: #E8231A;
    --blue: #4BB8E8;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.6;
  }

  /* ── MODAL OVERLAY ── */
  .modal-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(13,35,64,0.55);
    backdrop-filter: blur(6px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  .modal-overlay.active { display: flex; }
  .modal-box {
    background: var(--white);
    border-radius: 20px;
    width: 100%;
    max-width: 440px;
    padding: 2.5rem;
    position: relative;
    animation: slideUp .3s ease;
  }
  @keyframes slideUp { from { transform: translateY(30px); opacity:0; } to { transform: translateY(0); opacity:1; } }
  .modal-close {
    position: absolute; top: 1rem; right: 1.2rem;
    background: none; border: none; font-size: 1.5rem; cursor: pointer; color: var(--mid-gray);
  }
  .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600;
    color: var(--navy); margin-bottom: 0.25rem;
  }
  .modal-sub { color: var(--mid-gray); font-size: 0.9rem; margin-bottom: 1.5rem; }
  .modal-form label { display: block; font-size: 0.82rem; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); margin-bottom: .3rem; margin-top: 1rem; }
  .modal-form input {
    width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--border);
    border-radius: 10px; font-family: 'DM Sans', sans-serif; font-size: .95rem;
    background: var(--cream); transition: border-color .2s;
  }
  .modal-form input:focus { outline: none; border-color: var(--teal-light); }
  .modal-btn {
    width: 100%; margin-top: 1.5rem; padding: .9rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white; border: none; border-radius: 10px; font-size: 1rem;
    font-weight: 600; cursor: pointer; transition: opacity .2s;
  }
  .modal-btn:hover { opacity: .88; }
  .modal-switch { text-align: center; margin-top: 1rem; font-size: .88rem; color: var(--mid-gray); }
  .modal-switch a { color: var(--teal); text-decoration: none; font-weight: 600; cursor: pointer; }

  /* ── TOP BAR ── */
  .topbar {
    background: var(--navy);
    color: rgba(255,255,255,.75);
    font-size: .78rem; letter-spacing: .08em; text-align: center;
    padding: .45rem 1rem;
  }
  .topbar span { color: var(--gold-light); font-weight: 600; }

  /* ── NAVBAR ── */
  nav {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-bottom: 3px solid var(--red);
    padding: 0 2rem;
    display: flex; align-items: center; gap: 1rem;
    height: 76px;
    overflow: visible;
  }
  .nav-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
  }
  .nav-links {
    display: flex; gap: .2rem; list-style: none;
    margin-left: 1.5rem; flex: 1; align-items: center;
  }
  .nav-links li { display: flex; align-items: center; }
  .nav-links a {
    text-decoration: none; color: var(--text);
    font-size: .85rem; font-weight: 500; padding: .4rem .7rem;
    border-radius: 6px; transition: all .2s; white-space: nowrap;
  }
  .nav-links a:hover { background: var(--soft-gray); color: var(--teal); }
  .nav-search {
    display: flex; align-items: center;
    background: var(--soft-gray); border: 1.5px solid var(--border);
    border-radius: 50px; padding: .4rem 1rem; gap: .5rem; flex: 0 1 260px;
  }
  .nav-search input {
    border: none; background: none; font-family: 'DM Sans', sans-serif;
    font-size: .88rem; width: 100%; outline: none; color: var(--text);
  }
  .nav-search svg { color: var(--mid-gray); flex-shrink: 0; }
  .nav-actions { display: flex; gap: .5rem; align-items: center; margin-left: auto; }
  .btn-outline {
    border: 1.5px solid var(--navy); color: var(--navy);
    background: none; padding: .4rem 1rem; border-radius: 50px;
    font-size: .82rem; font-weight: 600; cursor: pointer;
    transition: all .2s; white-space: nowrap;
  }
  .btn-outline:hover { background: var(--navy); color: white; }
  .btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white; border: none; padding: .45rem 1.1rem;
    border-radius: 50px; font-size: .82rem; font-weight: 600;
    cursor: pointer; transition: opacity .2s; white-space: nowrap;
  }
  .btn-primary:hover { opacity: .85; }
  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: .4rem; }

  /* ── SEARCH DROPDOWN ── */
  .search-wrap { position: relative; flex: 0 1 260px; }
  .search-dropdown {
    display: none; position: absolute; top: calc(100% + 8px); left: 0; right: 0;
    background: var(--white); border: 1px solid var(--border); border-radius: 14px;
    box-shadow: 0 12px 40px rgba(0,0,0,.12); padding: .75rem; z-index: 500;
  }
  .search-dropdown.active { display: block; }
  .search-tag {
    display: inline-block; padding: .25rem .7rem; background: var(--soft-gray);
    border-radius: 50px; font-size: .78rem; color: var(--navy);
    margin: .2rem; cursor: pointer; transition: all .2s;
  }
  .search-tag:hover { background: var(--teal-light); color: white; }

  /* ── HERO ── */
  .hero {
    min-height: 88vh; display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center; gap: 4rem;
    padding: 5rem 5vw 4rem;
    background: linear-gradient(160deg, var(--cream) 60%, #e8f5f3 100%);
    position: relative; overflow: hidden;
  }
  .hero::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at 80% 50%, rgba(26,122,110,.07) 0%, transparent 60%);
    pointer-events: none;
  }
  .hero-eyebrow {
    font-size: .78rem; letter-spacing: .18em; text-transform: uppercase;
    color: var(--teal); font-weight: 600; margin-bottom: 1rem;
  }
  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    font-weight: 700; line-height: 1.08;
    color: var(--navy); margin-bottom: 1.5rem;
  }
  .hero-title em { font-style: italic; color: var(--teal); }
  .hero-desc { font-size: 1.05rem; color: #444; max-width: 480px; margin-bottom: 2.5rem; }
  .hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
  .btn-lg {
    padding: .9rem 2.2rem; border-radius: 50px;
    font-size: 1rem; font-weight: 600; cursor: pointer; transition: all .25s;
    border: none; text-decoration: none; display: inline-block;
  }
  .btn-lg-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white;
  }
  .btn-lg-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(26,122,110,.3); }
  .btn-lg-ghost {
    border: 2px solid var(--navy); color: var(--navy); background: transparent;
  }
  .btn-lg-ghost:hover { background: var(--navy); color: white; }
  .hero-badges { display: flex; gap: 2rem; margin-top: 2.5rem; flex-wrap: wrap; }
  .badge { text-align: center; }
  .badge-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
  .badge-lbl { font-size: .75rem; color: var(--mid-gray); text-transform: uppercase; letter-spacing: .1em; }
  .hero-image-col { position: relative; display: flex; justify-content: center; }
  .hero-img-card {
    width: 100%; max-width: 480px; aspect-ratio: 3/4;
    border-radius: 28px; overflow: hidden; position: relative;
    box-shadow: 0 32px 80px rgba(13,35,64,.18);
  }
  .hero-img-card img { width: 100%; height: 100%; object-fit: cover; }
  .hero-float-card {
    position: absolute; bottom: 2rem; left: -2rem;
    background: white; border-radius: 16px; padding: 1rem 1.4rem;
    box-shadow: 0 8px 30px rgba(0,0,0,.12);
    display: flex; align-items: center; gap: .8rem;
  }
  .float-icon { width: 40px; height: 40px; background: linear-gradient(135deg, var(--teal), var(--teal-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem; }
  .float-text .t1 { font-weight: 700; font-size: .9rem; color: var(--navy); }
  .float-text .t2 { font-size: .75rem; color: var(--mid-gray); }

  /* ── SECTION COMMON ── */
  section { padding: 5rem 5vw; }
  .section-label {
    font-size: .75rem; letter-spacing: .2em; text-transform: uppercase;
    color: var(--teal); font-weight: 700; margin-bottom: .6rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 700; color: var(--navy);
    line-height: 1.15; margin-bottom: 1rem;
  }
  .section-sub { color: var(--mid-gray); max-width: 540px; margin-bottom: 3rem; }

  /* ── PRODUCTS GRID ── */
  #products { background: var(--white); }
  .products-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
  .filter-tabs { display: flex; gap: .4rem; flex-wrap: wrap; }
  .filter-tab {
    padding: .35rem .9rem; border-radius: 50px;
    border: 1.5px solid var(--border); background: none;
    font-size: .82rem; font-weight: 500; cursor: pointer; transition: all .2s;
    color: var(--text);
  }
  .filter-tab.active, .filter-tab:hover { background: var(--navy); color: white; border-color: var(--navy); }
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
  }
  .product-card {
    background: var(--cream); border-radius: 20px; overflow: hidden;
    transition: transform .25s, box-shadow .25s; cursor: pointer;
    border: 1px solid var(--border);
    display: flex; flex-direction: column;
  }
  .product-info {
    padding: 1.2rem; display: flex; flex-direction: column; flex: 1;
  }
  .product-add {
    width: 100%; margin-top: auto; padding: .6rem;
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    color: white; border: none; border-radius: 10px; font-weight: 600;
    cursor: pointer; transition: opacity .2s; font-family: 'DM Sans', sans-serif;
  }
  .product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(13,35,64,.12); }
  .product-img-wrap {
    aspect-ratio: 1; overflow: hidden; position: relative;
    cursor: zoom-in;
  }
  .product-img-wrap img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .5s ease;
  }
  .product-card:hover .product-img-wrap img { transform: scale(1.08); }
  .zoom-overlay {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
    background: rgba(13,35,64,.35); opacity: 0; transition: opacity .25s; color: white; font-size: .85rem; font-weight: 600;
  }
  .product-card:hover .zoom-overlay { opacity: 1; }
  .product-info { padding: 1.2rem; }
  .product-category { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--teal); font-weight: 700; }
  .product-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--navy); margin: .2rem 0; }
  .product-price { font-weight: 700; color: var(--navy); font-size: 1.05rem; }
  .product-price del { font-weight: 400; color: var(--mid-gray); font-size: .85rem; margin-right: .4rem; }
  .product-add:hover { opacity: .85; }

  /* ── LIGHTBOX / 3D ZOOM ── */
  .lightbox {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,.92); z-index: 3000;
    align-items: center; justify-content: center; flex-direction: column;
    cursor: zoom-out;
  }
  .lightbox.active { display: flex; }
  .lightbox img {
    max-width: 90vw; max-height: 80vh; border-radius: 12px;
    box-shadow: 0 0 80px rgba(26,184,159,.25);
    transform: scale(1); transition: transform .1s linear;
    transform-style: preserve-3d;
    cursor: grab;
  }
  .lightbox img:active { cursor: grabbing; }
  .lb-hint { color: rgba(255,255,255,.55); font-size: .8rem; margin-top: 1rem; }
  .lb-close {
    position: absolute; top: 1.5rem; right: 2rem;
    background: none; border: none; color: white; font-size: 2rem; cursor: pointer;
  }

  /* ── ABOUT ── */
  #about { background: var(--navy); color: white; }
  #about .section-title { color: white; }
  #about .section-label { color: var(--gold-light); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
  .about-text p { color: rgba(255,255,255,.75); margin-bottom: 1rem; }
  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
  .about-feat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 1.2rem; }
  .about-feat-icon { font-size: 1.5rem; margin-bottom: .5rem; }
  .about-feat h4 { color: white; font-size: .95rem; font-weight: 600; margin-bottom: .3rem; }
  .about-feat p { font-size: .82rem; color: rgba(255,255,255,.6); margin: 0; }
  .about-img { border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; }
  .about-img img { width: 100%; height: 100%; object-fit: cover; }

  /* ── SERVICES ── */
  #services { background: var(--soft-gray); }
  .services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .service-card {
    background: var(--white); border-radius: 20px; padding: 2rem;
    border: 1px solid var(--border); transition: transform .25s, box-shadow .25s;
  }
  .service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,35,64,.1); }
  .service-icon { width: 52px; height: 52px; background: linear-gradient(135deg, var(--teal), var(--teal-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.4rem; margin-bottom: 1.2rem; }
  .service-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--navy); margin-bottom: .5rem; }
  .service-card p { font-size: .88rem; color: var(--mid-gray); }

  /* ── SHIPPING & RETURNS ── */
  #shipping { background: var(--cream); }
  .shipping-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; }
  .ship-card { background: var(--white); border-radius: 18px; padding: 1.8rem; border: 1px solid var(--border); display: flex; gap: 1rem; align-items: flex-start; }
  .ship-icon { font-size: 2rem; flex-shrink: 0; }
  .ship-card h4 { font-weight: 700; color: var(--navy); margin-bottom: .3rem; }
  .ship-card p { font-size: .85rem; color: var(--mid-gray); }

  /* ── CONTACT ── */
  #contact { background: var(--white); }
  .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start; }
  .contact-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 1rem; }
  .contact-info p { color: var(--mid-gray); margin-bottom: 2rem; }
  .contact-item { display: flex; gap: .8rem; align-items: center; margin-bottom: 1rem; }
  .contact-dot { width: 36px; height: 36px; background: var(--soft-gray); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
  .contact-item p { margin: 0; font-size: .9rem; color: var(--text); }
  .contact-form { background: var(--cream); border-radius: 24px; padding: 2.5rem; border: 1px solid var(--border); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
  .form-group { margin-bottom: 1rem; }
  .form-group label { display: block; font-size: .78rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--navy); margin-bottom: .35rem; }
  .form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: .7rem 1rem; border: 1.5px solid var(--border);
    border-radius: 10px; background: white; font-family: 'DM Sans', sans-serif;
    font-size: .93rem; outline: none; transition: border-color .2s;
  }
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--teal-light); }
  .form-group textarea { resize: vertical; min-height: 100px; }

  /* ── CART SIDEBAR ── */
  .cart-sidebar {
    position: fixed; top: 0; right: -380px; width: 380px; height: 100%;
    background: white; box-shadow: -8px 0 40px rgba(0,0,0,.15);
    z-index: 2500; transition: right .3s ease; display: flex; flex-direction: column;
  }
  .cart-sidebar.open { right: 0; }
  .cart-header { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
  .cart-header h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--navy); }
  .cart-close { background: none; border: none; font-size: 1.4rem; cursor: pointer; color: var(--mid-gray); }
  .cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
  .cart-item { display: flex; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--border); align-items: center; }
  .cart-item img { width: 60px; height: 60px; object-fit: cover; border-radius: 10px; }
  .cart-item-info { flex: 1; }
  .cart-item-name { font-weight: 600; font-size: .9rem; color: var(--navy); }
  .cart-item-price { font-size: .85rem; color: var(--mid-gray); }
  .cart-qty { display: flex; gap: .4rem; align-items: center; margin-top: .4rem; }
  .cart-qty button { width: 24px; height: 24px; border-radius: 50%; border: 1px solid var(--border); background: none; cursor: pointer; font-size: .9rem; display: flex; align-items: center; justify-content: center; }
  .cart-qty span { font-size: .9rem; font-weight: 600; min-width: 20px; text-align: center; }
  .cart-footer { padding: 1.5rem; border-top: 1px solid var(--border); }
  .cart-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.1rem; color: var(--navy); margin-bottom: 1rem; }
  .cart-checkout { width: 100%; padding: .9rem; background: linear-gradient(135deg, var(--teal), var(--teal-light)); color: white; border: none; border-radius: 12px; font-size: 1rem; font-weight: 700; cursor: pointer; }
  .cart-empty { text-align: center; color: var(--mid-gray); padding: 3rem 1rem; font-size: .9rem; }

  /* ── CART ICON ── */
  .cart-btn { position: relative; background: none; border: none; cursor: pointer; font-size: 1.3rem; padding: .4rem; color: var(--navy); }
  .cart-count {
    position: absolute; top: 0; right: 0;
    background: var(--teal); color: white;
    font-size: .62rem; font-weight: 700; width: 17px; height: 17px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
  }

  /* ── FOOTER ── */
  footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 4rem 5vw 2rem; border-top: 4px solid var(--red); }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
  .footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 700; color: white; margin-bottom: 1rem; }
  .footer-logo span { color: var(--teal-light); }
  .footer-desc { font-size: .85rem; max-width: 260px; }
  .footer-col h4 { color: white; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700; margin-bottom: 1rem; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: .5rem; }
  .footer-col ul li a { color: rgba(255,255,255,.65); text-decoration: none; font-size: .85rem; transition: color .2s; }
  .footer-col ul li a:hover { color: var(--teal-light); }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; font-size: .78rem; }
  .trust-badges { display: flex; gap: .6rem; flex-wrap: wrap; }
  .trust-badge { padding: .25rem .7rem; border: 1px solid rgba(255,255,255,.2); border-radius: 6px; font-size: .72rem; }

  /* ── TOAST ── */
  .toast {
    position: fixed; bottom: 2rem; right: 2rem; z-index: 9999;
    background: var(--navy); color: white; padding: .8rem 1.5rem;
    border-radius: 12px; font-size: .88rem; font-weight: 600;
    transform: translateY(80px); opacity: 0; transition: all .3s;
    box-shadow: 0 8px 30px rgba(0,0,0,.2); max-width: 300px;
  }
  .toast.show { transform: translateY(0); opacity: 1; }

  /* ── MOBILE ── */
  .mob-menu {
    display: none; position: fixed; inset: 0; background: var(--navy);
    z-index: 1500; flex-direction: column; padding: 2rem 1.5rem;
    align-items: flex-start; gap: .5rem;
  }
  .mob-menu.open { display: flex; }
  .mob-menu a { color: white; text-decoration: none; font-size: 1.3rem; font-weight: 600; padding: .7rem 0; border-bottom: 1px solid rgba(255,255,255,.08); width: 100%; }
  .mob-menu-close { margin-left: auto; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; margin-bottom: 1rem; }
  .mob-search { width: 100%; padding: .7rem 1rem; border-radius: 50px; border: none; background: rgba(255,255,255,.1); color: white; font-size: .95rem; margin-bottom: 1rem; outline: none; }
  .mob-search::placeholder { color: rgba(255,255,255,.5); }

  @media (max-width: 1024px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nav-links { display: none; }
    .nav-search { flex: 0 1 200px; }
  }
  @media (max-width: 768px) {
    .hero { grid-template-columns: 1fr; padding: 3rem 1.2rem; gap: 2.5rem; min-height: auto; }
    .hero-image-col { order: -1; }
    .hero-float-card { left: .5rem; }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-img { order: -1; aspect-ratio: 16/9; }
    .contact-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .nav-search { display: none; }
    .hamburger { display: block; }
    nav { padding: 0 1rem; }
    .about-features { grid-template-columns: 1fr; }
    section { padding: 3.5rem 1.2rem; }
    .cart-sidebar { width: 100%; right: -100%; }
  }
  @media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; }
    .hero-badges { gap: 1.2rem; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  }
  .step-dot {
    width:32px;height:32px;border-radius:50%;border:2px solid var(--border);
    display:flex;align-items:center;justify-content:center;font-weight:700;font-size:.85rem;
    color:var(--mid-gray);flex-shrink:0;transition:all .3s;
  }
  .step-dot.active { background:var(--teal);border-color:var(--teal);color:white; }
  .step-dot.done { background:var(--navy);border-color:var(--navy);color:white; }

/* ── DROPDOWN NAV ── */
.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; line-height: 1; }
.nav-dropdown > a svg { display: block; flex-shrink: 0; }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0;
  padding-top: 10px; /* invisible bridge so mouse can travel down without losing hover */
  min-width: 200px; z-index: 500;
}
.nav-dropdown-menu-inner {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12); padding: .5rem;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover { display: block; }
.nav-dropdown-menu a {
  display: block; padding: .6rem .8rem; border-radius: 8px;
  color: var(--text); text-decoration: none; font-size: .88rem; font-weight: 500;
}
.nav-dropdown-menu a:hover { background: var(--soft-gray); color: var(--teal); }

/* ── NEW HERO (watermark + colour strip) ── */
.hero-v2 {
  position: relative; overflow: hidden;
  padding: 4rem 5vw 0; background: var(--white);
}
.hero-wm1 { position: absolute; right: -60px; top: -60px; width: 320px; height: 320px; border-radius: 50%; background: rgba(232,35,26,0.06); pointer-events: none; }
.hero-wm2 { position: absolute; right: 50px; top: 50px; width: 200px; height: 200px; border-radius: 50%; background: rgba(75,184,232,0.08); pointer-events: none; }
.hero-wm3 { position: absolute; right: 100px; top: 100px; width: 110px; height: 110px; border-radius: 50%; background: rgba(232,35,26,0.05); pointer-events: none; }
.hero-wm4 { position: absolute; left: -60px; bottom: -60px; width: 240px; height: 240px; border-radius: 50%; background: rgba(75,184,232,0.05); pointer-events: none; }
.hero-v2-content { position: relative; z-index: 2; max-width: 58%; margin-bottom: 3rem; }
.hero-badge {
  display: inline-block; background: var(--red); color: white;
  font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: .3rem .9rem; border-radius: 50px; margin-bottom: 1.2rem;
}
.hero-v2-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 4.5vw, 4rem);
  font-weight: 700; line-height: 1.08; color: var(--navy); margin-bottom: .8rem;
}
.hero-v2-title em { font-style: normal; color: var(--red); }
.hero-v2-desc { font-size: 1rem; color: #666; max-width: 480px; margin-bottom: 1.8rem; line-height: 1.7; }
.hero-btns { display: flex; gap: .8rem; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--navy); color: white; border: none;
  padding: .75rem 1.8rem; border-radius: 50px; font-size: .92rem; font-weight: 600;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all .2s;
}
.btn-hero-primary:hover { background: #1a3a5c; transform: translateY(-2px); }
.btn-hero-secondary {
  background: transparent; color: var(--blue); border: 1.5px solid var(--blue);
  padding: .75rem 1.8rem; border-radius: 50px; font-size: .92rem;
  cursor: pointer; text-decoration: none; display: inline-block; transition: all .2s;
}
.btn-hero-secondary:hover { background: var(--blue); color: white; }

.hero-strip {
  display: grid; grid-template-columns: 1fr 1fr 1fr; position: relative; z-index: 2;
}
.hero-strip-item {
  padding: 1.4rem 2rem; display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; text-decoration: none; transition: opacity .2s;
}
.hero-strip-item:hover { opacity: .9; }
.hero-strip-item.navy { background: var(--navy); }
.hero-strip-item.red { background: var(--red); }
.hero-strip-item.blue { background: var(--blue); }
.strip-label { font-size: .65rem; text-transform: uppercase; letter-spacing: .12em; color: rgba(255,255,255,.5); margin-bottom: .3rem; }
.strip-name { font-size: 1.15rem; font-weight: 700; color: white; }
.strip-arrow { font-size: 1.4rem; color: rgba(255,255,255,.35); }

/* legacy aliases kept for any old markup referencing these */
.hero-cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.hero-cat-card {
  text-decoration: none; background: var(--white);
  border: 1px solid var(--border); border-radius: 18px;
  padding: 1.2rem; display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 150px; transition: transform .2s, box-shadow .2s; overflow: hidden; position: relative;
}
.hero-cat-card.large { grid-row: span 2; min-height: 320px; }
.hero-cat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(13,35,64,.12); }
.hero-cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .9; }
.hero-cat-card .cat-overlay { position: relative; z-index: 2; background: rgba(255,255,255,.92); border-radius: 12px; padding: .6rem .9rem; align-self: flex-start; margin-top: auto; }
.hero-cat-name { font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 1.2rem; color: var(--navy); }
.hero-cat-count { font-size: .75rem; color: var(--mid-gray); }

/* ── CATEGORY PAGE HERO BANNER ── */
.cat-banner {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: center;
  background: var(--soft-gray); border-radius: 20px; padding: 2.5rem; margin-bottom: 3rem;
}
.cat-banner-wm1 { position: absolute; right: -30px; top: -30px; width: 180px; height: 180px; border-radius: 50%; background: rgba(232,35,26,0.06); pointer-events: none; }
.cat-banner-wm2 { position: absolute; right: 50px; top: 50px; width: 100px; height: 100px; border-radius: 50%; background: rgba(75,184,232,0.08); pointer-events: none; }
.cat-banner-accent { position: relative; z-index: 2; width: 40px; height: 4px; background: var(--red); border-radius: 2px; margin-bottom: .8rem; }
.cat-banner-text { position: relative; z-index: 2; }
.cat-banner-img { position: relative; z-index: 2; border-radius: 14px; overflow: hidden; aspect-ratio: 16/10; background: var(--white); border: 1px solid var(--border); }
.cat-banner-img img { width: 100%; height: 100%; object-fit: cover; }
.cat-banner-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem,3.5vw,2.6rem); font-weight: 700; color: var(--navy); margin-bottom: .5rem; }
.cat-banner-desc { color: #888; font-size: .95rem; line-height: 1.7; }
.cat-banner-count { display: inline-block; margin-top: 1rem; background: var(--navy); border-radius: 50px; padding: .4rem 1rem; font-size: .78rem; font-weight: 700; color: white; position: relative; z-index: 2; }

@media (max-width: 768px) {
  .hero-v2 { padding: 2.5rem 1.2rem 0; }
  .hero-v2-content { max-width: 100%; }
  .hero-strip { grid-template-columns: 1fr; }
  .hero-cat-card.large { min-height: 220px; }
  .cat-banner { grid-template-columns: 1fr; padding: 1.5rem; }
  .cat-banner-img { order: -1; }
}

/* ── NAV ACTIVE STATE ── */
.nav-links a.nav-active { background: var(--soft-gray); color: var(--red); }

/* ── CONTACT FORM REQUIRED ── */
.required-mark { color: var(--red); }

/* ── ORDER SUBMITTED CONFIRMATION ── */
.order-success {
  text-align: center; padding: 1rem 0;
}
.order-success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(75,184,232,.14); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 1rem;
}

/* ── CATEGORY QUICK NAV (shop.html / category pages) ── */
.shop-cat-strip { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 12px; }
.shop-cat-card {
  border-radius: 12px; padding: 1rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
  text-decoration: none; cursor: pointer; transition: opacity .2s;
}
.shop-cat-card:hover { opacity: .9; }
.shop-cat-card.navy { background: var(--navy); }
.shop-cat-card.red { background: var(--red); }
.shop-cat-card.blue { background: var(--blue); }
.shop-cat-name { font-size: .95rem; font-weight: 700; color: white; }
.shop-cat-arrow { color: rgba(255,255,255,.4); font-size: 1.1rem; }

@media (max-width: 768px) {
  .shop-cat-strip { grid-template-columns: 1fr; }
}


/* ── BREADCRUMB ── */
.breadcrumb {
  font-size: .82rem; color: var(--mid-gray); padding: 1.2rem 5vw 0;
  display: flex; align-items: center; gap: .4rem;
}
.breadcrumb a { color: var(--teal); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .crumb-current { color: var(--navy); font-weight: 600; }

/* ── AUTH PAGES (login/signup) ── */
.auth-wrap {
  min-height: calc(100vh - 76px);
  display: grid; grid-template-columns: 1fr 1fr;
}
.auth-form-side {
  display: flex; align-items: center; justify-content: center;
  padding: 3rem 2rem;
}
.auth-form-box { width: 100%; max-width: 420px; }
.auth-form-box .modal-title { font-size: 2rem; }
.auth-form-box .modal-form input {
  padding: .85rem 1rem;
}
.auth-pw-wrap { position: relative; }
.auth-pw-wrap input { padding-right: 2.6rem; }
.auth-pw-toggle {
  position: absolute; right: .9rem; top: 50%; transform: translateY(-50%);
  background: none; border: none; cursor: pointer; color: var(--mid-gray);
  font-size: .85rem; font-weight: 600; padding: 0;
}
.auth-pw-toggle:hover { color: var(--teal); }
.auth-forgot { text-align: right; margin: -.4rem 0 .2rem; }
.auth-forgot a { font-size: .82rem; color: var(--teal); text-decoration: none; font-weight: 600; }
.auth-forgot a:hover { text-decoration: underline; }
.auth-side {
  background: linear-gradient(160deg, var(--navy) 60%, #1a3a5c 100%);
  display: flex; align-items: center; justify-content: center;
  padding: 3rem; color: white;
}
.auth-side-inner { max-width: 420px; }
.auth-side-inner .section-label { color: var(--teal-light); }
.auth-side-inner h2 {
  font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700;
  margin: .5rem 0 1rem; line-height: 1.2;
}
.auth-side-inner p { color: rgba(255,255,255,.78); font-size: .95rem; line-height: 1.7; margin-bottom: 1.5rem; }
.auth-feature-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .9rem; }
.auth-feature-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .92rem; color: rgba(255,255,255,.9); }
.auth-feature-list .feat-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: rgba(75,184,232,.18); display: flex; align-items: center; justify-content: center; font-size: .9rem;
}
.auth-error {
  display: none; background: rgba(229,62,62,.08); border: 1px solid rgba(229,62,62,.25);
  color: #c53030; border-radius: 10px; padding: .7rem 1rem; font-size: .85rem; margin-bottom: 1rem;
}
.auth-error.show { display: block; }
.auth-success {
  display: none; background: rgba(45,184,159,.08); border: 1px solid rgba(45,184,159,.3);
  color: #1f7a68; border-radius: 10px; padding: .7rem 1rem; font-size: .85rem; margin-bottom: 1rem;
}
.auth-success.show { display: block; }

@media (max-width: 900px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-side { display: none; }
  .auth-form-side { padding: 2.5rem 1.2rem; }
}

/* ── MY ORDERS ── */
.order-card {
  border: 1px solid var(--border); border-radius: 16px; padding: 1.2rem 1.4rem;
  margin-bottom: 1rem; background: var(--white);
}
.order-card-head {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: .5rem; margin-bottom: .8rem; padding-bottom: .8rem;
  border-bottom: 1px solid var(--border);
}
.order-card-id { font-weight: 700; color: var(--navy); font-size: .95rem; }
.order-card-date { font-size: .8rem; color: var(--mid-gray); margin-top: .2rem; }
.order-status {
  font-size: .75rem; font-weight: 700; padding: .3rem .8rem; border-radius: 50px;
  text-transform: uppercase; letter-spacing: .04em;
}
.order-status.pending { background: rgba(75,184,232,.12); color: #2778a0; }
.order-status.processed,
.order-status.invoiced { background: rgba(45,184,159,.12); color: #1f7a68; }
.order-status.cancelled { background: rgba(229,62,62,.08); color: #c53030; }
.order-items { display: flex; flex-direction: column; gap: .5rem; margin-bottom: .8rem; }
.order-item-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: .85rem; color: var(--text);
}
.order-item-row .qty { color: var(--mid-gray); }
.order-card-total {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; color: var(--navy); padding-top: .6rem; border-top: 1px solid var(--border);
}
.orders-empty {
  text-align: center; padding: 3rem 1rem; color: var(--mid-gray);
}
.orders-empty .big-icon { font-size: 2.4rem; margin-bottom: .8rem; }

/* ── MULTI-STEP SIGNUP ── */
.signup-steps { max-width: 480px; }
.signup-step { display: none; }
.signup-step.active { display: block; }

.otp-boxes { display: flex; gap: .5rem; margin: 1.2rem 0; flex-wrap: wrap; }
.otp-box {
  width: 42px; height: 52px; text-align: center; font-size: 1.3rem; font-weight: 700;
  border: 1.5px solid var(--border); border-radius: 10px; background: var(--soft-gray);
  color: var(--navy); transition: border-color .2s, background .2s;
}
.otp-box:focus { border-color: var(--blue); background: white; outline: none; }

.resend-link { font-size: .82rem; color: var(--blue); text-decoration: none; font-weight: 600; }
.resend-link:hover { text-decoration: underline; }
.resend-link.disabled { color: var(--mid-gray); pointer-events: none; }

.signup-progress { display: flex; align-items: center; gap: .3rem; margin-bottom: 2rem; }
.signup-progress-dot {
  width: 26px; height: 26px; border-radius: 50%; background: var(--soft-gray);
  color: var(--mid-gray); display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; flex-shrink: 0;
}
.signup-progress-dot.active { background: var(--red); color: white; }
.signup-progress-dot.done { background: var(--navy); color: white; }
.signup-progress-line { flex: 1; height: 2px; background: var(--border); }
.signup-progress-line.done { background: var(--navy); }

.form-section-title {
  font-size: .85rem; font-weight: 700; color: var(--navy); text-transform: uppercase;
  letter-spacing: .06em; margin: 1.5rem 0 .8rem; padding-top: 1rem; border-top: 1px solid var(--border);
}
.form-section-title:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.radio-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: .3rem; }
.radio-option {
  display: flex; align-items: center; gap: .6rem; padding: .6rem .8rem;
  border: 1.5px solid var(--border); border-radius: 8px; cursor: pointer; transition: all .15s;
}
.radio-option:hover { border-color: var(--blue); }
.radio-option input[type="radio"] { accent-color: var(--red); width: 16px; height: 16px; }
.radio-option label { font-size: .88rem; cursor: pointer; flex: 1; }
.checkbox-row { display: flex; align-items: flex-start; gap: .6rem; margin: .8rem 0; }
.checkbox-row input[type="checkbox"] { accent-color: var(--red); width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; }
.checkbox-row label { font-size: .82rem; color: #555; line-height: 1.5; cursor: pointer; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.notice-box {
  background: rgba(232,35,26,.06); border: 1px solid rgba(232,35,26,.2);
  border-radius: 10px; padding: .9rem 1.1rem; font-size: .82rem; color: #a01510;
  margin-bottom: 1.2rem; line-height: 1.6;
}
.signup-step-actions { display: flex; gap: .8rem; margin-top: 1.5rem; }
.btn-step-back {
  background: var(--soft-gray); color: var(--navy); border: none;
  padding: .9rem 1.2rem; border-radius: 10px; font-size: .9rem; font-weight: 600;
  cursor: pointer; flex: 0 0 auto;
}
@media (max-width: 600px) {
  .form-grid-2 { grid-template-columns: 1fr; }
  .otp-box { width: 10.5vw; max-width:42px; height:48px; font-size:1.1rem; }
}
