 :root{
      /* palette inspired by your ZOEHAIRRA moodboard */
      --ivory: #F7EFE8;
      --blush: #E7D3C9;
      --taupe: #B9A89B;
      --charcoal: #1C1B1B;
      --soft-gold: #C8A97A;

      --glass: rgba(247,239,232,.88);
      --glass2: rgba(247,239,232,.72);

      --shadow: 0 18px 60px rgba(0,0,0,.22);
      --shadow2: 0 12px 34px rgba(0,0,0,.18);
      --shadow3: 0 8px 22px rgba(0,0,0,.16);

      --radius: 0px; /* NO border radius buttons */
      --maxw: 1180px;

      --ease: cubic-bezier(.2,.8,.2,1);
      
       --wa-green:#0b5a4c;
      --wa-green-2:#0a4f43;
      --wa-accent:#25D366;
      --bubble:#dfffcf;
      --text:#0f172a;
      --muted:#6b7280;
      --card:#ffffff;
      --shadow: 0 20px 50px rgba(0,0,0,.18);
     
      --btn-radius: 999px;
      --z: 9999;
    }

    *{ box-sizing:border-box; }
    html,body{ height:100%; }
    body{
      margin:0;
      font-family: Poppins, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      background: var(--ivory);
      color: var(--charcoal);
      overflow-x:hidden;
    }

    /* ====== Global background (same vibe as coming soon) ====== */
    .bg{
      position:fixed;
      inset:0;
      z-index:-2;
      background-image:url("zoey.jpeg"); /* optional: keep your moodboard bg */
      background-size:cover;
      background-position:center;
      background-repeat:no-repeat;
      transform:scale(1.03);
      filter:saturate(.95);
    }
    .bg::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(1100px 700px at 50% 25%, rgba(247,239,232,.78) 0%, rgba(247,239,232,.55) 45%, rgba(28,27,27,.40) 100%),
        linear-gradient(180deg, rgba(28,27,27,.22), rgba(28,27,27,.28));
    }

    /* ====== Utilities ====== */
    .container{
      width:min(var(--maxw), calc(100% - 32px));
      margin-inline:auto;
    }
    .section{
      padding: clamp(42px, 6vw, 84px) 0;
    }
    .kicker{
      letter-spacing:.22em;
      text-transform:uppercase;
      font-size:12px;
      color: rgba(28,27,27,.70);
      margin:0 0 10px;
    }
    h2{
      font-family:"Playfair Display", serif;
      letter-spacing:.03em;
      text-transform:uppercase;
      margin:0 0 10px;
      font-size: clamp(24px, 3.1vw, 36px);
      line-height:1.08;
    }
    p{
      margin:0;
      color: rgba(28,27,27,.78);
      line-height:1.75;
      font-size: clamp(13px, 1.8vw, 16px);
    }

    /* ====== Buttons ====== */
    .btn{
      border-radius: var(--radius);
      border: 1px solid rgba(28,27,27,.28);
      background: var(--charcoal);
      color: var(--ivory);
      padding: 9px 14px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap: 10px;
      font-weight:600;
      letter-spacing:.10em;
      text-transform:uppercase;
      font-size: 12px;
      cursor:pointer;
      text-decoration:none;
      transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
      box-shadow: var(--shadow3);
      min-height: 46px;
      user-select:none;
      white-space:nowrap;
    }
    .btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); }
    .btn:active{ transform: translateY(0px) scale(.99); }

    .btn.gold{
      background: var(--soft-gold);
      color: var(--charcoal);
      border-color: rgba(28,27,27,.22);
    }
    .btn.ghost{
      background: rgba(247,239,232,.70);
      color: var(--charcoal);
      border-color: rgba(28,27,27,.20);
    }

    /* ====== Section reveal (simple slick animation) ====== */
    .reveal{
      opacity:0;
      transform: translateY(12px);
      transition: opacity .7s var(--ease), transform .7s var(--ease);
    }
    .reveal.in{
      opacity:1;
      transform: translateY(0);
    }

    /* ============================================================
       SECTION 1 — NAVBAR + MOBILE DRAWER
    ============================================================ */
    .navWrap{
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      background: rgba(247,239,232,.72);
      border-bottom: 1px solid rgba(28,27,27,.10);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 16px;
      padding: 14px 0;
    }

    .brand{
      display:flex;
      align-items:center;
      gap:12px;
      min-width: 200px;
      text-decoration:none;
      color: inherit;
    }
    .mark{
      width: 44px;
      height: 28px;
      display:grid;
      place-items:center;
      background: rgba(231,211,201,.40);
      border: 1px solid rgba(28,27,27,.18);
      box-shadow: var(--shadow3);
    }
    .mark i{ color: var(--soft-gold); font-size: 18px; }
    .brandText .name{
      font-family:"Playfair Display", serif;
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      font-size: 14px;
      line-height:1.1;
    }
    .brandText .tag{
      font-size: 11px;
      letter-spacing:.18em;
      text-transform:uppercase;
      color: rgba(28,27,27,.70);
      margin-top:2px;
    }

    .navLinks{
      display:flex;
      align-items:center;
      gap: 18px;
      flex-wrap:wrap;
      justify-content:center;
    }
    .navLinks a{
      position:relative;
      text-decoration:none;
      color: rgba(28,27,27,.82);
      font-size: 12px;
      letter-spacing:.16em;
      text-transform:uppercase;
      padding: 10px 6px;
      transition: color .18s var(--ease);
      white-space:nowrap;
    }
    .navLinks a::after{
      content:"";
      position:absolute;
      left: 6px;
      right: 6px;
      bottom: 4px;
      height: 1px;
      background: rgba(200,169,122,.85);
      transform: scaleX(0);
      transform-origin:left;
      transition: transform .25s var(--ease);
    }
    .navLinks a:hover{ color: var(--charcoal); }
    .navLinks a:hover::after{ transform: scaleX(1); }

    .navActions{
      display:flex;
      align-items:center;
      gap: 10px;
      min-width: 200px;
      justify-content:flex-end;
    }

    .iconBtn{
      width: 36px;
      height: 36px;
      border-radius: 0;
      border: 1px solid rgba(28,27,27,.20);
      background: rgba(247,239,232,.75);
      box-shadow: var(--shadow3);
      display:grid;
      place-items:center;
      cursor:pointer;
      transition: transform .18s var(--ease), background .18s var(--ease);
    }
    .iconBtn:hover{ transform: translateY(-1px); background: rgba(231,211,201,.55); }
    .iconBtn i{ color: rgba(28,27,27,.78); }

    /* Mobile: hide inline links, show hamburger */
    .hamburger{ display:none; }

    /* Drawer overlay */
    .drawerOverlay{
      position:fixed;
      inset:0;
      background: rgba(28,27,27,.55);
      opacity:0;
      pointer-events:none;
      transition: opacity .25s var(--ease);
      z-index: 70;
    }
    .drawerOverlay.show{
      opacity:1;
      pointer-events:auto;
    }

    /* Drawer */
    .drawer{
      position:fixed;
      top:0;
      right:0;
      height:100%;
      width: min(360px, 92vw);
      background: rgba(247,239,232,.92);
      border-left: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow);
      transform: translateX(105%);
      transition: transform .35s var(--ease);
      z-index: 80;
      padding: 16px;
      display:flex;
      flex-direction:column;
      gap: 14px;
    }
    .drawer.show{ transform: translateX(0); }

    .drawerTop{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:12px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(28,27,27,.10);
    }
    .drawerLinks{
      display:flex;
      flex-direction:column;
      gap: 6px;
      padding: 10px 0;
    }
    .drawerLinks a{
      display:flex;
      align-items:center;
      gap: 12px;
      text-decoration:none;
      color: rgba(28,27,27,.88);
      padding: 12px 10px;
      border: 1px solid rgba(28,27,27,.12);
      background: rgba(247,239,232,.70);
      transition: transform .18s var(--ease), background .18s var(--ease);
      letter-spacing:.10em;
      text-transform:uppercase;
      font-size: 12px;
    }
    .drawerLinks a:hover{ transform: translateY(-1px); background: rgba(231,211,201,.55); }

    .drawerLinks i{ color: var(--soft-gold); width: 18px; text-align:center; }

    .drawerBottom{
      margin-top:auto;
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
    }
    .drawerBottom .btn{ flex: 1 1 150px; }

    /* ============================================================
       SECTION 2 — VIDEO HERO
    ============================================================ */
    .hero{
      position:relative;
      min-height: 78vh;
      display:grid;
      align-items:center;
      overflow:hidden;
      border-bottom: 1px solid rgba(247,239,232,.10);
    }
    .heroVideo{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      filter: contrast(1.02) saturate(1.03);
      transform: scale(1.02);
    }

    /* dark + luxury gold tint overlay */
    .heroOverlay{
      position:absolute;
      inset:0;
      background:
        radial-gradient(900px 500px at 50% 30%, rgba(0,0,0,.35), rgba(0,0,0,.65)),
        linear-gradient(135deg, rgba(200,169,122,.18), rgba(0,0,0,.55));
    }

    .heroInner{
      position:relative;
      z-index:2;
      padding: clamp(42px, 6vw, 84px) 0;
    }

    .heroCard{
      width: min(860px, 100%);
      background: rgba(247,239,232,.10);
      border: 1px solid rgba(247,239,232,.22);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: clamp(18px, 3.2vw, 34px);
      box-shadow: 0 22px 70px rgba(0,0,0,.35);
    }

    .heroTitle{
      margin: 0 0 10px;
      font-family:"Playfair Display", serif;
      text-transform: uppercase;
      letter-spacing:.05em;
      color: #fff;
      font-size: clamp(30px, 5vw, 58px);
      line-height:1.04;
    }
    .heroText{
      color: rgba(255,255,255,.85);
      max-width: 60ch;
      margin-bottom: 18px;
      font-size: clamp(13px, 1.8vw, 16px);
      line-height:1.75;
    }
    .heroBtns{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
    }

    /* Mobile hero height */
    @media (max-width: 640px){
      .hero{ min-height: 90vh; }
      .heroCard{ width: 100%; }
      a.tbr{
          display: none;
      }
    }

    /* ============================================================
       SECTION 3 — PRODUCT CARDS (UPDATED)
    ============================================================ */
    .sectionHead{
      text-align:center;
      margin-bottom: 22px;
    }
    .sectionHead p{ margin: 0 auto; max-width: 70ch; }

    .grid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .card{
      background: linear-gradient(180deg, var(--glass), var(--glass2));
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow2);
      overflow:hidden;
      position:relative;
      transition: transform .22s var(--ease), box-shadow .22s var(--ease);
    }
    .card:hover{
      transform: translateY(-3px);
      box-shadow: var(--shadow);
    }

    .cardMedia{
      position:relative;
      height: 280px;
      overflow:hidden;
      border-bottom: 1px solid rgba(28,27,27,.08);
    }

    .cardMedia::after{
      content:"";
      position:absolute;
      inset:0;
      background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.35));
      pointer-events:none;
      z-index: 4;
    }

    .badge{
      position:absolute;
      top: 12px;
      left: 12px;
      background: rgba(247,239,232,.78);
      border: 1px solid rgba(28,27,27,.16);
      padding: 8px 10px;
      font-size: 11px;
      letter-spacing:.16em;
      text-transform: uppercase;
      display:inline-flex;
      align-items:center;
      gap: 8px;
      box-shadow: var(--shadow3);
      z-index: 5;
    }
    .badge i{ color: var(--soft-gold); }

    .cardBody{
      padding: 16px;
      display:flex;
      flex-direction:column;
      gap: 10px;
    }
    .cardTitle{
      display:flex;
      align-items:baseline;
      justify-content:space-between;
      gap: 10px;
      flex-wrap:wrap;
    }
    .cardTitle h3{
      margin:0;
      font-family:"Playfair Display", serif;
      font-size: 18px;
      letter-spacing:.04em;
      text-transform: uppercase;
      line-height:1.2;
    }
    .meta{
      font-size: 11px;
      letter-spacing:.14em;
      text-transform: uppercase;
      color: rgba(28,27,27,.72);
      display:flex;
      align-items:center;
      gap: 8px;
    }
    .meta i{ color: rgba(28,27,27,.55); }

    /* Price row */
    .priceRow{
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 12px;
      flex-wrap:wrap;
    }
    .price{
      font-weight:700;
      letter-spacing:.08em;
      text-transform:uppercase;
      font-size: 13px;
      color: rgba(28,27,27,.92);
      display:flex;
      align-items:baseline;
      gap: 6px;
      white-space:nowrap;
      margin-left:auto;
    }
    .price .cur{
      font-size: 12px;
      color: rgba(28,27,27,.72);
    }
    .price .amt{
      font-family:"Playfair Display", serif;
      font-size: 18px;
      letter-spacing:.03em;
    }

    .cardActions{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
      margin-top: 6px;
    }
    .cardActions .btn{ flex:1 1 180px; }

    /* Swiper in product media */
    .cardMedia .swiper{
      width:100%;
      height:100%;
      position:relative;
      z-index:1;
    }
    .cardMedia .swiper-slide img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      transform: scale(1.02);
      transition: transform .7s var(--ease);
    }
    .card:hover .cardMedia .swiper-slide img{ transform: scale(1.08); }

    @media (max-width: 980px){
      .grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .cardMedia{ height: 260px; }
    }
    @media (max-width: 640px){
      .grid{ grid-template-columns: 1fr; }
      .cardMedia{ height: 250px; }
    }

    /* ============================================================
       SECTION 4 — NEWSLETTER
    ============================================================ */
    .newsletter{
      background: linear-gradient(180deg, rgba(247,239,232,.86), rgba(247,239,232,.70));
      border-top: 1px solid rgba(28,27,27,.10);
      border-bottom: 1px solid rgba(28,27,27,.10);
    }
    .newsBox{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      align-items:center;
      background: rgba(247,239,232,.55);
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow2);
      padding: clamp(18px, 3vw, 30px);
      position:relative;
      overflow:hidden;
    }
    .newsBox::before,
    .newsBox::after{
      content:"";
      position:absolute;
      width: 240px;
      height: 240px;
      border: 1px solid rgba(200,169,122,.35);
      background: rgba(200,169,122,.10);
      pointer-events:none;
    }
    .newsBox::before{ top:-120px; left:-120px; }
    .newsBox::after{ bottom:-120px; right:-120px; }

    .newsLeft{
      position:relative;
      z-index:1;
    }
    .newsTitleRow{
      display:flex;
      align-items:center;
      gap: 12px;
      margin-bottom: 8px;
    }
    .newsIcon{
      width: 52px;
      height: 52px;
      display:grid;
      place-items:center;
      background: rgba(231,211,201,.38);
      border: 1px solid rgba(28,27,27,.16);
      box-shadow: var(--shadow3);
    }
    .newsIcon i{ color: var(--soft-gold); font-size: 18px; }

    .formWrap{
      position:relative;
      z-index:1;
      display:flex;
      flex-direction:column;
      gap: 10px;
    }
    .fieldRow{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .field{
      display:flex;
      align-items:center;
      gap: 10px;
      padding: 12px 12px;
      border: 1px solid rgba(28,27,27,.18);
      background: rgba(247,239,232,.78);
      box-shadow: var(--shadow3);
    }
    .field i{ color: rgba(28,27,27,.55); width: 18px; text-align:center; }
    .field input{
      width:100%;
      border:0;
      outline:none;
      background:transparent;
      font-size: 14px;
      color: var(--charcoal);
    }
    .field input::placeholder{ color: rgba(28,27,27,.55); }

    .newsActions{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
    }
    .newsActions .btn{ flex: 1 1 180px; }

    .formMsg{
      min-height: 18px;
      font-size: 13px;
      color: rgba(28,27,27,.78);
    }

    @media (max-width: 900px){
      .newsBox{ grid-template-columns: 1fr; }
      .fieldRow{ grid-template-columns: 1fr; }
    }

    /* ============================================================
       SECTION 5 — FOOTER
    ============================================================ */
    footer{
      background: rgba(28,27,27,.92);
      color: rgba(247,239,232,.86);
      border-top: 1px solid rgba(247,239,232,.08);
    }
    .footerTop{
      padding: 34px 0;
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      align-items:start;
    }

    .footBrand{
      display:flex;
      align-items:flex-start;
      gap: 12px;
    }
    .footBrand .mark{ background: rgba(200,169,122,.16); border-color: rgba(247,239,232,.12); }
    .footBrand .mark i{ color: var(--soft-gold); }
    .footBrand .name{
      font-family:"Playfair Display", serif;
      letter-spacing:.08em;
      text-transform:uppercase;
      font-weight:700;
      font-size: 16px;
      margin:0 0 6px;
      color:#fff;
    }
    .footBrand p{
      color: rgba(247,239,232,.74);
      max-width: 52ch;
      font-size: 13px;
    }

    .footCols{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
    }
    .footCol h4{
      margin:0 0 10px;
      font-size: 12px;
      letter-spacing:.18em;
      text-transform:uppercase;
      color: rgba(247,239,232,.86);
    }
    .footLinks{
      display:flex;
      flex-direction:column;
      gap: 10px;
    }
    .footLinks a{
      text-decoration:none;
      color: rgba(247,239,232,.74);
      display:flex;
      align-items:center;
      gap: 10px;
      font-size: 12px;
      letter-spacing:.10em;
      text-transform:uppercase;
      transition: transform .18s var(--ease), color .18s var(--ease);
    }
    .footLinks a i{ color: rgba(200,169,122,.9); width: 18px; text-align:center; }
    .footLinks a:hover{ color: #fff; transform: translateX(2px); }

    .socials{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
      margin-top: 12px;
    }
    .socials a{
      width: 36px;
      height: 36px;
      display:grid;
      place-items:center;
      border: 1px solid rgba(247,239,232,.14);
      background: rgba(247,239,232,.06);
      border-radius: 50%;
      color: rgba(247,239,232,.9);
      transition: transform .18s var(--ease), background .18s var(--ease);
      text-decoration:none;
    }
    .socials a:hover{
      transform: translateY(-1px);
      background: rgba(200,169,122,.14);
    }

    .footerBottom{
      border-top: 1px solid rgba(247,239,232,.08);
      padding: 16px 0;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      flex-wrap:wrap;
      color: rgba(247,239,232,.62);
      font-size: 12px;
      letter-spacing:.06em;
    }
    .policyRow{
      display:flex;
      gap: 14px;
      flex-wrap:wrap;
      align-items:center;
    }
    .policyRow a{
      color: rgba(247,239,232,.70);
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      gap: 8px;
      text-transform:uppercase;
      letter-spacing:.10em;
      font-size: 11px;
      transition: color .18s var(--ease);
    }
    .policyRow a i{ color: rgba(200,169,122,.9); }
    .policyRow a:hover{ color:#fff; }

    @media (max-width: 860px){
      .footerTop{ grid-template-columns: 1fr; }
      .footCols{ grid-template-columns: 1fr; }
      .footerBottom{ justify-content:center; text-align:center; }
      .policyRow{ justify-content:center; }
    }

    /* ====== Mobile navbar rules ====== */
    @media (max-width: 860px){
      .navLinks{ display:none; }
      .hamburger{ display:grid; }
      .navActions{ min-width: auto; }
      .brand{ min-width:auto; }
    }

    /* Reduced motion */
    @media (prefers-reduced-motion: reduce){
      .reveal, .btn, .iconBtn, .drawer, .drawerOverlay, .card, .swiper-slide img, .footLinks a, .socials a{
        transition:none !important;
      }
    }
    
    
    /**************************WHATSAAP********************/
    /************------------------- WHATSAPP --------------**************/


    .wa-overlay{
      position:fixed; inset:0;
      background: rgba(0,0,0,.18);
      opacity:0; pointer-events:none;
      transition: opacity .18s ease;
      z-index: calc(var(--z) - 1);
    }
    .wa-overlay.is-open{ opacity:1; pointer-events:auto; }

    /* Container pinned bottom-right */
    .wa-widget{
      position:fixed;
      right:18px; bottom:18px;
      z-index: var(--z);
    }
    
    /* Floating button */
    .wa-fab{
      display:flex; align-items:center; gap:10px;
      border:0;
      border-radius: var(--btn-radius);
      background: rgba(255,255,255,.85);
      box-shadow: 0 10px 30px rgba(0,0,0,.20);
      padding:10px 14px 10px 10px;
      cursor:pointer;
      user-select:none;
      backdrop-filter: blur(8px);
    }
    .wa-fab:focus{ outline: 3px solid rgba(37,211,102,.35); outline-offset: 2px; }

    .wa-fab .wa-icon{
      width:28px; height:28px;
      border-radius: 999px;
      background: var(--wa-accent);
      display:grid; place-items:center;
      flex:0 0 auto;
    }
    .wa-fab .wa-label{
      font-size:14px;
      color:#111827;
      opacity:.75;
      white-space:nowrap;
    }

    /* Panel (closed by default) */
    .wa-panel{
      position:absolute;
      right:0;
      bottom:56px; /* sits above FAB */
      width: 360px;
      max-width: calc(100vw - 36px);
      border-radius: var(--radius);
      background: var(--card);
      box-shadow: var(--shadow);
      overflow:hidden;

      transform: translateY(12px);
      opacity:0;
      pointer-events:none;
      transition: transform .2s ease, opacity .2s ease;
    }
    .wa-panel.is-open{
      transform: translateY(0);
      opacity:1;
      pointer-events:auto;
    }

    /* Header */
    .wa-header{
      background: var(--wa-green);
      color:#fff;
      padding:14px 14px 12px 14px;
      display:flex; align-items:flex-start; justify-content:space-between;
      gap:12px;
    }
    .wa-h-left{ display:flex; align-items:center; gap:12px; min-width:0; }
    .wa-avatar{
      width:42px; height:42px; border-radius:999px;
      background: #f9a8d4;
      display:grid; place-items:center;
      flex:0 0 auto;
      overflow:hidden;
    }
    .wa-avatar svg{ width:24px; height:24px; }
    .wa-title-wrap{ min-width:0; }
    .wa-title{
      font-weight:700;
      font-size:16px;
      line-height:1.1;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width: 220px;
    }
    .wa-sub{
      margin-top:3px;
      font-size:12px;
      color: rgba(255,255,255,.85);
      display:flex; align-items:center; gap:7px;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
      max-width: 240px;
    }
    .wa-dot{
      width:10px; height:10px; border-radius:99px;
      background: #22c55e;
      box-shadow: 0 0 0 2px rgba(255,255,255,.16);
      flex:0 0 auto;
    }
    .wa-close{
      border:0; background:transparent; color:#fff;
      width:34px; height:34px;
      border-radius:10px;
      display:grid; place-items:center;
      cursor:pointer;
      flex:0 0 auto;
      opacity:.9;
    }
    .wa-close:hover{ background: rgba(255,255,255,.12); }
    .wa-close:focus{ outline:3px solid rgba(255,255,255,.28); outline-offset:2px; }

    /* Chat body (pattern-ish background) */
    .wa-body{
      padding:18px 16px 16px 16px;
      background:
        radial-gradient(circle at 10px 10px, rgba(0,0,0,.04) 2px, transparent 3px) 0 0/28px 28px,
        radial-gradient(circle at 18px 22px, rgba(0,0,0,.03) 2px, transparent 3px) 0 0/34px 34px,
        #efe7df;
      min-height: 260px;
      display:flex;
      flex-direction:column;
      gap:14px;
    }

    /* Message bubble */
    .wa-bubble{
      align-self:flex-start;
      max-width: 85%;
      background: var(--bubble);
      border-radius: 10px;
      padding:12px 12px;
      box-shadow: 0 2px 0 rgba(0,0,0,.05);
      position:relative;
      font-size:14px;
      line-height:1.35;
      color:#0f172a;
    }
    .wa-bubble::before{
      content:"";
      position:absolute;
      left:-6px; top:12px;
      width:12px; height:12px;
      background: var(--bubble);
      transform: rotate(45deg);
      border-radius: 2px;
    }

    /* CTA area */
    .wa-footer{
      padding:14px 16px 16px 16px;
      background:#fff;
      border-top: 1px solid rgba(15,23,42,.06);
      display:flex;
      flex-direction:column;
      gap:10px;
    }
    .wa-cta{
      width:100%;
      border:0;
      background: var(--wa-accent);
      color:#fff;
      padding:14px 16px;
      border-radius: var(--btn-radius);
      font-weight:700;
      font-size:16px;
      cursor:pointer;
      display:flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      box-shadow: 0 10px 20px rgba(37,211,102,.22);
    }
    .wa-cta:hover{ filter: brightness(.98); }
    .wa-cta:focus{ outline:3px solid rgba(37,211,102,.35); outline-offset: 2px; }
    .wa-meta{
      display:flex;
      align-items:center;
      justify-content:center;
      gap:8px;
      font-size:12px;
      color: var(--muted);
    }
    .wa-online-dot{
      width:10px; height:10px; border-radius:99px;
      background:#22c55e;
      flex:0 0 auto;
    }
    .wa-meta a{
      color:inherit;
      text-decoration:none;
    }
    .wa-meta a:hover{ text-decoration:underline; }

    /* Mobile: bottom-sheet feel */
    @media (max-width: 520px){
      .wa-widget{ right:12px; bottom:12px; }
      .wa-panel{
        right:0;
        bottom:64px;
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
      }
    }

    /* Extra small phones: make it taller */
    @media (max-width: 420px){
      .wa-panel{
        bottom:70px;
      }
      .wa-body{ min-height: 300px; }
    }

    /* Motion safe */
    @media (prefers-reduced-motion: reduce){
      .wa-overlay, .wa-panel{ transition:none; }
    }
/* Always keep button above everything */
.wa-widget{ z-index: 9999; }
.wa-fab{ position: fixed; z-index: 10001;
bottom: 15%;
right:5px;
}

/* Panel behind the FAB */
.wa-panel{ z-index: 10000; }

/* Mobile bottom-sheet positioning (doesn't cover the button) */
@media (max-width: 520px){
  .wa-widget{
    right: 12px;
    bottom: 12px;
  }

  .wa-panel{
    position: fixed;              /* important */
    left: 12px;
    right: 12px;
    bottom: 78px;                 /* space reserved for the button */
    width: auto;
    max-width: none;
    max-height: calc(100vh - 110px);
  }

  .wa-body{
    min-height: auto;
    max-height: calc(100vh - 260px);
    overflow: auto;
  }
}
.wa-overlay{ z-index: 9998; }



/************************404******************/

    
    
    
    /* 404 Layout */
    main{
      min-height: calc(100vh - 88px);
      display:grid;
      align-items:center;
      padding: clamp(10px, 3.5vw, 28px) 0;
    }
    .errorShell{
      display:grid;
      grid-template-columns: 1.05fr;
      gap: 18px;
      align-items:stretch;
    }
    @media (max-width: 980px){
      .errorShell{ grid-template-columns: 1fr; }
    }

    .errorCard{
      background: linear-gradient(180deg, var(--glass), var(--glass2));
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow2);
      overflow:hidden;
      padding: clamp(16px, 2.6vw, 24px);
      position:relative;
    }
    .errorCard::before,
    .errorCard::after{
      content:"";
      position:absolute;
      width: 240px;
      height: 240px;
      border: 1px solid rgba(200,169,122,.35);
      background: rgba(200,169,122,.10);
      pointer-events:none;
    }
    .errorCard::before{ top:-120px; left:-120px; }
    .errorCard::after{ bottom:-120px; right:-120px; }

    .kicker{
      letter-spacing:.22em;
      text-transform:uppercase;
      font-size:12px;
      color: rgba(28,27,27,.70);
      margin:0 0 10px;
    }
    .errorTitle{
      margin:0 0 10px;
      font-family:"Playfair Display", serif;
      letter-spacing:.05em;
      text-transform:uppercase;
      font-size: clamp(28px, 4.2vw, 46px);
      line-height:1.06;
      position:relative;
      z-index:1;
    }
    .errorText{
      margin:0 0 16px;
      color: rgba(28,27,27,.78);
      line-height:1.75;
      font-size: clamp(13px, 1.9vw, 16px);
      max-width: 70ch;
      position:relative;
      z-index:1;
    }

    .big404{
      font-family:"Playfair Display", serif;
      font-weight:700;
      letter-spacing:.06em;
      font-size: clamp(72px, 10vw, 140px);
      line-height:1;
      color: rgba(28,27,27,.10);
      position:absolute;
      right: 14px;
      top: 14px;
      pointer-events:none;
      user-select:none;
    }

    .errorActions{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
      position:relative;
      z-index:1;
      margin-top: 6px;
    }
    .errorActions .btn{ flex: 1 1 180px; }

    .miniLinks{
      margin-top: 16px;
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      position:relative;
      z-index:1;
    }
    @media (max-width: 520px){
      .miniLinks{ grid-template-columns: 1fr; }
    }
    .miniLinks a{
      text-decoration:none;
      color: rgba(28,27,27,.86);
      border: 1px solid rgba(28,27,27,.12);
      background: rgba(247,239,232,.70);
      box-shadow: var(--shadow3);
      padding: 12px 12px;
      display:flex;
      align-items:center;
      gap: 10px;
      letter-spacing:.10em;
      text-transform:uppercase;
      font-size: 12px;
      transition: transform .18s var(--ease), background .18s var(--ease);
    }
    .miniLinks a:hover{ transform: translateY(-1px); background: rgba(231,211,201,.55); }
    .miniLinks i{ color: var(--soft-gold); width: 18px; text-align:center; }

    /* Side visual card */
    .visualCard{
      background: rgba(247,239,232,.55);
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow2);
      overflow:hidden;
      display:grid;
      align-items:stretch;
    }
    .visualTop{
      padding: 16px;
      border-bottom: 1px solid rgba(28,27,27,.10);
      background: rgba(247,239,232,.72);
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 10px;
    }
    .pill{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      border: 1px solid rgba(28,27,27,.14);
      background: rgba(231,211,201,.38);
      box-shadow: var(--shadow3);
      padding: 8px 10px;
      letter-spacing:.14em;
      text-transform:uppercase;
      font-size: 11px;
      color: rgba(28,27,27,.78);
      white-space:nowrap;
    }
    .pill i{ color: var(--soft-gold); }

    .visualMedia{
      position:relative;
      min-height: 320px;
      background:
        radial-gradient(900px 500px at 50% 30%, rgba(0,0,0,.15), rgba(0,0,0,.35)),
        linear-gradient(135deg, rgba(200,169,122,.18), rgba(0,0,0,.28));
      overflow:hidden;
    }
    .visualMedia::before{
      content:"";
      position:absolute;
      inset:0;
      background-image:url("zoey.jpeg");
      background-size:cover;
      background-position:center;
      opacity:.25;
      transform: scale(1.02);
      filter:saturate(.95);
    }
    .visualMedia::after{
      content:"";
      position:absolute;
      inset:0;
      background:
        radial-gradient(900px 600px at 50% 35%, rgba(247,239,232,.32), rgba(28,27,27,.12));
      pointer-events:none;
    }

    .floatStamp{
      position:absolute;
      inset: 0;
      display:grid;
      place-items:center;
      z-index:2;
      padding: 16px;
      text-align:center;
    }
    .stampBox{
      width:min(420px, 100%);
      background: rgba(247,239,232,.16);
      border: 1px solid rgba(247,239,232,.26);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 22px 70px rgba(0,0,0,.28);
      padding: 18px;
    }
    .stampTitle{
      margin:0 0 8px;
      color:#fff;
      font-family:"Playfair Display", serif;
      text-transform:uppercase;
      letter-spacing:.05em;
      font-size: 18px;
    }
    .stampText{
      margin:0;
      color: rgba(255,255,255,.85);
      font-size: 13px;
      line-height:1.7;
    }
    
     /* ============================================================
       === PRODUCT PAGE STYLES (UPDATED to be SUPER RESPONSIVE) ===
       ============================================================ */
    .breadcrumbs{
      padding: 8px 0 18px;
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(28,27,27,.78);
    }
    .breadcrumbs a{ color: rgba(28,27,27,.86); text-decoration:none; }
    .breadcrumbs i{ margin: 0 10px; color: var(--soft-gold); }

    .productWrap{
      background: linear-gradient(180deg, var(--glass), var(--glass2));
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow2);
      padding: clamp(14px, 2.6vw, 22px);
      overflow:hidden;
    }

    .productGrid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 18px;
      align-items:start;
    }
    @media (max-width: 980px){
      .productGrid{ grid-template-columns: 1fr; }
    }

    /* Main media: responsive aspect-ratio + max height 500px */
    .mainMedia{
      position:relative;
      border: 1px solid rgba(28,27,27,.10);
      background: rgba(247,239,232,.75);
      box-shadow: var(--shadow3);
      overflow:hidden;
      cursor: zoom-in;
      aspect-ratio: 4 / 5;                 /* ✅ smooth responsiveness */
      max-height: 500px;                   /* ✅ not more than 500px */
      width: 100%;
      display:grid;
      place-items:center;
    }
    @media (max-width: 640px){
      .mainMedia{ aspect-ratio: 3 / 4; max-height: 460px; }
    }
    .mainMediaInner{
      width:100%;
      height:100%;
      position:relative;
    }
    .mainMedia img,
    .mainMedia video{
      width:100%;
      height:100%;
      object-fit: cover;
      display:block;
      user-select:none;
      -webkit-user-drag:none;
    }

    /* Magnifier zoom uses container background */
    .mainMedia.zoomable .mainMediaInner{
      background-repeat:no-repeat;
      background-position: 50% 50%;
      background-size: 200%;
    }
    .mainMedia.zoomable img{ opacity:0; } /* zoom shown via background */
    .zoomHint{
      position:absolute;
      left: 12px;
      bottom: 12px;
      background: rgba(247,239,232,.85);
      border: 1px solid rgba(28,27,27,.14);
      box-shadow: var(--shadow3);
      padding: 8px 10px;
      display:flex;
      align-items:center;
      gap: 10px;
      font-size: 11px;
      letter-spacing:.12em;
      text-transform:uppercase;
      color: rgba(28,27,27,.75);
      pointer-events:none;
      z-index:2;
    }
    .zoomHint i{ color: var(--soft-gold); }

    /* Thumbs: more responsive sizes */
    .thumbRow{
      margin-top: 12px;
      border: 1px solid rgba(28,27,27,.10);
      background: rgba(247,239,232,.55);
      box-shadow: var(--shadow3);
      padding: 10px;
      overflow:hidden;
    }
    .thumbSwiper .swiper-slide{
      max-width:140px !important;
      height: 140px !important;
      border-radius: 0;
      border: 1px solid rgba(28,27,27,.12);
      overflow:hidden;
      cursor:pointer;
      background: rgba(247,239,232,.70);
      position:relative;
    }
    @media (max-width: 640px){
      .thumbSwiper .swiper-slide{ max-width: 110px !important; height: 110px !important; }
    }
    .thumbSwiper img,
    .thumbSwiper video{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }
    .thumbActive{
      outline: 2px solid rgba(200,169,122,.9);
      outline-offset: 2px;
    }

    .playIcon{
      position:absolute;
      inset:0;
      display:grid;
      place-items:center;
      pointer-events:none;
    }
    .playIcon i{
      width: 52px;
      height: 52px;
      display:grid;
      place-items:center;
      border: 1px solid rgba(255,255,255,.55);
      background: rgba(0,0,0,.35);
      color:#fff;
      font-size: 16px;
      animation: pulse 1.5s infinite;
    }
    @keyframes pulse{
      0%{ transform: scale(1); opacity:.75; }
      50%{ transform: scale(1.06); opacity:1; }
      100%{ transform: scale(1); opacity:.75; }
    }

    .swiper-button-prev, .swiper-button-next{
      color: rgba(28,27,27,.78);
      width: 40px;
      height: 40px;
      background: rgba(247,239,232,.78);
      border: 1px solid rgba(28,27,27,.18);
      box-shadow: var(--shadow3);
      border-radius: 0;
    }
    .swiper-button-prev::after, .swiper-button-next::after{ font-size: 16px; }

    /* Product info */
    .productInfo{
      background: rgba(247,239,232,.58);
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow3);
      padding: 16px;
    }
    .productInfo h1{
      margin:0 0 8px;
      font-family:"Playfair Display", serif;
      text-transform:uppercase;
      letter-spacing:.04em;
      font-size: clamp(22px, 2.6vw, 32px);
      line-height:1.1;
    }
    .productInfo p{
      margin:0 0 12px;
      color: rgba(28,27,27,.78);
      line-height:1.7;
      font-size: 14px;
    }
    .priceRow{
      display:flex;
      align-items:baseline;
      justify-content:space-between;
      gap: 10px;
      flex-wrap:wrap;
      margin: 10px 0 10px;
    }
    .price{
      font-size: 22px;
      font-weight: 600;
      letter-spacing:.02em;
    }
    .stock{
      font-size: 12px;
      letter-spacing:.14em;
      text-transform:uppercase;
      color: #1a7f37;
      display:flex;
      align-items:center;
      gap: 8px;
    }
    .stock i{ color: #1a7f37; }

    .optionLabel{
      font-size: 12px;
      letter-spacing:.16em;
      text-transform:uppercase;
      color: rgba(28,27,27,.75);
      margin: 14px 0 8px;
    }
    .optionSelect{
      width:100%;
      padding: 12px;
      border-radius: 0;
      border: 1px solid rgba(28,27,27,.18);
      background: rgba(247,239,232,.85);
      box-shadow: var(--shadow3);
      outline:none;
      font-family: inherit;
    }

    .stackBtns{
      display:flex;
      flex-direction:column;
      gap: 10px;
      margin-top: 16px;
    }
    .stackBtns .btn{ width:100%; }

    /* Tabs */
    .tabsWrap{
      margin-top: 18px;
      background: rgba(247,239,232,.58);
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow3);
      overflow:hidden;
    }
    .tabNav{
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
      padding: 12px;
      border-bottom: 1px solid rgba(28,27,27,.10);
      background: rgba(247,239,232,.72);
    }
    .tabBtn{
      border-radius: 0;
      border: 1px solid rgba(28,27,27,.14);
      background: rgba(247,239,232,.70);
      box-shadow: var(--shadow3);
      padding: 10px 12px;
      cursor:pointer;
      letter-spacing:.12em;
      text-transform:uppercase;
      font-size: 12px;
      display:flex;
      align-items:center;
      gap: 10px;
      transition: transform .18s var(--ease), background .18s var(--ease);
      user-select:none;
    }
    .tabBtn:hover{ transform: translateY(-1px); background: rgba(231,211,201,.55); }
    .tabBtn.active{
      background: var(--soft-gold);
      border-color: rgba(28,27,27,.22);
    }
    .tabPanel{
      display:none;
      padding: 16px;
      line-height:1.75;
      color: rgba(28,27,27,.78);
      font-size: 14px;
    }
    .tabPanel.active{ display:block; }

    .embedWrap{
      border: 1px solid rgba(28,27,27,.12);
      background: rgba(247,239,232,.78);
      box-shadow: var(--shadow3);
      overflow:hidden;
    }
    .embed{
      width:100%;
      aspect-ratio: 16 / 9;
      border:0;
      display:block;
      background:#000;
    }
    .embedNote{
      padding: 12px;
      font-size: 12px;
      letter-spacing:.06em;
      color: rgba(28,27,27,.75);
      display:flex;
      gap: 10px;
      align-items:flex-start;
    }
    .embedNote i{ color: var(--soft-gold); margin-top:2px; }

    /* NEW: Store Features section */
    .section{
      padding: clamp(34px, 5vw, 70px) 0;
    }
    .secHead{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap: 16px;
      flex-wrap:wrap;
      margin-bottom: 14px;
    }
    .kicker{
      letter-spacing:.22em;
      text-transform:uppercase;
      font-size:12px;
      color: rgba(28,27,27,.70);
      margin:0 0 10px;
    }
    .h2{
      font-family:"Playfair Display", serif;
      letter-spacing:.03em;
      text-transform:uppercase;
      margin:0;
      font-size: clamp(22px, 3.4vw, 40px);
      line-height:1.08;
    }
    .muted{
      color: rgba(28,27,27,.74);
      line-height:1.75;
      margin:0;
      font-size: 14px;
      max-width: 70ch;
    }

    .featureGrid{
      display:grid;
      grid-template-columns: repeat(4, minmax(0,1fr));
      gap: 12px;
      margin-top: 16px;
    }
    @media (max-width: 980px){
      .featureGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
    }
    @media (max-width: 520px){
      .featureGrid{ grid-template-columns: 1fr; }
    }
    .featureCard{
      background: linear-gradient(180deg, var(--glass), var(--glass2));
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow3);
      padding: 16px;
      transition: transform .18s var(--ease), box-shadow .18s var(--ease);
    }
    .featureCard:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); }
    .featureIcon{
      width: 46px;
      height: 46px;
      display:grid;
      place-items:center;
      border: 1px solid rgba(28,27,27,.14);
      background: rgba(231,211,201,.45);
      box-shadow: var(--shadow3);
      margin-bottom: 10px;
    }
    .featureIcon i{ color: var(--soft-gold); }
    .featureTitle{
      margin:0 0 6px;
      font-family:"Playfair Display", serif;
      letter-spacing:.04em;
      text-transform:uppercase;
      font-size: 14px;
    }
    .featureText{
      margin:0;
      font-size: 13px;
      color: rgba(28,27,27,.74);
      line-height:1.7;
    }

    /* NEW: Newsletter redesigned (best practice) */
    .newsletter{
      background: rgba(247,239,232,.72);
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow2);
      overflow:hidden;
    }
    .newsletterInner{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 14px;
      padding: 18px;
      align-items:center;
    }
    @media (max-width: 980px){
      .newsletterInner{ grid-template-columns: 1fr; }
    }
    
    .newsBadge{
      width: 54px;
      height: 54px;
      display:grid;
      place-items:center;
      border: 1px solid rgba(28,27,27,.14);
      background: rgba(231,211,201,.45);
      box-shadow: var(--shadow3);
      flex: 0 0 auto;
    }
    .newsBadge i{ color: var(--soft-gold); font-size: 18px; }
    .newsTitle{
      margin:0 0 6px;
      font-family:"Playfair Display", serif;
      text-transform:uppercase;
      letter-spacing:.04em;
      font-size: 18px;
    }
    .newsText{
      margin:0;
      font-size: 13px;
      color: rgba(28,27,27,.74);
      line-height:1.7;
      max-width: 70ch;
    }
    .newsForm{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
      justify-content:flex-end;
      align-items:center;
    }
    .newsInput{
      flex: 1 1 220px;
      min-width: 180px;
      padding: 12px;
      border: 1px solid rgba(28,27,27,.18);
      background: rgba(247,239,232,.85);
      box-shadow: var(--shadow3);
      border-radius: 0;
      outline:none;
      font-family: inherit;
      font-size: 14px;
    }
    .newsInput:focus{ border-color: rgba(200,169,122,.85); }

    .newsSmall{
      margin-top: 10px;
      font-size: 12px;
      color: rgba(28,27,27,.62);
      letter-spacing:.06em;
    }

    @media (prefers-reduced-motion: reduce){
      .reveal, .btn, .iconBtn, .drawer, .drawerOverlay, .tabBtn, .featureCard{ transition:none !important; }
    }
    
    
    
    
    /* ============================================================
       ✅ EXTRA STYLES FOR NEW COMPONENTS (MATCH LOOK & FEEL)
       ============================================================ */
    .optBlock{ margin-top: 14px; }
    .optTopRow{
      display:flex; align-items:baseline; justify-content:space-between;
      gap: 10px; flex-wrap:wrap;
      margin: 14px 0 8px;
    }
    .optTopRow .optionLabel{ margin:0; }
    .optSelected{
      font-size: 12px;
      letter-spacing:.10em;
      text-transform:uppercase;
      color: rgba(28,27,27,.72);
      padding-left: 8px;
      border-left: 1px solid rgba(28,27,27,.12);
      margin-left: 8px;
    }

    /* Rectangular checkbox/radio chips */
    .chips{ display:flex; flex-wrap:wrap; gap: 10px; }
    .chip{
      position:relative;
      border-radius: 0;
      border: 1px solid rgba(28,27,27,.18);
      background: rgba(247,239,232,.85);
      box-shadow: var(--shadow3);
      padding: 12px 12px;
      min-width: 120px;
      display:flex;
      align-items:center;
      justify-content:center;
      text-align:center;
      cursor:pointer;
      user-select:none;
      transition: transform .18s var(--ease), background .18s var(--ease), box-shadow .18s var(--ease);
      font-size: 12px;
      letter-spacing:.12em;
      text-transform:uppercase;
      color: rgba(28,27,27,.82);
    }
    .chip:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); background: rgba(231,211,201,.55); }
    .chip input{ position:absolute; opacity:0; pointer-events:none; }
    .chipActive{
      background: rgba(200,169,122,.26);
      border-color: rgba(28,27,27,.22);
    }

    /* Hover hint */
    .chipHint{
      position:absolute;
      left: 50%;
      bottom: calc(100% + 8px);
      transform: translateX(-50%);
      background: rgba(28,27,27,.86);
      color: rgba(247,239,232,.95);
      border: 1px solid rgba(247,239,232,.18);
      box-shadow: var(--shadow3);
      padding: 8px 10px;
      font-size: 11px;
      letter-spacing:.10em;
      text-transform:uppercase;
      white-space:nowrap;
      opacity:0;
      pointer-events:none;
      transition: opacity .15s var(--ease);
      z-index: 5;
    }
    .chip:hover .chipHint{ opacity:1; }

    /* Disabled + diagonal cut */
    .chipDisabled{
      opacity:.45;
      cursor:not-allowed;
      filter: grayscale(.15);
    }
    .chipDisabled:hover{ transform:none; box-shadow: var(--shadow3); background: rgba(247,239,232,.85); }
    .chipDisabled::after{
      content:"";
      position:absolute;
      inset:-2px;
      background: linear-gradient(135deg, transparent 49%, rgba(28,27,27,.45) 50%, transparent 51%);
      pointer-events:none;
    }

    /* Color swatches */
    .swatches{ display:flex; flex-wrap:wrap; gap: 10px; }
    .swatch{
      width: 46px;
      height: 46px;
      border-radius: 999px;
      border: 1px solid rgba(28,27,27,.20);
      background: rgba(247,239,232,.85);
      box-shadow: var(--shadow3);
      cursor:pointer;
      position:relative;
      overflow:hidden;
      transition: transform .18s var(--ease), box-shadow .18s var(--ease);
      background-size:cover;
      background-position:center;
    }
    .swatch:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); }
    .swatch input{ position:absolute; opacity:0; pointer-events:none; }
    .swatchActive{
      outline: 2px solid rgba(200,169,122,.9);
      outline-offset: 2px;
    }
    .swatchHint{
      position:absolute;
      left: 50%;
      bottom: calc(100% + 10px);
      transform: translateX(-50%);
      background: rgba(28,27,27,.86);
      color: rgba(247,239,232,.95);
      border: 1px solid rgba(247,239,232,.18);
      box-shadow: var(--shadow3);
      padding: 8px 10px;
      font-size: 11px;
      letter-spacing:.10em;
      text-transform:uppercase;
      white-space:nowrap;
      opacity:0;
      pointer-events:none;
      transition: opacity .15s var(--ease);
      z-index: 5;
    }
    .swatch:hover .swatchHint{ opacity:1; }
    .swatchDisabled{
      opacity:.45;
      cursor:not-allowed;
      filter: grayscale(.15);
    }
    .swatchDisabled:hover{ transform:none; box-shadow: var(--shadow3); }
    .swatchDisabled::after{
      content:"";
      position:absolute;
      inset:-2px;
      background: linear-gradient(135deg, transparent 49%, rgba(28,27,27,.45) 50%, transparent 51%);
      pointer-events:none;
    }

    /* Insurance + Quantity (styled like your theme) */
    .insuranceRow{
      margin-top: 14px;
      background: rgba(247,239,232,.58);
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow3);
      padding: 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 10px;
      flex-wrap:wrap;
    }
    .insLeft{ display:flex; align-items:center; gap: 10px; }
    .insLeft label{
      font-size: 12px;
      letter-spacing:.16em;
      text-transform:uppercase;
      color: rgba(28,27,27,.78);
      cursor:pointer;
      user-select:none;
    }
    .insFee{
      font-size: 12px;
      letter-spacing:.14em;
      text-transform:uppercase;
      color: rgba(28,27,27,.78);
    }

    .qtyRow{
      margin-top: 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      flex-wrap:wrap;
    }
    .qtyControl{
      display:flex;
      align-items:center;
      gap: 10px;
      border: 1px solid rgba(28,27,27,.10);
      background: rgba(247,239,232,.58);
      box-shadow: var(--shadow3);
      padding: 10px;
    }
    .qtyBtn{
      width: 46px;
      height: 46px;
      border-radius: 0;
      border: 1px solid rgba(28,27,27,.18);
      background: rgba(247,239,232,.85);
      display:grid;
      place-items:center;
      cursor:pointer;
      transition: transform .18s var(--ease), background .18s var(--ease);
      user-select:none;
    }
    .qtyBtn:hover{ transform: translateY(-1px); background: rgba(231,211,201,.55); }
    .qtyBtn:active{ transform: translateY(0px) scale(.99); }
    .qtyInput{
      width: 82px;
      height: 46px;
      border-radius: 0;
      border: 1px solid rgba(28,27,27,.18);
      background: rgba(247,239,232,.85);
      box-shadow: var(--shadow3);
      text-align:center;
      font-size: 14px;
      outline:none;
      font-family: inherit;
    }

    .btn[disabled], .btn.isDisabled{
      opacity:.55;
      cursor:not-allowed;
      pointer-events:none;
      filter: grayscale(.08);
      box-shadow: var(--shadow3);
    }
    
    
    /* ============================================================
       HERO (IMAGE) — BEHAVES LIKE VIDEO HERO
    ============================================================ */
    .hero{
      position:relative;
      min-height: 78vh;
      display:grid;
      align-items:center;
      overflow:hidden;
      border-bottom: 1px solid rgba(247,239,232,.10);
    }

    .heroImg{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
      object-fit:cover;
      transform: scale(1.02);
      filter: contrast(1.02) saturate(1.02);
    }

    /* dark + luxury gold tint overlay */
    .heroOverlay{
      position:absolute;
      inset:0;
      background:
        radial-gradient(900px 500px at 50% 30%, rgba(0,0,0,.35), rgba(0,0,0,.65)),
        linear-gradient(135deg, rgba(200,169,122,.20), rgba(0,0,0,.55));
    }

    .heroInner{
      position:relative;
      z-index:2;
      padding: clamp(42px, 6vw, 84px) 0;
    }

    .heroCard{
      width: min(900px, 100%);
      background: rgba(247,239,232,.10);
      border: 1px solid rgba(247,239,232,.22);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: clamp(18px, 3.2vw, 34px);
      box-shadow: 0 22px 70px rgba(0,0,0,.35);
    }

    .heroTitle{
      margin: 0 0 10px;
      font-family:"Playfair Display", serif;
      text-transform: uppercase;
      letter-spacing:.05em;
      color: #fff;
      font-size: clamp(30px, 5vw, 58px);
      line-height:1.04;
    }
    .heroText{
      color: rgba(255,255,255,.85);
      max-width: 70ch;
      margin-bottom: 18px;
      font-size: clamp(13px, 1.8vw, 16px);
      line-height:1.75;
    }
    .heroBtns{
      display:flex;
      gap: 10px;
      flex-wrap:wrap;
    }

    @media (max-width: 640px){
      .hero{ min-height: 90vh; }
      .heroCard{ width: 100%; }
    }

    /* ============================================================
       ABOUT INTRO
    ============================================================ */
    .aboutGrid{
      display:grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 16px;
      align-items:stretch;
    }

    .panel{
      background: linear-gradient(180deg, var(--glass), var(--glass2));
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow2);
      padding: clamp(16px, 2.6vw, 26px);
      position:relative;
      overflow:hidden;
    }
    .panel::after{
      content:"";
      position:absolute;
      inset:-1px;
      background:
        radial-gradient(220px 220px at 0% 0%, rgba(200,169,122,.14), transparent 55%),
        radial-gradient(220px 220px at 100% 100%, rgba(231,211,201,.18), transparent 58%);
      pointer-events:none;
    }
    .panel > *{ position:relative; z-index:1; }

    .list{
      margin-top: 14px;
      display:grid;
      gap: 10px;
    }
    .li{
      display:flex;
      gap: 12px;
      align-items:flex-start;
      padding: 12px;
      background: rgba(247,239,232,.65);
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow3);
    }
    .li .ico{
      width: 44px;
      height: 44px;
      display:grid;
      place-items:center;
      background: rgba(231,211,201,.38);
      border: 1px solid rgba(28,27,27,.14);
      box-shadow: var(--shadow3);
      flex: 0 0 auto;
    }
    .li .ico i{ color: var(--soft-gold); }
    .li h3{
      margin: 0 0 4px;
      font-family:"Playfair Display", serif;
      letter-spacing:.04em;
      text-transform:uppercase;
      font-size: 16px;
      line-height:1.2;
    }
    .li p{ font-size: 13px; }

    .aboutImg{
      width:100%;
      height:100%;
      min-height: 420px;
      object-fit:cover;
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow2);
    }

    @media (max-width: 980px){
      .aboutGrid{ grid-template-columns: 1fr; }
      .aboutImg{ min-height: 320px; }
    }

    /* ============================================================
       MISSION / VISION
    ============================================================ */
    .mvGrid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0,1fr));
      gap: 16px;
      margin-top: 18px;
    }
    .mvCard{
      background: linear-gradient(180deg, var(--glass), var(--glass2));
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow2);
      padding: clamp(16px, 2.6vw, 26px);
      position:relative;
      overflow:hidden;
    }
    .mvCard::before{
      content:"";
      position:absolute;
      width: 220px;
      height: 220px;
      right:-110px;
      top:-110px;
      background: rgba(200,169,122,.12);
      border: 1px solid rgba(200,169,122,.30);
      pointer-events:none;
    }
    .mvTop{
      display:flex;
      gap: 12px;
      align-items:center;
      margin-bottom: 10px;
    }
    .mvIcon{
      width: 54px;
      height: 54px;
      display:grid;
      place-items:center;
      background: rgba(231,211,201,.38);
      border: 1px solid rgba(28,27,27,.14);
      box-shadow: var(--shadow3);
      flex: 0 0 auto;
    }
    .mvIcon i{ color: var(--soft-gold); font-size: 18px; }
    .mvCard h3{
      margin:0;
      font-family:"Playfair Display", serif;
      letter-spacing:.04em;
      text-transform:uppercase;
      font-size: 18px;
    }
    .mvCard p{ position:relative; z-index:1; }

    @media (max-width: 860px){
      .mvGrid{ grid-template-columns: 1fr; }
    }

    /* ============================================================
       WHY CHOOSE US
    ============================================================ */
    .whyGrid{
      display:grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 18px;
    }
    .whyCard{
      background: linear-gradient(180deg, var(--glass), var(--glass2));
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow2);
      padding: 18px;
      transition: transform .22s var(--ease), box-shadow .22s var(--ease);
      position:relative;
      overflow:hidden;
    }
    .whyCard:hover{
      transform: translateY(-2px);
      box-shadow: var(--shadow);
    }
    .whyCard .topRow{
      display:flex;
      align-items:center;
      gap: 12px;
      margin-bottom: 10px;
    }
    .whyCard .miniIcon{
      width: 48px;
      height: 48px;
      display:grid;
      place-items:center;
      background: rgba(231,211,201,.38);
      border: 1px solid rgba(28,27,27,.14);
      box-shadow: var(--shadow3);
      flex: 0 0 auto;
    }
    .whyCard .miniIcon i{ color: var(--soft-gold); }
    .whyCard h4{
      margin:0;
      font-family:"Playfair Display", serif;
      text-transform:uppercase;
      letter-spacing:.04em;
      font-size: 16px;
      line-height:1.2;
    }
    .whyCard p{ font-size: 13px; }

    @media (max-width: 980px){
      .whyGrid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
    }
    @media (max-width: 640px){
      .whyGrid{ grid-template-columns: 1fr; }
    }

    /* ============================================================
       TESTIMONIALS (SWIPER)
    ============================================================ */
    .testWrap{
      background: rgba(247,239,232,.68);
      border: 1px solid rgba(28,27,27,.10);
      box-shadow: var(--shadow2);
      padding: clamp(16px, 2.6vw, 26px);
      position:relative;
      overflow:hidden;
    }

    .testWrap::before,
    .testWrap::after{
      content:"";
      position:absolute;
      width: 260px;
      height: 260px;
      border: 1px solid rgba(200,169,122,.30);
      background: rgba(200,169,122,.10);
      pointer-events:none;
    }
    .testWrap::before{ top:-130px; left:-130px; }
    .testWrap::after{ bottom:-130px; right:-130px; }

    .swiper{ position:relative; z-index:1; }
    .tCard{
      background: rgba(247,239,232,.78);
      border: 1px solid rgba(28,27,27,.12);
      box-shadow: var(--shadow3);
      padding: 18px;
      height: 100%;
    }
    .tTop{
      display:flex;
      align-items:center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .avatar{
      width: 54px;
      height: 54px;
      object-fit:cover;
      border-radius: 0;
      border: 1px solid rgba(28,27,27,.14);
      box-shadow: var(--shadow3);
      background: rgba(231,211,201,.25);
    }
    .tName{
      margin:0;
      font-weight:600;
      letter-spacing:.10em;
      text-transform:uppercase;
      font-size: 12px;
      color: rgba(28,27,27,.85);
    }
    .tRole{
      margin-top: 4px;
      font-size: 12px;
      color: rgba(28,27,27,.68);
      letter-spacing:.06em;
    }
    .stars{
      margin-left:auto;
      color: var(--soft-gold);
      font-size: 12px;
      letter-spacing:2px;
      white-space:nowrap;
    }
    .quote{
      margin:0;
      font-size: 13px;
      color: rgba(28,27,27,.78);
      line-height:1.75;
    }

    .swiperNav{
      display:flex;
      gap: 10px;
      justify-content:flex-end;
      margin-top: 12px;
      position:relative;
      z-index:1;
      flex-wrap:wrap;
    }
    .swBtn{
      width: 46px;
      height: 46px;
      border-radius: 0;
      border: 1px solid rgba(28,27,27,.20);
      background: rgba(247,239,232,.85);
      box-shadow: var(--shadow3);
      display:grid;
      place-items:center;
      cursor:pointer;
      transition: transform .18s var(--ease), background .18s var(--ease);
      user-select:none;
    }
    .swBtn:hover{ transform: translateY(-1px); background: rgba(231,211,201,.55); }
    .swBtn i{ color: rgba(28,27,27,.80); }

    .swiper-pagination{
      position: static !important;
      width: auto !important;
      display:flex;
      gap: 8px;
      align-items:center;
      justify-content:flex-start;
      margin-top: 12px;
    }
    .swiper-pagination-bullet{
      width: 10px;
      height: 10px;
      border-radius: 0;
      background: rgba(28,27,27,.25);
      opacity: 1;
      border: 1px solid rgba(28,27,27,.20);
    }
    .swiper-pagination-bullet-active{
      background: rgba(200,169,122,.9);
      border-color: rgba(200,169,122,.9);
    }
    .mainMediaInner{
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
}
    
    

  /**********************cart drawer*************/
  .cartWrap{
  position:relative;
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border:1px solid rgba(28,27,27,.20);
  background: rgba(247,239,232,.75);
  cursor:pointer;
  box-shadow: var(--shadow3);
}

.cartWrap i{
  font-size:16px;
  color: rgba(28,27,27,.8);
}

.cart_count{
  position:absolute;
  top:-6px;
  right:-6px;
  background: var(--soft-gold);
  color:#000;
  font-size:10px;
  font-weight:600;
  padding:4px 6px;
  min-width:18px;
  text-align:center;
}



.cartOverlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.5);
  opacity:0;
  pointer-events:none;
  transition:.3s;
  z-index:90;
}

.cartOverlay.show{
  opacity:1;
  pointer-events:auto;
}

.cartDrawer{
  position:fixed;
  right:0;
  top:0;
  height:100%;
  width:min(380px, 95%);
  background: rgba(247,239,232,.95);
  box-shadow: var(--shadow);
  transform:translateX(100%);
  transition:.35s;
  z-index:100;
  display:flex;
  flex-direction:column;
}

.cartDrawer.show{
  transform:translateX(0);
}

.cartHeader{
  display:flex;
  justify-content:space-between;
  padding:14px;
  border-bottom:1px solid rgba(0,0,0,.1);
}

.cartBody{
  flex:1;
  overflow:auto;
  padding:12px;
}

.cartFooter{
  padding:14px;
  border-top:1px solid rgba(0,0,0,.1);
}

.cartItem{
  display:flex;
  gap:10px;
  margin-bottom:12px;
  border-bottom:1px solid rgba(0,0,0,.08);
  padding-bottom:10px;
}

.cartItem img{
  width:70px;
  height:70px;
  object-fit:cover;
}

.cartInfo{
  flex:1;
  font-size:12px;
}

.cartOptions{
  font-size:11px;
  color:rgba(0,0,0,.7);
}

.cartRemove{
  cursor:pointer;
  color:#b42318;
}
.cartDrawer{
  position:fixed;
  top:0;
  right:0;
  width:min(420px, 100%);
  height:100%;
  background: rgba(247,239,232,.95);
  backdrop-filter: blur(10px);
  box-shadow: -10px 0 40px rgba(0,0,0,.2);
  transform: translateX(100%);
  transition:.35s ease;
  z-index:100;
  display:flex;
  flex-direction:column;
}

.cartDrawer.show{ transform: translateX(0); }

/* Overlay */
.cartOverlay{
  position:fixed;
  inset:0;
  background: rgba(0,0,0,.5);
  opacity:0;
  pointer-events:none;
  transition:.3s;
  z-index:90;
}
.cartOverlay.show{
  opacity:1;
  pointer-events:auto;
}

/* Header */
.cartHeader{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px;
  border-bottom:1px solid rgba(0,0,0,.1);
}
.cartHeader h3{
  font-family:"Playfair Display";
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* Body */
.cartBody{
  flex:1;
  overflow:auto;
  padding:14px;
}

/* Item */
.cartItem{
  display:flex;
  gap:12px;
  margin-bottom:14px;
  border-bottom:1px solid rgba(0,0,0,.08);
  padding-bottom:12px;
}
.cartItem img{
  width:80px;
  height:90px;
  object-fit:cover;
}
.cartItemInfo{
  flex:1;
}
.cartItemName{
  font-size:13px;
  text-transform:uppercase;
}
.cartItemOptions{
  font-size:11px;
  color:#555;
  margin:6px 0;
}
.cartItemPrice{
  font-weight:600;
}

/* Remove */
.removeItem{
  cursor:pointer;
  color:#b42318;
}

/* Footer */
.cartFooter{
  padding:16px;
  border-top:1px solid rgba(0,0,0,.1);
}
.cartTotalRow{
  display:flex;
  justify-content:space-between;
  margin-bottom:12px;
}
.checkoutBtn{
  width:100%;
}

/* Empty */
.cartEmpty{
  height:100%;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  gap:10px;
}
.cartEmpty i{
  font-size:40px;
  animation: bounce 1.5s infinite;
}
@keyframes bounce{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}
.cartItemQty{
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(28,27,27,.65);
  margin-top: 6px;
}
/* GRID */
.checkoutGrid{
  display:grid;
  grid-template-columns: 70% 30%;
  gap:20px;
  margin-top:30px;
}

@media(max-width:900px){
  .checkoutGrid{
    grid-template-columns:1fr;
  }
}

/* FORM CARD */
.card{
  background:var(--glass);
  border:1px solid rgba(0,0,0,.1);
  box-shadow:var(--shadow);
  padding:20px;
}

/* HEADINGS */
.h2{
  font-family:"Playfair Display", serif;
  text-transform:uppercase;
  font-size:22px;
  margin-bottom:14px;
}

/* INPUTS */
.input{
  width:100%;
  padding:12px;
  border:1px solid rgba(0,0,0,.2);
  background:#fff;
  outline:none;
  font-family:inherit;
}

.row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-bottom:12px;
}

@media(max-width:600px){
  .row{
    grid-template-columns:1fr;
  }
}

.field{
  margin-bottom:12px;
}

/* TEXTAREA */
textarea{
  min-height:100px;
  resize:none;
}

/* SUMMARY */
.summaryRow{
  display:flex;
  justify-content:space-between;
  margin-bottom:10px;
  font-size:14px;
}

.total{
  font-weight:600;
  font-size:16px;
  border-top:1px solid rgba(0,0,0,.1);
  padding-top:10px;
}
