/* Unicarts64 shared header - isolated component styles */
:root{
  --uc-header-bg:#0c0e11;
  --uc-header-line:rgba(255,255,255,.09);
  --uc-header-text:#f5f5f4;
  --uc-header-muted:#9a9da3;
  --uc-header-red:#ef4b45;
}

.siteHeader{
  position:sticky;
  top:0;
  z-index:9000;
  width:100%;
  background:rgba(12,14,17,.96);
  border-bottom:1px solid var(--uc-header-line);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
}
.ucHeaderContainer{
  width:min(calc(100% - 48px),1280px);
  margin-inline:auto;
}
.ucNav{
  min-height:80px;
  display:grid;
  grid-template-columns:auto minmax(0,1fr) auto;
  align-items:center;
  gap:42px;
}
.ucBrand{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-width:0;
  color:#fff;
  text-decoration:none;
}
.ucBrandMark{
  width:54px;
  height:30px;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.ucBrandMark img{
  width:54px;
  height:27px;
  display:block;
  object-fit:contain;
}
.ucBrandName{
  display:flex;
  align-items:center;
  padding-left:0;
  border-left:0;
  font-size:15px;
  line-height:1;
  font-weight:850;
  letter-spacing:-.035em;
}
.ucNavLinks{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:3px;
}
.ucNavLink{
  position:relative;
  min-height:42px;
  display:inline-flex;
  align-items:center;
  padding:0 13px;
  border-radius:10px;
  color:#aeb1b6;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
  transition:color .2s ease,background .2s ease;
}
.ucNavLink:hover{color:#fff;background:rgba(255,255,255,.055)}
.ucNavLink.isActive{color:#fff}
.ucNavLink.isActive::after{
  content:"";
  position:absolute;
  left:13px;
  right:13px;
  bottom:3px;
  height:2px;
  border-radius:99px;
  background:var(--uc-header-red);
}
.ucNavActions{display:flex;align-items:center;justify-content:flex-end;gap:7px}
.ucIconButton,
.ucCartButton,
.ucMenuButton{
  min-height:42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.11);
  border-radius:11px;
  background:rgba(255,255,255,.045);
  color:#fff;
  text-decoration:none;
  cursor:pointer;
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}
.ucIconButton{width:42px;padding:0}
.ucIconButton:hover,.ucCartButton:hover,.ucMenuButton:hover{background:rgba(255,255,255,.1);border-color:rgba(255,255,255,.2);transform:translateY(-1px)}
.ucCartButton{gap:7px;padding:0 11px 0 13px;font-size:11px;font-weight:750}
.ucCartSvg{width:16px;height:16px;opacity:.9;transition:transform .2s ease}
.ucCartButton:hover .ucCartSvg{transform:translateX(1px)}
.ucWhatsAppButton{position:relative;color:#f7f7f5;overflow:hidden}
.ucWhatsAppButton::before{content:"";position:absolute;inset:6px;border-radius:9px;background:rgba(37,211,102,.08);opacity:0;transform:scale(.75);transition:opacity .2s ease,transform .2s ease}
.ucWhatsAppButton .ucWaSvg{position:relative;z-index:1;width:19px;height:19px;display:block;flex:none;transition:transform .2s ease,color .2s ease}
.ucWhatsAppButton:hover{background:rgba(37,211,102,.09);border-color:rgba(37,211,102,.28);color:#39db78}
.ucWhatsAppButton:hover::before{opacity:1;transform:scale(1)}
.ucWhatsAppButton:hover .ucWaSvg{transform:scale(1.04)}
.ucCartBadge{
  min-width:18px;
  height:18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 5px;
  border-radius:99px;
  background:var(--uc-header-red);
  color:#fff;
  font-size:9px;
  font-weight:850;
}
.ucMenuButton{display:none;width:42px;padding:0}
.ucMenuLines{width:17px;display:grid;gap:4px}
.ucMenuLines span{display:block;height:1.5px;border-radius:99px;background:#fff}

.ucOverlay{
  position:fixed;
  inset:0;
  z-index:9090;
  background:rgba(0,0,0,.52);
  opacity:0;
  visibility:hidden;
  transition:opacity .28s ease,visibility .28s ease;
}
.ucOverlay.isOpen{opacity:1;visibility:visible}
.ucDrawer{
  position:fixed;
  top:0;
  right:0;
  z-index:9100;
  width:min(390px,92vw);
  height:100dvh;
  display:flex;
  flex-direction:column;
  padding:24px;
  background:#0d0f12;
  color:#fff;
  border-left:1px solid rgba(255,255,255,.08);
  box-shadow:-30px 0 90px rgba(0,0,0,.35);
  transform:translateX(102%);
  transition:transform .32s cubic-bezier(.2,.7,.2,1);
}
.ucDrawer.isOpen{transform:translateX(0)}
.ucDrawerTop{display:flex;align-items:center;justify-content:space-between;gap:20px;padding-bottom:22px;border-bottom:1px solid rgba(255,255,255,.09)}
.ucDrawerBrand{font-size:18px;font-weight:850;letter-spacing:-.04em}
.ucCloseButton{width:40px;height:40px;display:grid;place-items:center;border:1px solid rgba(255,255,255,.1);border-radius:10px;background:rgba(255,255,255,.05);color:#fff;font-size:17px;cursor:pointer}
.ucDrawerNav{display:grid;margin-top:19px}
.ucDrawerLink{min-height:54px;display:flex;align-items:center;justify-content:space-between;border-bottom:1px solid rgba(255,255,255,.08);color:#d4d6da;font-size:14px;font-weight:700;text-decoration:none}
.ucDrawerLink:hover{color:#fff}
.ucDrawerLink span:last-child{color:#64686f}
.ucDrawerSupport{display:flex;align-items:center;justify-content:center;gap:9px;min-height:50px;margin-top:20px;border-radius:12px;background:#fff;color:#111;font-size:12px;font-weight:800;text-decoration:none}
.ucAuthArea{margin-top:auto;display:grid;gap:9px;padding-top:20px;border-top:1px solid rgba(255,255,255,.09)}
.ucAuthBtn{min-height:46px;display:flex;align-items:center;justify-content:center;gap:9px;border:1px solid rgba(255,255,255,.11);border-radius:11px;background:rgba(255,255,255,.05);color:#fff;font:inherit;font-size:12px;font-weight:700;text-decoration:none;cursor:pointer}
.ucAuthBtn:hover{background:rgba(255,255,255,.09)}

@media(max-width:980px){
  .ucNav{gap:20px}
  .ucNavLink{padding-inline:9px;font-size:11px}
  .ucBrandName{display:none}
}
@media(max-width:760px){
  .ucHeaderContainer{width:calc(100% - 28px)}
  .ucNav{min-height:68px;grid-template-columns:auto 1fr auto}
  .ucNavLinks{display:none}
  .ucNavActions .ucCartButton,.ucNavActions .ucIconButton{display:none}
  .ucMenuButton{display:inline-flex}
  .ucBrand{gap:3px}
  .ucBrandMark{width:64px;height:48px}
  .ucBrandMark img{width:67px;height:43px}
}
@media(prefers-reduced-motion:reduce){.ucOverlay,.ucDrawer,.ucNavLink,.ucIconButton,.ucCartButton,.ucMenuButton{transition:none}}

/* =========================================================
   Mobile drawer refinement
   ========================================================= */
.ucDrawerTop{
  min-height:58px;
  padding-bottom:18px;
}
.ucDrawerBrand{
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:#fff;
  text-decoration:none;
  min-width:0;
}
.ucDrawerBrandMark{
  width:38px;
  height:22px;
  display:block;
  object-fit:contain;
  flex:0 0 auto;
}
.ucDrawerBrandName{
  font-size:21px;
  line-height:1;
  font-weight:850;
  letter-spacing:-.045em;
}
.ucCloseButton{
  flex:0 0 auto;
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}
.ucCloseButton:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.18);
  transform:rotate(3deg);
}
.ucDrawerIntro{
  padding:20px 0 18px;
}
.ucDrawerEyebrow{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--uc-header-red);
  font-size:9px;
  line-height:1;
  font-weight:850;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.ucDrawerEyebrow::before{
  content:"";
  width:16px;
  height:1px;
  background:currentColor;
}
.ucDrawerIntro p{
  max-width:285px;
  margin:10px 0 0;
  color:#858990;
  font-size:11px;
  line-height:1.55;
}
.ucDrawerSectionLabel{
  margin:2px 0 7px;
  color:#62666d;
  font-size:9px;
  font-weight:850;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.ucDrawerNav{
  margin-top:0;
  gap:4px;
}
.ucDrawerLink{
  position:relative;
  min-height:49px;
  padding:0 11px;
  border:0;
  border-radius:10px;
  color:#c8cbd0;
  transition:background .2s ease,color .2s ease,padding .2s ease;
}
.ucDrawerLink:hover,
.ucDrawerLink.isActive{
  color:#fff;
  background:rgba(255,255,255,.055);
}
.ucDrawerLink.isActive::before{
  content:"";
  position:absolute;
  left:0;
  top:13px;
  bottom:13px;
  width:2px;
  border-radius:10px;
  background:var(--uc-header-red);
}
.ucDrawerLink .ucChevronSvg{
  width:14px;
  height:14px;
  color:#5f646b;
  transition:transform .2s ease,color .2s ease;
}
.ucDrawerLink:hover .ucChevronSvg,
.ucDrawerLink.isActive .ucChevronSvg{
  color:#aeb2b8;
  transform:translateX(2px);
}
.ucDrawerCart{
  min-height:68px;
  display:grid;
  grid-template-columns:38px minmax(0,1fr) auto 14px;
  align-items:center;
  gap:11px;
  margin-top:17px;
  padding:11px 13px;
  border:1px solid rgba(255,255,255,.11);
  border-radius:14px;
  background:rgba(255,255,255,.045);
  color:#fff;
  text-decoration:none;
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}
.ucDrawerCart:hover{
  background:rgba(255,255,255,.075);
  border-color:rgba(255,255,255,.17);
  transform:translateY(-1px);
}
.ucDrawerCartIcon{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#fff;
  color:#0c0e11;
}
.ucDrawerCartIcon .ucCartSvg{
  width:18px;
  height:18px;
}
.ucDrawerCartCopy{
  min-width:0;
  display:grid;
  gap:3px;
}
.ucDrawerCartCopy strong{
  font-size:13px;
  line-height:1.1;
  font-weight:800;
}
.ucDrawerCartCopy small{
  overflow:hidden;
  color:#777b82;
  font-size:9px;
  line-height:1.2;
  white-space:nowrap;
  text-overflow:ellipsis;
}
.ucDrawerCartCount{
  min-width:26px;
  height:26px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 7px;
  border-radius:999px;
  background:var(--uc-header-red);
  color:#fff;
  font-size:10px;
  font-weight:850;
}
.ucDrawerCart > .ucChevronSvg{
  width:13px;
  color:#666b72;
}
.ucDrawerSupport{
  min-height:64px;
  display:grid;
  grid-template-columns:38px minmax(0,1fr) 14px;
  justify-content:initial;
  gap:11px;
  padding:11px 13px;
  border:1px solid rgba(37,211,102,.2);
  border-radius:14px;
  background:rgba(37,211,102,.075);
  color:#fff;
  transition:background .2s ease,border-color .2s ease,transform .2s ease;
}
.ucDrawerSupport:hover{
  background:rgba(37,211,102,.12);
  border-color:rgba(37,211,102,.32);
  transform:translateY(-1px);
}
.ucDrawerSupportIcon{
  width:38px;
  height:38px;
  display:grid;
  place-items:center;
  border-radius:10px;
  background:#25d366;
  color:#07120b;
}
.ucDrawerSupportIcon .ucWaSvg{
  width:19px;
  height:19px;
}
.ucDrawerSupport > span:nth-child(2){
  min-width:0;
  display:grid;
  gap:3px;
}
.ucDrawerSupport strong{
  font-size:12px;
  line-height:1.1;
  font-weight:800;
}
.ucDrawerSupport small{
  color:#79a98b;
  font-size:9px;
  line-height:1.2;
}
.ucDrawerSupport > .ucChevronSvg{
  width:13px;
  color:#74a684;
}

@media(max-width:420px){
  .ucDrawer{
    width:100%;
    padding:20px;
  }
  .ucDrawerBrandMark{width:35px;height:20px}
  .ucDrawerBrandName{font-size:20px}
  .ucDrawerIntro{padding-top:17px;padding-bottom:15px}
  .ucDrawerCart{margin-top:14px}
}
