
    :root{
      --gold1:#f2b21b;
      --gold2:#c88400;
      --blue1:#6f86ff;
      --blue2:#4f67f2;
      --panel-bg:#fbfbff;
      --panel-border:#d9def7;
      --panel-text:#7680a8;
    }




    /* ===== CLEAN ACCESSIBILITY PANEL ===== */
    .a11y-fab{
      position:fixed !important;
      right:0 !important;
      left:auto !important;
      bottom:24px !important;
      width:58px !important;
      height:58px !important;
      background:#050505 !important;
      border:1.5px solid #d4af37 !important;
      border-right:none !important;
      border-radius:16px 0 0 16px !important;
      display:flex !important;
      align-items:center !important;
      justify-content:center !important;
      cursor:pointer !important;
      font-size:28px !important;
      font-weight:900 !important;
      color:#d4af37 !important;
      z-index:100000000 !important;
      box-shadow:0 0 18px rgba(212,175,55,.28) !important;
      pointer-events:auto !important;
      -webkit-appearance:none;
      appearance:none;
    }


    .a11y-fab i{
      color:#d4af37 !important;
      font-size:28px !important;
      line-height:1 !important;
    }


    .a11y-fab:hover{transform:translateY(-2px);}


    .a11y-backdrop{
      position:fixed;
      inset:0;
      background:transparent !important;
      backdrop-filter:none !important;
      -webkit-backdrop-filter:none !important;
      z-index:2147483644;
      opacity:0;
      pointer-events:none;
      transition:opacity .22s ease;
    }


    .a11y-backdrop.open{
      opacity:1;
      pointer-events:auto;
    }


    .a11y-panel{
      position:fixed;
      top:0;
      left:auto;
      right:0;
      height:100vh;
      width:min(420px, 92vw);
      background:var(--panel-bg);
      color:#1d2340;
      z-index:2147483646;
      transform:translateX(100%);
      transition:transform .28s ease;
      box-shadow:20px 0 60px rgba(0,0,0,.28);
      display:flex;
      flex-direction:column;
      overflow:auto;
    }


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


    .a11y-header{
      position:sticky;
      top:0;
      z-index:3;
      background:linear-gradient(135deg,var(--blue1),var(--blue2));
      color:#fff;
      padding:18px 18px;
      display:flex;
      align-items:center;
      justify-content:space-between;
    }


    .a11y-title{
      font-size:1.7rem;
      font-weight:800;
    }


    .a11y-close{
      border:none;
      background:transparent;
      color:#fff;
      font-size:30px;
      line-height:1;
      cursor:pointer;
    }


    .a11y-body{
      padding:16px 16px 22px;
      text-align:right;
    }


    .a11y-grid{
      display:grid;
      grid-template-columns:repeat(3,1fr);
      gap:14px;
      margin-bottom:18px;
    }


    .a11y-card{
      border:1px solid #cfd6fb;
      background:#fff;
      color:var(--panel-text);
      border-radius:22px;
      min-height:120px;
      padding:14px 10px;
      cursor:pointer;
      display:flex;
      flex-direction:column;
      align-items:center;
      justify-content:center;
      gap:10px;
      font-size:1rem;
      font-weight:700;
      transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
      box-shadow:0 8px 18px rgba(69,87,195,0.04);
    }


    .a11y-card:hover{
      transform:translateY(-2px);
      box-shadow:0 10px 20px rgba(69,87,195,0.10);
    }


    .a11y-card.active{
      background:#eef2ff;
      border-color:#99a9ff;
      color:#4f67f2;
    }


    .a11y-icon{
      width:48px;
      height:48px;
      border-radius:16px;
      display:flex;
      align-items:center;
      justify-content:center;
      font-size:28px;
      color:#7a84d1;
    }


    .a11y-label{
      line-height:1.3;
      font-size:0.96rem;
    }


    .a11y-section-title{
      font-size:1.25rem;
      color:#7a84d1;
      font-weight:800;
      text-align:center;
      margin:14px 0 10px;
    }


    .a11y-slider-wrap{margin-bottom:26px;}


    .a11y-slider-row{
      display:grid;
      grid-template-columns:54px 1fr 54px;
      align-items:center;
      gap:12px;
      margin-top:10px;
    }


    .a11y-circle-btn{
      width:54px;
      height:54px;
      border-radius:999px;
      border:1px solid #cfd6fb;
      background:#fff;
      color:#7a84d1;
      font-size:34px;
      cursor:pointer;
      line-height:1;
    }


    .a11y-bar-wrap{
      display:flex;
      flex-direction:column;
      align-items:center;
      gap:10px;
    }


    .a11y-value{
      min-width:70px;
      padding:8px 14px;
      border-radius:999px;
      border:1px solid #cfd6fb;
      background:#fff;
      color:#7a84d1;
      font-weight:700;
      font-size:1rem;
    }


    .a11y-bar{
      width:100%;
      height:12px;
      border-radius:999px;
      background:linear-gradient(90deg,#9f6bff,#5d7cff);
      position:relative;
      overflow:hidden;
    }


    .a11y-footer-note{
      color:#9aa1c0;
      font-size:.92rem;
      text-align:center;
      margin-top:8px;
    }


    @media (max-width:700px){
      .a11y-panel{
        top:12px;
        right:8px;
        width:min(340px,80vw);
        height:auto;
        max-height:calc(100vh - 24px);
        border-radius:20px;
      }


      .a11y-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
      }


      .a11y-card{
        min-height:108px;
        font-size:.9rem;
      }


      .a11y-icon{
        width:42px;
        height:42px;
        font-size:24px;
      }


      .a11y-title{font-size:1.45rem;}


      .a11y-slider-row{
        grid-template-columns:48px 1fr 48px;
        gap:10px;
      }


      .a11y-circle-btn{
        width:48px;
        height:48px;
        font-size:30px;
      }
}


    body.a11y-dark-mode{
      background:linear-gradient(180deg,#111 0%,#090909 42%,#000 100%) !important;
      color:#fff !important;
    }


    body.a11y-bold-text,
    body.a11y-bold-text p,
    body.a11y-bold-text div,
    body.a11y-bold-text span,
    body.a11y-bold-text a,
    body.a11y-bold-text button,
    body.a11y-bold-text h1,
    body.a11y-bold-text h2,
    body.a11y-bold-text h3{
      font-weight:800 !important;
    }


    body.a11y-high-contrast{
      background:#000 !important;
      color:#fff !important;
    }


    body.a11y-high-contrast .gallery-card{
      border-color:#fff;
      background:#000;
    }


    body.a11y-high-contrast .btn,
    body.a11y-high-contrast .buy-now-btn,
    body.a11y-high-contrast .product-details-btn{
      background:#ffd54a !important;
      color:#000 !important;
      box-shadow:none !important;
      border:2px solid #fff !important;
    }


    body.a11y-highlight-links a{
      text-decoration:underline !important;
      text-decoration-thickness:3px !important;
      text-underline-offset:3px !important;
      box-shadow:0 0 0 3px rgba(255,215,0,.15);
    }


    body.a11y-readable-text{
      letter-spacing:.02em;
      word-spacing:.05em;
      line-height:2 !important;
    }


    body.a11y-readable-text p,
    body.a11y-readable-text .intro-section p,
    body.a11y-readable-text .email-text,
    body.a11y-readable-text .site-footer,
    body.a11y-readable-text .product-desc{
      line-height:2 !important;
    }


    body.a11y-grayscale .container{
      filter:grayscale(100%) !important;
    }


    body.a11y-blackwhite .container{
      filter:grayscale(100%) contrast(140%) brightness(115%) !important;
    }


@keyframes nayaBannerMove{
  from{
    transform:translateX(0);
  }
  to{
    transform:translateX(50%);
  }
}


.product-card{
  width:100% !important;
  padding:14px !important;
  border-radius:24px !important;
  background:linear-gradient(180deg,rgba(24,24,24,.34) 0%,rgba(16,16,16,.24) 100%) !important;
  border:1px solid rgba(242,178,27,0.24) !important;
  box-shadow:0 14px 36px rgba(0,0,0,0.34), inset 0 0 0 1px rgba(255,255,255,0.03) !important;
}


.product-slider{
  overflow:hidden !important;
  display:block !important;
  padding:0 !important;
}


.product-slider img{
  display:none !important;
}


.product-slider img:first-child{
  display:block !important;
  width:100% !important;
  aspect-ratio:1/1 !important;
  object-fit:cover !important;
  border-radius:18px !important;
  background:#050505 !important;
  border:1px solid rgba(242,178,27,0.16) !important;
}


.product-slider img.missing-product-image{
  background:linear-gradient(145deg,#090909,#181818) !important;
}


.product-title{
  margin-top:14px !important;
  color:#f2d28b !important;
  font-size:1.05rem !important;
  font-weight:900;
  line-height:1.5 !important;
  text-align:center;
  font-family:Arial, sans-serif !important;
}


.product-desc{
  margin-top:8px !important;
  color:rgba(255,255,255,0.78) !important;
  font-size:.9rem !important;
  line-height:1.45;
  min-height:auto !important;
  text-align:center;
  font-family:Arial, sans-serif !important;
}


.old-price{
  display:inline-block;
  color:rgba(255,255,255,0.44);
  text-decoration:line-through;
  font-size:.82rem;
  margin-left:8px;
  font-weight:600;
}


.product-actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:14px;
}


.product-details-btn{
  display:block;
  width:100%;
  text-align:center;
  padding:12px 14px;
  border-radius:999px;
  text-decoration:none;
  background:rgba(255,255,255,0.04) !important;
  border:1px solid rgba(242,178,27,0.30) !important;
  color:#f7e7b2 !important;
  font-weight:700;
  font-size:.88rem;
  font-family:Arial, sans-serif !important;
}


.product-details-btn:hover{
  background:rgba(242,178,27,0.13) !important;
}


.product-card .buy-now-btn{
  width:100% !important;
  max-width:none !important;
  margin:0 !important;
  font-family:Arial, sans-serif !important;
  background:linear-gradient(180deg,#f2c14e,#c88400) !important;
  color:#241600 !important;
}


.product-modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.78) !important;
  backdrop-filter:blur(4px);
  -webkit-backdrop-filter:blur(4px);
  z-index:9999998 !important;
  opacity:0;
  pointer-events:none;
}


.product-modal-backdrop.open{
  opacity:1;
  pointer-events:auto;
}


.product-modal{
  position:fixed;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%) scale(.96);
  width:min(760px,92vw);
  max-height:88vh;
  overflow:auto;
  padding:22px;
  border-radius:24px;
  background:linear-gradient(180deg,#151515 0%,#080808 100%) !important;
  color:#f3e7c1 !important;
  border:1px solid rgba(242,178,27,0.30) !important;
  box-shadow:0 30px 90px rgba(0,0,0,.72), 0 0 35px rgba(242,178,27,.10) !important;
  z-index:9999999 !important;
  opacity:0;
  pointer-events:none;
  text-align:center;
}


.product-modal.open{
  opacity:1;
  pointer-events:auto;
  transform:translate(-50%,-50%) scale(1);
}


.product-modal-close{
  position:absolute;
  top:10px;
  left:12px;
  border:none;
  cursor:pointer;
  color:#f2d28b !important;
  background:rgba(255,255,255,0.06) !important;
  width:42px;
  height:42px;
  border-radius:999px;
  font-size:32px;
  line-height:42px;
}


.product-modal h2{
  color:#f2d28b !important;
  font-size:1.55rem;
  margin-bottom:14px !important;
  font-family:Arial, sans-serif !important;
}


.product-modal-desc{
  margin:12px 0 18px !important;
  line-height:1.55 !important;
  font-family:Arial, sans-serif !important;
  background:rgba(255,255,255,0.035) !important;
  border:1px solid rgba(242,178,27,0.24) !important;
  border-radius:18px !important;
  padding:15px 16px !important;
  color:#f3e7c1 !important;
  text-align:center;
}


.product-modal-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
}


.product-modal-gallery img,
.product-modal-gallery video{
  width:100%;
  border-radius:16px;
  background:#070707 !important;
  border:1px solid rgba(242,178,27,0.18) !important;
  box-shadow:0 8px 22px rgba(0,0,0,.38) !important;
}


@media (max-width:900px){
  .product-card{
    padding:10px !important;
  }


  .product-title{
    font-size:.92rem !important;
  }


  .product-desc{
    font-size:.8rem !important;
  }


  .product-details-btn,
  .product-card .buy-now-btn{
    font-size:.8rem !important;
    padding:10px 8px !important;
  }
}


@media (max-width:768px){

  .product-card{
    display:flex !important;
    flex-direction:column !important;
    height:100% !important;
  }


  .product-actions{
    margin-top:auto !important;
  }


  .product-desc{
    min-height:38px !important;
  }


  .old-price{
    font-size:.72rem;
    margin-left:4px;
  }


  .product-modal h2{
    font-size:1.25rem;
    padding:0 38px;
  }


  .product-modal-desc{
    font-size:.88rem;
    padding:12px !important;
  }
}


@media (max-width:700px){
  .product-modal{
    top:calc(50% + 22px);
    width:calc(100vw - 20px);
    max-height:calc(100dvh - 92px);
    padding:10px 12px 18px;
    border-radius:18px;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
  }


  .product-modal-close{
    position:sticky;
    top:0;
    left:auto;
    z-index:4;
    display:block;
    margin:0 auto 8px 0;
    width:46px;
    height:46px;
    min-width:46px;
    min-height:46px;
    line-height:42px;
    background:#0b0907 !important;
    border:2px solid #d4af37;
    box-shadow:0 6px 20px rgba(0,0,0,.75);
  }


  .product-modal-gallery{
    grid-template-columns:1fr;
  }


  .product-modal-gallery img,
  .product-modal-gallery video{
    width:100%;
    max-height:58dvh;
    object-fit:contain;
  }
}

:root{--gold:#d8ad62;--ink:#110d0a;--panel:#211913;--cream:#fff8ec;--muted:#c6b9a5;--danger:#a42b2b;--ok:#287a50}
.button,.icon-button{border:1px solid #735733;background:linear-gradient(135deg,#8a642f,#c79a50);color:white;border-radius:12px;padding:12px 18px;font-weight:800;cursor:pointer;text-decoration:none}
.button.secondary{background:#251d17}
.button.danger{background:var(--danger)}
.cart-count{display:inline-grid;place-items:center;background:#fff;color:#111;border-radius:50%;width:24px;height:24px;margin-inline-start:6px}
.products{max-width:1280px;margin:auto;padding:0 18px 70px;display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
.product{background:linear-gradient(145deg,#251c15,#110c09);border:1px solid #594127;border-radius:18px;overflow:hidden;box-shadow:0 15px 35px #0008;display:flex;flex-direction:column}
.product img{width:100%;aspect-ratio:1/1;object-fit:cover;background:#211a16}
.product-body{padding:15px;display:flex;flex-direction:column;gap:10px;flex:1}
.product h2{font-size:1.05rem;margin:0;line-height:1.35}
.price-row{display:flex;align-items:center;gap:10px}
.old{text-decoration:line-through;color:#9f9384}
.price{color:#f1c977;font-size:1.25rem;font-weight:900}
.product .button{margin-top:auto;width:100%}
.drawer{position:fixed;inset:0 0 0 auto;width:min(440px,100%);z-index:50;background:#17110d;border-inline-start:1px solid #6f5130;box-shadow:-20px 0 70px #000b;transform:translateX(105%);transition:.25s;padding:22px;display:flex;flex-direction:column}
.drawer.open{transform:none}
.drawer-head{display:flex;align-items:center;justify-content:space-between}
.drawer-head button{background:none;border:0;color:white;font-size:2rem;cursor:pointer}
.cart-lines{overflow:auto;flex:1}
.cart-line{display:grid;grid-template-columns:64px 1fr auto;gap:10px;align-items:center;padding:14px 0;border-bottom:1px solid #3f3022}
.cart-line img{width:64px;height:64px;border-radius:9px;object-fit:cover}
.qty{display:flex;gap:6px;align-items:center}
.qty button{width:28px;height:28px;border-radius:7px;border:1px solid #735733;background:#241a12;color:white}
.remove{border:0;background:none;color:#ff9797;cursor:pointer}
.total{font-size:1.25rem;font-weight:900;display:flex;justify-content:space-between;padding:18px 0}
.notice{padding:12px;border:1px solid #866328;border-radius:10px;background:#2e220f;color:#ffdd98;text-align:center;margin-bottom:10px}
.empty{text-align:center;color:var(--muted);padding:50px 10px}

@media(max-width:950px){.products{grid-template-columns:repeat(3,1fr)}
}

@media(max-width:650px){.head-actions .button.secondary{display:none}
.products{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;padding:0 10px 55px}
.product-body{padding:10px}
.product h2{font-size:.9rem}
.button{padding:10px}
}

.variant-fields{display:grid;gap:8px}
.variant-fields label{display:grid;gap:4px;font-size:.82rem;color:var(--muted)}
.variant-fields select{width:100%;background:#120d0a;color:#fff;border:1px solid #5e4932;border-radius:8px;padding:9px}
.order-controls .button{align-self:end}
.order-controls .button{min-height:47px}
.order-controls .button:disabled{opacity:.65;cursor:wait}

@media(max-width:760px){.order-controls .button{width:100%}
}
.store-toolbar{max-width:1180px;margin:18px auto 22px;padding:0 16px;display:flex;justify-content:center;gap:12px;flex-wrap:wrap}
.store-toolbar input,.store-toolbar select{min-height:46px;background:rgba(10,10,10,.9);color:#fff;border:1px solid rgba(242,178,27,.5);border-radius:999px;padding:10px 18px}
.store-toolbar input{width:min(520px,100%)}
.store-toolbar select{min-width:190px}
.store-products{max-width:1220px;margin:0 auto;padding:0 16px 36px;grid-template-columns:repeat(3,minmax(0,1fr))}
.store-products .product{background:rgba(10,10,10,.82);border:1px solid rgba(242,178,27,.3);border-radius:22px}
.store-products .product img{aspect-ratio:4/5;object-fit:contain;background:#090909}
.store-products .product-body{padding:14px}
.store-products .product h2{color:#fff}
.store-products .price{color:#f2b21b}
.store-products .old{color:#aaa}
.store-products .button,.drawer .button{background:linear-gradient(180deg,#f2b21b,#c88400);color:#2b1800;border:0;border-radius:999px}
.store-products .variant-fields select{background:#111;border-color:#6d5429}
.store-cart-button{pointer-events:auto;border:1px solid rgba(242,178,27,.55);border-radius:999px;background:rgba(0,0,0,.72);color:#fff;min-height:46px;padding:8px 15px;font-weight:800;cursor:pointer}
.store-cart-button #cartCount{display:inline-grid;place-items:center;min-width:24px;height:24px;padding:0 5px;border-radius:50%;background:#f2b21b;color:#241400}
.site-topbar .store-cart-button{margin-inline-start:auto}
.drawer{color:#fff}
.drawer .button.secondary{background:#2a2118;color:#fff;border:1px solid #735733}
.product-detail-modal{color:#fff}
.product-detail-copy h2{color:#fff}

@media(max-width:900px){.store-products{grid-template-columns:repeat(2,minmax(0,1fr))}
}

@media(max-width:600px){.store-toolbar{display:grid;grid-template-columns:1fr}
.store-toolbar input,.store-toolbar select{width:100%}
.store-products{gap:10px;padding-inline:10px}
.store-products .product-body{padding:10px}
.store-products .product h2{font-size:.9rem}
.store-cart-button{padding:7px 10px}
}
.model-product-link{position:absolute;right:8px;bottom:8px;left:8px;z-index:2;padding:7px 10px;border:1px solid rgba(245,205,107,.8);border-radius:999px;background:rgba(5,5,5,.48);color:#fff0b5;font:700 .76rem Arial,sans-serif;text-decoration:none;text-align:center;backdrop-filter:blur(3px);text-shadow:0 1px 4px #000;box-shadow:0 3px 10px #0006}
.model-product-link:hover{background:rgba(197,141,30,.78);color:#100a03;text-shadow:none}
.store-products .product{position:relative}
.store-products .product.gallery-product-highlight{z-index:5;animation:galleryProductGlow 2.8s ease both}
.store-products .product.gallery-product-highlight::after{content:attr(data-highlight-label);position:absolute;z-index:8;top:12px;left:50%;transform:translateX(-50%);min-width:max-content;padding:7px 16px;border:1px solid #ffe29a;border-radius:999px;background:#d79d19;color:#130d04;font:700 14px Arial,sans-serif;box-shadow:0 5px 22px #000b;animation:galleryProductLabel 2.8s ease both;pointer-events:none}
@keyframes galleryProductGlow{0%{transform:scale(1);box-shadow:0 15px 35px #0008}18%,58%{transform:scale(1.035);box-shadow:0 0 0 5px #f2b21b,0 0 44px 12px rgba(242,178,27,.72)}35%{box-shadow:0 0 0 3px #fff1b9,0 0 58px 18px rgba(242,178,27,.9)}100%{transform:scale(1);box-shadow:0 15px 35px #0008}}
@keyframes galleryProductLabel{0%,100%{opacity:0;transform:translate(-50%,-8px)}12%,78%{opacity:1;transform:translate(-50%,0)}}
@media(prefers-reduced-motion:reduce){.store-products .product.gallery-product-highlight{animation:none;box-shadow:0 0 0 5px #f2b21b,0 0 36px rgba(242,178,27,.75)}
.store-products .product.gallery-product-highlight::after{animation:none;opacity:1}
}
.gallery-admin-actions .button{padding:8px 9px}
@media(max-width:560px){.model-product-link{font-size:.7rem;padding:6px 8px}
}

.product-detail-video{display:block;width:100%;max-height:420px;margin-top:12px;border-radius:14px;background:#050505}


/* Product details and ordering */
.product{cursor:pointer}
.product .variant-fields,.product .button{cursor:default}
.product-detail-modal{position:fixed;inset:0;z-index:90;background:#000d;display:none;place-items:center;padding:18px}
.product-detail-modal.open{display:grid}
.product-detail-card{position:relative;width:min(920px,100%);max-height:92vh;overflow:auto;display:grid;grid-template-columns:minmax(0,1.1fr) minmax(260px,.9fr);gap:24px;background:#1b130e;border:1px solid #8b6638;border-radius:20px;padding:24px;box-shadow:0 25px 80px #000}
.product-detail-close{position:absolute;top:10px;left:10px;z-index:2;width:38px;height:38px;border:1px solid #84613a;border-radius:50%;background:#241811;color:#fff;font-size:1.7rem;cursor:pointer}
.product-detail-main{width:100%;aspect-ratio:1/1;object-fit:contain;background:#0d0907;border-radius:14px}
.product-detail-thumbs{display:flex;gap:9px;overflow:auto;margin-top:10px}
.product-detail-thumbs button{padding:2px;border:2px solid transparent;border-radius:9px;background:#120c08;cursor:pointer}
.product-detail-thumbs button.active{border-color:var(--gold)}
.product-detail-thumbs img{display:block;width:66px;height:66px;object-fit:cover;border-radius:6px}
.product-detail-copy{align-self:center}
.product-detail-copy h2{font-size:clamp(1.5rem,3vw,2.4rem)}
.product-detail-price{color:#f1c977;font-size:1.5rem;font-weight:900}
.product-detail-copy p{white-space:pre-line;line-height:1.75;color:#e0d2bf}
.move-product{min-width:40px;padding-inline:10px}
@media(max-width:700px){.product-detail-card{grid-template-columns:1fr;padding:16px}
.product-detail-copy{padding-bottom:8px}
.product-detail-main{max-height:48vh}
.product-detail-thumbs img{width:56px;height:56px}
}

.product-detail-options{margin:20px 0 14px}
.product-detail-options select{min-height:44px}
.product-detail-add{width:100%}

.cart-actions{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.cart-actions .button{width:100%}
@media(max-width:420px){.cart-actions{grid-template-columns:1fr}
}


/* Admin headers keep their navigation buttons visible on mobile. */
@media(max-width:650px){
  .site-head .head-actions .button.secondary{display:inline-flex!important;align-items:center;justify-content:center;min-height:40px;padding:8px 10px;font-size:.78rem;white-space:nowrap}
}


/* Keep the cart below the fixed navigation controls and center its heading. */
.drawer{top:92px;bottom:0;height:auto}

.drawer-head{position:relative;justify-content:center;min-height:52px;padding-inline:48px}

.drawer-head h2{width:100%;margin:0;text-align:center;line-height:52px}

.drawer-head button{position:absolute;inset-inline-start:0;top:50%;transform:translateY(-50%)}

@media(max-width:600px){.drawer{top:82px}
.drawer-head{min-height:46px}
.drawer-head h2{line-height:46px}
}

#cartTotal{flex-direction:column;justify-content:center;align-items:center;gap:5px;text-align:center;padding-inline:76px}

#cartTotal span{display:block;width:100%;text-align:center}

.cart-actions{padding-right:82px;padding-bottom:12px}

.cart-actions .button,#cartDrawer .notice{font-family:Arial,sans-serif!important}

@media(max-width:600px){.cart-actions{grid-template-columns:1fr;padding-right:72px}
.cart-actions .button{min-height:48px}
}

.product-image-wrap{position:relative;width:100%;aspect-ratio:4/5;overflow:hidden;background:#090909;display:grid;place-items:center}
.store-products .product-image-wrap>img{display:block;width:100%!important;height:100%!important;aspect-ratio:auto!important;object-fit:cover!important;object-position:center!important;background:#090909}
.product-info-badge{position:absolute;top:10px;right:10px;display:grid;place-items:center;width:34px;height:34px;border-radius:50%;border:2px solid #f2cb7c;background:#17100de6;color:#f5d995;font-family:Georgia,serif;font-size:1.25rem;font-weight:900;font-style:italic;box-shadow:0 4px 14px #000a;pointer-events:none}
.product:hover .product-info-badge{background:#b8873d;color:#fff}
@media(max-width:650px){.product-info-badge{top:7px;right:7px;width:29px;height:29px;font-size:1.05rem}
}

.a11y-panel{background:linear-gradient(180deg,#15110a 0%,#070605 100%)!important;color:#f6e9c7!important;border-right:1px solid rgba(212,175,55,.55)!important}
.a11y-header{background:linear-gradient(135deg,#211707,#090705)!important;border-bottom:1px solid rgba(212,175,55,.5)!important}
.a11y-title,.a11y-section-title,.a11y-icon{color:#e2b64f!important}
.a11y-body{background:transparent!important}
.a11y-card{background:#15110d!important;border-color:#5f4822!important;color:#f4e7c7!important;box-shadow:0 8px 20px rgba(0,0,0,.32)!important}
.a11y-card:hover{border-color:#d4af37!important;background:#21180b!important}
.a11y-card.active{background:linear-gradient(135deg,#b67b12,#e0b343)!important;border-color:#f1d27a!important;color:#100b04!important}
.a11y-card.active .a11y-icon{color:#100b04!important}
.a11y-circle-btn,.a11y-value{background:#0b0906!important;border-color:#8c6a2a!important;color:#e4b94f!important}
.a11y-bar{background:linear-gradient(90deg,#5e3d08,#d4af37,#fff0a0)!important}
.a11y-footer-note{color:#cdbd9f!important}
.a11y-reset{background:linear-gradient(135deg,#8b5b0b,#d7a82f)!important;color:#100b04!important;box-shadow:0 10px 24px rgba(0,0,0,.38)!important}
.orders-list .empty{grid-column:1/-1}

.store-products .button.add,.faq-section,.faq-section button,.faq-section summary,.faq-section p{font-family:Arial,sans-serif!important}

.faq-section,.faq-section *,.store-products .add{font-family:Arial,sans-serif!important}
.store-products{max-width:1040px!important;grid-template-columns:repeat(4,minmax(0,220px))!important;justify-content:center!important;gap:14px!important}
.store-products .product{width:100%!important}
.store-products .add{font-weight:700!important;letter-spacing:0!important}
.model-lightbox{position:fixed;inset:0;z-index:2147483647;display:none;align-items:center;justify-content:center;padding:24px;background:rgba(0,0,0,.88)}
.model-lightbox.open{display:flex}
.model-lightbox img{display:block;max-width:min(920px,92vw);max-height:90vh;object-fit:contain;border-radius:16px;border:1px solid rgba(242,178,27,.55);box-shadow:0 24px 80px #000}
.model-lightbox-close{position:fixed;top:18px;right:18px;width:48px;height:48px;border-radius:50%;border:1px solid #d4af37;background:#090909;color:#fff;font:32px/1 Arial,sans-serif;cursor:pointer}
@media(max-width:900px){.store-products{grid-template-columns:repeat(3,minmax(0,205px))!important}
}
@media(max-width:650px){.store-products{grid-template-columns:repeat(2,minmax(0,160px))!important;gap:9px!important}
.model-lightbox{padding:14px}
.model-lightbox-close{top:10px;right:10px;width:42px;height:42px}
}

.gallery-admin-actions .button{padding:6px!important;font-size:.72rem!important}

.gallery-admin-actions .button{min-width:0!important;min-height:28px!important;padding:4px 2px!important;font-size:.65rem!important;white-space:nowrap!important}


/* Product management header actions */
.product-admin-header{flex-wrap:wrap}

.product-admin-header .head-actions{display:flex;align-items:center;justify-content:flex-end;gap:8px;flex-wrap:wrap}

.product-admin-header .button{min-height:42px;padding:9px 13px;white-space:nowrap}

.product-admin-header button:disabled{opacity:.48;cursor:wait}

@media(max-width:650px){
  .product-admin-header{display:grid;grid-template-columns:42px minmax(0,1fr);align-items:center;padding:8px 10px;gap:8px}

  .product-admin-header .brand{width:42px;max-width:42px;height:42px}

  .product-admin-header .head-actions{grid-column:1/-1;display:grid;grid-template-columns:repeat(2,minmax(0,1fr));width:100%;gap:6px}

  .product-admin-header .head-actions .button{display:flex!important;align-items:center;justify-content:center;width:100%;min-width:0;min-height:40px;padding:7px 5px;font-size:.74rem;line-height:1.2;text-align:center;white-space:normal}
}

.admin-row .actions .button,.admin-row .actions button{min-width:0!important;padding:8px 6px!important;font-size:.76rem!important;white-space:nowrap!important}


/* Mobile portrait - three compact products and model photos per row */
@media (max-width:650px) and (orientation:portrait){
  .store-products{
    grid-template-columns:repeat(3,minmax(0,1fr))!important;
    gap:6px!important;
    padding-inline:6px!important;
  }

  .store-products .product{border-radius:12px!important;}

  .store-products .product-body{padding:7px!important;gap:6px!important;}

  .store-products .product h2{font-size:.72rem!important;line-height:1.3!important;}

  .store-products .price-row{gap:4px!important;flex-wrap:wrap!important;justify-content:center!important;}

  .store-products .old{font-size:.65rem!important;margin:0!important;}

  .store-products .price{font-size:.8rem!important;}

  .store-products .variant-fields label{font-size:.68rem!important;}

  .store-products .variant-fields select{min-width:0!important;width:100%!important;padding:6px 3px!important;font-size:.66rem!important;}

  .store-products .button.add{padding:8px 3px!important;font-size:.7rem!important;white-space:normal!important;line-height:1.15!important;}

  .model-product-link{right:4px!important;left:4px!important;bottom:4px!important;padding:5px 3px!important;font-size:.6rem!important;}
}

#cartDrawer .notice[hidden]{display:none!important}
.checkout-payment-actions .button{width:100%}


/* Keep every product price centered in one consistent position above the CTA. */
.store-products .product-body{display:flex!important;flex-direction:column!important;height:100%!important;gap:5px!important}

.store-products .product h2{display:-webkit-box!important;-webkit-box-orient:vertical!important;-webkit-line-clamp:2!important;line-clamp:2!important;overflow:hidden!important;min-height:2.7em!important;max-height:2.7em!important;margin:0!important}

.store-products .variant-fields{margin:0!important;min-height:0!important;align-content:start!important}

.store-products .price-row{margin-top:0!important;justify-content:center!important;text-align:center!important;width:100%;min-height:32px}

.store-products .button.add{margin-top:0!important}

@media(max-width:650px){.store-products .variant-fields{min-height:0!important}
.store-products .product h2{min-height:2.6em!important;max-height:2.6em!important}
}
.variants-editor{border:1px solid #d7e0ea;border-radius:12px;padding:14px;background:#f8fafc}
.variants-heading{display:flex;align-items:center;justify-content:space-between;gap:14px}
.variants-heading div{display:grid;gap:4px}
.variants-heading small{color:#64748b}
.variants-list{display:grid;gap:8px;margin-top:12px}
.variant-row{display:grid;grid-template-columns:1fr minmax(150px,220px);align-items:center;gap:12px;padding:10px 12px;border:1px solid #dce5ef;border-radius:9px;background:#fff}
.variant-row label{display:grid;grid-template-columns:auto 1fr;align-items:center;gap:8px}
.variant-row input{width:100%;padding:8px;border:1px solid #cad5e1;border-radius:7px}
.variants-empty{margin:0;color:#64748b}

@media(max-width:650px){.variants-heading,.variant-row{grid-template-columns:1fr;display:grid}
.variant-row label{grid-template-columns:80px 1fr}
}


/* Match the variants editor to the dark product-management modal. */
.variants-editor{background:#17110d!important;border-color:#745432!important;color:#fff!important}

.variants-heading strong{color:#f1c977!important;font-size:1.05rem}

.variants-heading small,.variants-empty{color:#d2c0aa!important}

.variants-editor .button.secondary{background:#2a2118!important;color:#fff!important;border-color:#8b6638!important}

.variant-row{background:#211711!important;border-color:#65492d!important;color:#fff!important}

.variant-row strong{color:#fff!important}

.variant-row label{color:#e8d8c4!important}

.variant-row input{background:#110c09!important;color:#fff!important;border-color:#755535!important}

.variant-row input::placeholder{color:#a99a89!important}

.variants-count{margin:0 0 4px;color:#f1c977;font-weight:800}
.variant-values{display:flex;gap:7px;flex-wrap:wrap}
.variant-values span{display:inline-flex;gap:4px;padding:6px 9px;border:1px solid #65492d;border-radius:999px;background:#110c09;color:#fff}
.variant-values b{color:#f1c977}


/* Compact, consistent cart controls and guaranteed Arial on Hebrew checkout. */
#cartDrawer .cart-actions .button{font-family:Arial,sans-serif!important;font-size:.9rem!important;line-height:1.2!important;min-height:44px!important;padding:9px 7px!important;white-space:normal!important}

html[lang="en"] #cartDrawer .cart-actions .button{font-size:.78rem!important;padding:8px 5px!important}


/* Uniform storefront cards: title, two option rows, price and CTA stay aligned. */
.store-products .product-body{height:250px!important;min-height:250px!important;display:flex!important;flex-direction:column!important;gap:8px!important}

.store-products .product h2{flex:0 0 2.7em!important;min-height:2.7em!important;max-height:2.7em!important}

.store-products .variant-fields{display:grid!important;grid-template-columns:1fr!important;grid-template-rows:repeat(2,42px)!important;gap:6px!important;height:90px!important;min-height:90px!important;max-height:90px!important;overflow:hidden!important}

.store-products .variant-fields label,.store-products .variant-fields select{height:42px!important;min-height:42px!important;margin:0!important}

.store-products .price-row{flex:0 0 34px!important;height:34px!important;min-height:34px!important;margin-top:auto!important;align-items:center!important}

.store-products .button.add{flex:0 0 42px!important;height:42px!important;min-height:42px!important;margin-top:0!important}

@media(max-width:650px){
  .store-products .product-body{height:205px!important;min-height:205px!important;padding:7px!important;gap:5px!important}

  .store-products .product h2{flex-basis:2.6em!important;min-height:2.6em!important;max-height:2.6em!important}

  .store-products .variant-fields{grid-template-rows:repeat(2,34px)!important;height:73px!important;min-height:73px!important;max-height:73px!important;gap:5px!important}

  .store-products .variant-fields label,.store-products .variant-fields select{height:34px!important;min-height:34px!important}

  .store-products .price-row{flex-basis:30px!important;height:30px!important;min-height:30px!important}

  .store-products .button.add{flex-basis:36px!important;height:36px!important;min-height:36px!important}
}


/* Full-page product editor opened in its own browser tab. */
.product-editor-page{background:#090604!important}
.product-editor-page .site-head{position:static!important;justify-content:center!important}
.product-editor-page .modal{position:static!important;display:block!important;background:transparent!important;padding:22px!important}
.product-editor-page .modal-card{width:min(1050px,100%)!important;max-height:none!important;overflow:visible!important;margin:0 auto!important}
.product-editor-page .modal-actions{position:sticky;bottom:0;z-index:5;padding:12px;background:rgba(32,23,17,.96);border-top:1px solid #745432}

@media(max-width:650px){.product-editor-page .modal{padding:8px!important}
.product-editor-page .modal-card{padding:14px!important;border-radius:12px!important}
.product-editor-page .modal-actions{margin-inline:-14px;padding-inline:14px}
}


/* Quantity promotion in cart, checkout and admin. */
.cart-promotion{margin:10px 0;padding:12px;border:1px solid #b88727;border-radius:12px;background:linear-gradient(135deg,#2d210d,#17110d);color:#ffe5a3;line-height:1.5;text-align:center}
.cart-promotion strong,.cart-promotion span{display:block}
.cart-promotion span{margin-top:5px;color:#8ee0a9}
.total{flex-wrap:wrap;gap:5px}
.total small{flex:0 0 100%;font-size:.8rem;font-weight:600;color:#b8aa99}
.total .discount{color:#79d798}
.orders-list>.empty{padding:40px;text-align:center;background:#17100c;border:1px solid #60462b;border-radius:12px}

.checkout-payment-actions .button{font-family:Arial,sans-serif!important;font-size:.92rem!important;line-height:1.25!important;padding:11px 8px!important;white-space:normal!important}


/* Mobile product details: viewport-sized shell with its own scroll area. */
body.product-detail-open{position:fixed!important;right:0;left:0;width:100%;overflow:hidden!important}

@media(max-width:1100px){
  .product-detail-modal{z-index:2147483646!important}

  body.product-detail-open .site-topbar{opacity:0!important;visibility:hidden!important;pointer-events:none!important}

  .product-detail-modal{
    align-items:stretch!important;
    justify-content:stretch!important;
    overflow:hidden!important;
    padding:max(8px,env(safe-area-inset-top)) 8px max(8px,env(safe-area-inset-bottom))!important;
  }

  .product-detail-card{
    width:100%!important;
    height:100%!important;
    max-height:none!important;
    min-height:0!important;
    grid-template-columns:1fr!important;
    align-content:start!important;
    overflow-x:hidden!important;
    overflow-y:auto!important;
    overscroll-behavior:contain!important;
    -webkit-overflow-scrolling:touch;
  }

  .product-detail-gallery,.product-detail-copy{min-width:0!important}

  .product-detail-copy{
    display:block!important;
    position:relative!important;
    visibility:visible!important;
    opacity:1!important;
    align-self:start!important;
  }

  .product-detail-copy p{
    display:block!important;
    visibility:visible!important;
    opacity:1!important;
    max-width:none!important;
    max-height:none!important;
    height:auto!important;
    overflow:visible!important;
  }
}

.product-detail-video-wrap{position:relative;width:100%;margin-top:10px;overflow:hidden;border-radius:14px;background:#090705}

.product-detail-video-wrap .product-detail-video{display:block;width:100%;margin:0!important}

.product-detail-video-preview{position:absolute;inset:0;width:100%;height:100%;padding:0;border:0;background:#090705;cursor:pointer;overflow:hidden}

.product-detail-video-preview[hidden]{display:none!important}

.product-detail-video-preview img{display:block;width:100%;height:100%;object-fit:contain;background:#090705}

.product-detail-video-preview span{position:absolute;inset:50% auto auto 50%;translate:-50% -50%;display:grid;place-items:center;width:52px;height:52px;padding:0;border:0;border-radius:0;background:transparent;color:transparent;font-size:0;box-shadow:none}

.product-detail-video-preview span::before{content:"";display:block;width:26px;height:32px;background:#fff;clip-path:polygon(0 0,100% 50%,0 100%);filter:drop-shadow(0 3px 5px rgba(0,0,0,.9));transform:translateX(2px)}

@media(max-width:700px){
  .product-detail-modal{
    z-index:2147483646!important;
    align-items:stretch!important;
    justify-content:stretch!important;
    overflow:hidden!important;
    padding:max(8px,env(safe-area-inset-top)) 8px max(8px,env(safe-area-inset-bottom))!important;
    overscroll-behavior:contain;
  }

  .product-detail-card{
    width:100%!important;
    height:100%!important;
    max-height:none!important;
    min-height:0!important;
    overflow-x:hidden!important;
    overflow-y:auto!important;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
    grid-template-columns:1fr!important;
    align-content:start!important;
    gap:12px!important;
    padding:8px 10px 18px!important;
    border-radius:16px!important;
  }

  .product-detail-close{
    position:sticky!important;
    top:0!important;
    left:auto!important;
    z-index:20!important;
    justify-self:start!important;
    display:block!important;
    width:46px!important;
    height:46px!important;
    min-width:46px!important;
    min-height:46px!important;
    margin:0 auto -46px 0!important;
    border:2px solid #e3b94e!important;
    background:#090705!important;
    color:#fff!important;
    box-shadow:0 6px 20px #000c!important;
  }

  .product-detail-gallery{min-width:0!important;padding-top:4px!important}

  .product-detail-main{
    display:block!important;
    width:auto!important;
    max-width:100%!important;
    height:auto!important;
    max-height:34dvh!important;
    margin:0 auto!important;
    object-fit:contain!important;
  }

  .product-detail-thumbs{
    width:100%!important;
    display:flex!important;
    align-items:center!important;
    justify-content:safe center!important;
    direction:ltr!important;
    gap:8px!important;
    margin:9px auto 0!important;
    padding:2px 4px 5px!important;
    overflow-x:auto!important;
    overflow-y:hidden!important;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }

  .product-detail-thumbs::-webkit-scrollbar{display:none}

  .product-detail-thumbs button{
    flex:0 0 58px!important;
    width:58px!important;
    height:58px!important;
    display:grid!important;
    place-items:center!important;
    margin:0!important;
  }

  .product-detail-thumbs img{width:50px!important;height:50px!important}

  .product-detail-video{
    width:auto!important;
    max-width:100%!important;
    height:auto!important;
    max-height:38dvh!important;
    margin:8px auto 0!important;
    object-fit:contain!important;
  }

  .product-detail-video-wrap{max-height:38dvh!important;margin:8px auto 0!important}

  .product-detail-video-wrap .product-detail-video,.product-detail-video-preview{height:38dvh!important;max-height:38dvh!important}

  .product-detail-copy{padding:0 4px 4px!important}

  .product-detail-copy h2{font-size:1.25rem!important;line-height:1.3!important;margin:4px 0 8px!important}

  .product-detail-price{font-size:1.2rem!important}

  .product-detail-copy p{font-size:.88rem!important;line-height:1.55!important;margin:8px 0!important}

  .product-detail-options{margin:12px 0 10px!important}
}


@keyframes saleBannerShine {
  0%, 68% { left: -35%; opacity: 0; }
  72% { opacity: 1; }
  92% { left: 120%; opacity: 1; }
  100% { left: 120%; opacity: 0; }
}


@keyframes saleBannerShineMobile {
  0% { transform: translate3d(0, 0, 0) skewX(-18deg); opacity: 0; }
  8% { opacity: 1; }
  76% { transform: translate3d(540%, 0, 0) skewX(-18deg); opacity: 1; }
  88%, 100% { transform: translate3d(540%, 0, 0) skewX(-18deg); opacity: 0; }
}


/* Compact cart drawer: keep more products and the full summary visible. */
#cartDrawer.drawer {
  top: 0 !important;
  bottom: 0 !important;
  height: 100vh;
  height: 100dvh;
  width: min(380px, 100%);
  padding: 14px;
  z-index: 2147483647 !important;
  background: linear-gradient(180deg, #34373c 0%, #292c31 100%) !important;
  color: #fff !important;
  border-inline-start-color: #d2a63c;
  box-shadow: -20px 0 70px rgba(0, 0, 0, .62);
}


body:has(#cartDrawer.open) #menuToggle {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}


#cartDrawer .drawer-head {
  min-height: 40px;
  padding-inline: 38px;
}


#cartDrawer .drawer-head h2 {
  font-size: 1.3rem !important;
  line-height: 40px;
}


#cartDrawer .drawer-head button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 2px solid #f2b21b;
  border-radius: 50%;
  background: #120d09;
  color: #fff;
  box-shadow: 0 0 0 3px rgba(242, 178, 27, .12), 0 0 16px rgba(242, 178, 27, .35);
  font-size: 0;
  line-height: 1;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}


#cartDrawer #closeCart::before,
#cartDrawer #closeCart::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 17px;
  height: 2.5px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
}


#cartDrawer #closeCart::before {
  transform: translate(-50%, -50%) rotate(45deg);
}


#cartDrawer #closeCart::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}


#cartDrawer .drawer-head button:hover,
#cartDrawer .drawer-head button:focus-visible {
  background: #f2b21b;
  color: #201300;
  outline: none;
  transform: translateY(-50%) scale(1.06);
}


#cartDrawer .cart-line {
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 8px;
  padding: 9px 0;
  border-bottom-color: rgba(255, 255, 255, .16);
}


#cartDrawer .cart-line img {
  width: 50px;
  height: 50px;
  border-radius: 7px;
}


#cartDrawer .cart-line strong {
  display: block;
  font-size: .88rem;
  line-height: 1.25;
  color: #fff !important;
}


#cartDrawer .cart-line small,
#cartDrawer .cart-line > div > div:not(.qty) {
  font-size: .75rem;
  line-height: 1.25;
  color: #ececec;
}


#cartDrawer .qty {
  gap: 4px;
  margin-top: 4px;
  font-size: .78rem;
}


#cartDrawer .qty button {
  width: 25px;
  height: 25px;
  padding: 0;
  font-size: .9rem;
  background: #202226;
  color: #fff;
  border-color: #d2a63c;
}


#cartDrawer .remove {
  padding: 4px 2px;
  font-size: .72rem;
}


#cartDrawer .cart-promotion {
  margin: 6px 0;
  padding: 8px;
  border-radius: 9px;
  font-size: .78rem;
  line-height: 1.3;
  background: linear-gradient(135deg, #454039, #31343a);
  color: #fff1c9;
}


#cartDrawer .cart-promotion span {
  margin-top: 3px;
}


#cartDrawer .total {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 3px 8px;
  width: 100%;
  min-width: 0;
  padding: 9px 0;
  font-size: .95rem !important;
  line-height: 1.25;
}


#cartDrawer .total small {
  grid-column: 1 / -1;
  min-width: 0;
  font-size: .7rem !important;
  overflow-wrap: anywhere;
  color: #e0e0e0;
}


#cartDrawer .total > span {
  display: block;
  min-width: 0;
  font-size: .95rem !important;
  color: #fff;
}


#cartDrawer .total > span:last-child {
  white-space: nowrap;
  color: #f2c76b;
  font-weight: 900;
}


#cartDrawer .cart-actions {
  display: flex;
  justify-content: center;
  gap: 0;
  padding-right: 0;
  padding-bottom: 4px;
}


#cartDrawer .cart-actions .button {
  width: min(220px, 100%);
  min-height: 38px !important;
  padding: 7px 6px !important;
  font-size: .78rem !important;
}


@media (max-width: 600px) {
  #cartDrawer.drawer {
    top: 0 !important;
    padding: 10px 12px;
  }


  #cartDrawer .drawer-head {
    min-height: 38px;
  }


  #cartDrawer .drawer-head h2 {
    font-size: 1.15rem !important;
    line-height: 38px;
  }


  #cartDrawer .cart-line {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    padding: 7px 0;
  }


  #cartDrawer .cart-line img {
    width: 46px;
    height: 46px;
  }


  #cartDrawer .qty button {
    width: 30px;
    height: 30px;
  }


  #cartDrawer .cart-actions {
    padding-right: 0;
  }
}

.float-whatsapp i {
  color: #d4af37 !important;
  font-size: 30px;
  line-height: 1;
}
.float-whatsapp,
.float-whatsapp:visited,
.float-whatsapp:hover,
.float-whatsapp:active {
  text-decoration: none !important;
  color: #d4af37 !important;
}
.float-whatsapp{
  position:fixed !important;
  right:0 !important;
  bottom:92px !important;
  width:58px !important;
  height:58px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  background:#050505 !important;
  border:1.5px solid #d4af37 !important;
  border-right:none !important;
  border-radius:16px 0 0 16px !important;
  z-index:100000000 !important;
  pointer-events:auto !important;
  box-shadow:0 0 18px rgba(212,175,55,.28) !important;
}