.loading-pag {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background:
    radial-gradient(circle at top, rgba(14, 165, 233, 0.08), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  z-index: 9999;
}


.loader {
  width: 156px;
  height: 156px;
  display: grid;
  place-items: center;
  animation: loader-spin 1.1s linear infinite;
}

.loader__logo {
  width: 108px;
  height: 108px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  filter: drop-shadow(0 16px 20px rgba(15, 23, 42, 0.1));
}

.loader__text {
  margin: 0;
  display: inline-flex;
  align-items: baseline;
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: 0.02em;
}

.loader__dots {
  display: inline-flex;
  min-width: 1.2em;
  justify-content: flex-start;
}

.loader__dots span {
  opacity: 0;
  animation: loader-dot 1.2s infinite ease-in-out;
}

.loader__dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loader__dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loader-dot {
  0%, 20% {
    opacity: 0;
  }
  40%, 100% {
    opacity: 1;
  }
}

@keyframes loader-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@media (prefers-reduced-motion: reduce) {
  .loader {
    animation: none;
  }
}

/* Global responsive container */
.container-app {
  max-width: 1200px;
  padding-inline: 1rem;
  margin-inline: auto;
}

/* Responsive media defaults */
img, video, canvas, svg { max-width: 100%; height: auto; }

/* Keep a stable typography baseline across hosts/deploys */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

.overlay{
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(2px);
  z-index: 1200;
}

.overlay-card{
  width: min(320px, 100%);
  padding: 28px 24px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 45px -15px rgba(15, 23, 42, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.overlay-spinner{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 4px solid rgba(148, 163, 184, 0.35);
  border-top-color: #0ea5e9;
  animation: overlay-spin 0.9s linear infinite;
}

.overlay-text{
  font-size: 1rem;
  color: #0f172a;
  font-weight: 500;
}

@keyframes overlay-spin{
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

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

:root{
  --nav-h: 88px;
  --nav-pad-x: clamp(14px, 2vw, 24px);
  --text: #222;
  --muted: #727272;
  --border: #e9e9e9;
  --accent: #1d4ed8;       
  --hover: #f7f7f8;
}


.navbar {
  width: 100%;
  position: fixed;
  top: var(--marquee-height, 0px);
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
  font-family: Inter, Arial, sans-serif;
}

.navbar__inner{
  width: min(100%, 1440px);
  min-height: var(--nav-h);
  margin: 0 auto;
  padding: 0 var(--nav-pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-link{
  display:flex;
  align-items:center;
  flex-shrink:0;
}
.logo-link:focus-visible{
  outline:3px solid rgba(59,130,246,.35);
  outline-offset:4px;
}

.logo {
  min-width: clamp(66px, 8vw, 92px);
  max-width: clamp(66px, 8vw, 92px);
  height: clamp(52px, 7vw, 72px);
  display: flex;
  align-items: center;
}
.logo picture,
.logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}


.menu {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-wrap: nowrap;
  list-style: none;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.4vw, 22px);
  height: 100%;
  margin-left: clamp(12px, 2vw, 28px);
  overflow: hidden;
}
.menu > li {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  min-width: 0;
}
.menu > li > a {
  display: flex; align-items: center; height: var(--nav-h); padding: 0 8px;
  color: var(--text); text-decoration: none; font-weight: 700; font-size: clamp(.8rem, .14vw + .78rem, .92rem);
  letter-spacing: 0.015em; border-bottom: 2px solid transparent;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}
.menu > li:hover > a, .menu > li > a.active { color: #111; border-bottom-color: #111; }


.dropdown-content {
  margin-top: 0;
  position: fixed; left: 0; top: calc(var(--nav-h) + var(--marquee-height, 0px)); width: 100vw;
  
  padding: 22px max(24px, calc((100vw - 1200px)/2));
  background: rgba(255,255,255,.96);
  backdrop-filter: saturate(140%) blur(4px);
  border: 1px solid rgba(0,0,0,.06);
  border-top: none;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 12px 34px rgba(0,0,0,.12), 0 2px 10px rgba(0,0,0,.06);
  
  display: grid;
  grid-template-columns: repeat(6, minmax(170px, 1fr));
  gap: 28px 38px;
  opacity: 0; pointer-events: none; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease; z-index: 2000;
  
  max-height: calc(100vh - var(--nav-h) - 16px);
  overflow: auto;
}
.dropdown:hover .dropdown-content { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown-content > div { padding: 4px 10px; position: relative; }
.dropdown-content h4 { font-size: 0.78rem; margin: 4px 0 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; color: #8a8a8a; }
.dropdown-content h4:empty { display:none; }
.dropdown-content a {
  display: block; font-size: 0.875rem; color: var(--text); text-decoration: none;
  margin: 20px 0; padding: 6px 10px; border-radius: 8px;
  transition: background .12s ease, color .12s ease, transform .12s ease, box-shadow .12s ease;
  position: relative;
}
.dropdown-content a:hover {
  background: #f6f7fb;
  color: #0f172a;
  box-shadow: inset 2px 0 0 var(--accent);
}
.dropdown-content a:focus-visible { outline: 3px solid rgba(29,78,216,.22); outline-offset: 1px; }


.dd-col { border-radius: 10px; }
.dd-col--mains a { font-weight: 600; }
.dd-col--mains a:hover { background: #eef2ff; color: #1d4ed8; }


@media (min-width: 1100px){
  .dropdown-content > div:not(:nth-child(6n))::after {
    content: ""; position: absolute; top: 4px; right: -14px; width: 1px; height: calc(100% - 8px);
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,.06) 20%, rgba(0,0,0,.06) 80%, transparent);
  }
}


.navbar-actions {
  display: flex;
  flex: 0 0 auto;
  flex-shrink: 0;
  align-items: center;
  gap: 14px;
  position: relative;
}

.navbar-actions__main{
  display:flex;
  align-items:center;
  gap:14px;
}
.navbar-actions__core{
  display:flex;
  align-items:center;
  gap:14px;
}
.navbar-actions__cart{
  display:flex;
  align-items:center;
}

.user-menu { position: relative; }
.user-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 999px;
  transition: background .15s ease, box-shadow .15s ease;
  color: #111;
}
.user-btn:hover, .user-btn.is-open {
  background: #f4f6fb;
  box-shadow: inset 0 0 0 1px #e5e7eb;
}
.admin-btn{
  color:#1d4ed8;
  background:#eef4ff;
  box-shadow: inset 0 0 0 1px #dbe7ff;
}
.admin-btn:hover{
  background:#dbeafe;
  box-shadow: inset 0 0 0 1px #bfdbfe;
}
.user-svg {
  display: block;
}
.user-menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  min-width: 180px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 18px 50px -30px rgba(15, 23, 42, 0.45);
  padding: 12px;
  display: grid;
  gap: 6px;
  z-index: 3000;
}
.user-menu__name {
  margin: 0 0 4px;
  font-weight: 700;
  color: #0f172a;
}
.user-menu__link {
  text-align: left;
  border: none;
  background: transparent;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
}
.user-menu__link:hover {
  background: #f8fafc;
}
.user-menu__link.logout {
  color: #b91c1c;
}


.search-wrap { position: relative; } 

.search-icon-btn,
.search-icon-btn:hover,
.search-icon-btn:focus,
.search-icon-btn:active {
  background: transparent !important;
  border: none; cursor: pointer; padding: 8px; border-radius: 999px;
  outline: none !important; box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
  color: #222;
}


.search-svg {
  width: 24px; height: 24px;
  stroke: currentColor !important; stroke-width: 1.8 !important;
  fill: none !important; display: block;
}


.search-svg .lens-fill { fill: currentColor !important; opacity: 0 !important; transition: opacity .18s ease; }
.search-icon-btn.active .lens-fill { opacity: 1 !important; }  


.search-inline{
  position: absolute;
  top: 50%;
  right: 36px;                
  transform: translateY(-50%);
  width: 0;                   
  opacity: 0;
  pointer-events: none;
  padding: 8px 0;             
  font-size: 0.875rem;
  background: #fff;
  border: 1px solid #d7d7d7;
  border-radius: 999px;       
  box-shadow: 0 6px 18px rgba(0,0,0,.08);
  transition: width .22s ease, opacity .18s ease, padding .18s ease, border-color .18s;
}
.search-inline.open{
  width: min(260px, 72vw);
  opacity: 1;
  pointer-events: auto;
  padding: 8px 12px;
}
.search-inline:focus{ border-color: var(--accent); }


.cart-btn { background: none; border: none; cursor: pointer; padding: 8px; border-radius: 999px; display: flex; align-items: center; justify-content: center; transition: background .15s; color: var(--text); position: relative; }
.cart-btn:hover { background: #f5f5f5; }
.cart-btn:disabled:hover { background: transparent; }
.cart-btn:disabled {
  cursor: default;
  opacity: 0.5;
  background: transparent;
}
.cart-btn--blocked{
  color: #9ca3af;
}
.cart-btn--blocked .cart-svg{
  stroke: #9ca3af;
}
.cart-svg { width: 24px; height: 24px; stroke: var(--text); stroke-width: 1.8; fill: none; }
.cart-btn .cart-count {
  position: absolute;
  top: -2px;
  right: -4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

/* User icon */
.user-btn{ display:inline-flex; align-items:center; justify-content:center; padding:8px; border-radius:999px; color:var(--text); text-decoration:none; }
.user-btn:hover{ background:#f5f5f5; }
.user-svg{ width:24px; height:24px; display:block; }


.navbar-searchbar-outer{ display:none !important; }
.search-popover{ display:none !important; } 


@media (max-width: 1440px){
  .menu {
    gap: 14px;
    margin-left: 18px;
  }
  .menu > li > a{
    font-size: .9rem;
    padding-inline: 6px;
  }
}

@media (max-width: 1260px){
  .navbar__inner{
    display:grid;
    grid-template-columns:auto 1fr auto;
    align-items:center;
    gap:12px;
  }
  .menu { display:none; }
  .search-inline.open{ width: min(220px, 65vw); }
  .logo-link{ grid-column:2; justify-self:center; }
  .hamburger{ display:flex; grid-column:1; justify-self:start; }
  .navbar-actions{
    grid-column:3;
    margin-left:0;
    gap:10px;
    justify-content:flex-end;
  }
  .navbar-actions__main{
    flex:1;
    justify-content:flex-end;
    gap:12px;
  }
  .navbar-actions__core{ display:none; }
  .navbar-actions__cart{ margin-left:auto; }
}

@media (max-width: 768px){
  :root { --nav-pad-x: 16px; }
  .navbar__inner { gap: 12px; }
}

@media (max-width: 640px){
  .navbar-actions { gap: 10px; }
  .logo {
    min-width: 60px;
    max-width: 60px;
    height: 48px;
  }
  .search-inline.open{ width: min(200px, calc(100vw - 140px)); }
}

/* Compact navbar on very small screens */
@media (max-width: 480px){
  :root { --nav-h: 80px; }
  .logo { height: 46px; }
  .navbar-actions { gap: 8px; }
  .search-inline.open{ width: min(180px, calc(100vw - 130px)); }
}


.hamburger{
  display:none;
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  border-radius:8px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  color:#111827;
}
.hamburger:focus-visible{
  outline:3px solid rgba(59,130,246,.35);
  outline-offset:2px;
}
.hamburger__icon{
  width:26px;
  height:26px;
  transition: transform .18s ease;
}
.hamburger.is-active .hamburger__icon{
  transform:rotate(90deg);
}

@media (max-width: 1260px){
  .hamburger{ display:flex; }
}


.mobile-menu{ position: fixed; inset: 0; z-index: 1500; pointer-events: none; }
.mobile-menu.open{ pointer-events: auto; }
.mobile-menu__overlay{ position:absolute; inset:0; background: rgba(0,0,0,.28); opacity:0; transition: opacity .2s ease; }
.mobile-menu.open .mobile-menu__overlay{ opacity:1; }
.mobile-menu__panel{ position:absolute; top:0; left:0; height:100dvh; width:min(86vw, 380px); background:#fff; transform: translateX(-100%); transition: transform .22s ease; box-shadow: 8px 0 30px rgba(0,0,0,.18); overflow:hidden; padding: 16px 16px 0; display:flex; flex-direction:column; }
.mobile-menu.open .mobile-menu__panel{ transform: translateX(0); }

.mobile-menu__nav{ display:block; margin-top:25px; padding-bottom: 20px; flex:1 1 auto; overflow-y:auto; min-height:0; }
.mm-utility{
  padding: 12px 4px 16px;
  border-bottom: 1px solid var(--border);
  display:grid;
  gap:12px;
}
.mm-search{
  display:flex;
  align-items:center;
  gap:8px;
}
.mm-search input{
  flex:1;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:12px;
  font-size:16px;
}
.mm-search input:focus{
  outline:2px solid rgba(29,78,216,.25);
  border-color:#1d4ed8;
}
.mm-search button{
  padding:10px 14px;
  border-radius:12px;
  border:none;
  background:#111827;
  color:#fff;
  font-weight:700;
  cursor:pointer;
}
.mm-search button:hover{ background:#1f2937; }
.mm-search button:focus-visible{
  outline:3px solid rgba(29,78,216,.35);
  outline-offset:2px;
}
.mm-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.mm-btn{
  flex:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  text-decoration:none;
  font-weight:700;
  color:#111827;
  font:inherit;
  cursor:pointer;
}
.mm-btn:hover{ background:#f7f7f8; }
.mm-btn--filled{
  background:#111827;
  color:#fff;
  border-color:#111827;
}
.mm-btn--filled:hover{ background:#1f2937; }
.mm-btn--filled:active{ transform:translateY(1px); }
.mm-btn:active{ transform:translateY(1px); }
.mm-btn:focus-visible{
  outline:3px solid rgba(29,78,216,.35);
  outline-offset:2px;
}
.mm-footer{
  flex-shrink:0;
  margin-top: 0;
  padding-top: 14px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #eef2f7;
  background:#fff;
  box-shadow: 0 -12px 24px rgba(15,23,42,.05);
}
.mm-footerActions{
  display:grid;
  gap:10px;
}
.mm-footerAction{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-height:54px;
  padding:12px 16px;
  border-radius:16px;
  text-decoration:none;
  font-weight:800;
  font-size:1rem;
  border:1px solid #d8e1ef;
}
.mm-footerAction--account{
  background:#0f172a;
  color:#fff;
  border-color:#0f172a;
}
.mm-footerAction--admin{
  background:#eef4ff;
  color:#1d4ed8;
  border-color:#cfe0ff;
}
.mm-footerIcon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
}
.mm-item{ border-bottom: 1px solid var(--border); padding:4px 0; }
.mm-trigger{
  border:none;
  background:transparent;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 4px;
  font-weight:700;
  font-size:1rem;
  color:#111827;
  cursor:pointer;
  text-align:left;
}
.mm-triggerIcon{ transition: transform .2s ease; }
.mm-item.is-open .mm-triggerIcon{ transform: rotate(180deg); }
.mm-sub{
  padding: 6px 4px 14px 4px;
  display:grid;
  gap:12px;
}
.mm-linkAll{
  display:inline-flex;
  align-items:center;
  gap:6px;
  color:#1d4ed8;
  font-weight:700;
  text-decoration:none;
  padding:6px 4px;
}
.mm-linkAll:hover{ color:#0f172a; }
.mm-col{ margin: 2px 0; }
.mm-col h4{ font-size: 13px; color: var(--muted); margin:0 0 6px; text-transform:uppercase; letter-spacing:.04em; }
.mm-col h4:empty{ display:none; }
.mm-col ul{ list-style:none; margin:0; padding:0; display:grid; gap:4px; }
.mm-col li a{
  display:block;
  text-decoration:none;
  color:#222;
  padding:8px 4px;
  border-radius:8px;
}
.mm-col li a:hover{ background:#f7f7f7; }
:root {
  --marquee-height: 42px;
}

.marquee-promo {
  width: 100%;
  margin: 0;
  background: #050505;
  color: #f9fafb;
  overflow: hidden;
  border-radius: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--marquee-height);
  z-index: 120;
}

.marquee-promo__track {
  display: flex;
  align-items: center;
  min-width: -moz-max-content;
  min-width: max-content;
  gap: clamp(1.25rem, 2vw, 2rem);
  padding: 0.55rem 2rem;
  white-space: nowrap;
  will-change: transform;
  animation: marquee-slide 22s linear infinite;
}

.marquee-promo__item {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: clamp(0.78rem, 0.3vw + 0.72rem, 0.95rem);
}

@keyframes marquee-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
:root{
  --footer-bg:#ffffff;
  --footer-border:#e5e7eb;
  --text:#111827;
  --muted:#6b7280;
  --chip:#f1f5f9;
}
.site-footer{
  margin-top: 3.5rem;
  border-top: 1px solid var(--footer-border);
  background: var(--footer-bg);
}

.sf-top{
  display:grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.25rem 0 1.75rem;
}
@media (min-width: 900px){
  .sf-top{
    grid-template-columns: 1fr 1.2fr 1fr; 
    align-items: start;
  }
}
.sf-col .sf-title{
    display: block;
  margin:0 0 .75rem 0;
  font-weight:800;
  color:var(--text);
  letter-spacing:-.01em;
  font-size:1.05rem;
}
.sf-list{
  list-style:none; margin:0; padding:0;
  display:grid; gap:.5rem;
}
.sf-link{
  color:var(--muted); text-decoration:none;
}
.sf-link:hover{ color:var(--text); }
.sf-link-btn{ background:none; border:none; padding:0; cursor:pointer; }
.sf-center{
  text-align:center;
}
.sf-logo{ display:inline-block; }
.sf-logo img{
  max-width: 160px;
  height:auto;
}
.sf-logo-text{
  display:inline-block;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text);
}
.sf-claim{
  color:var(--muted);
  margin:.5rem auto 1rem;
  max-width: 40ch;
}

.sf-payments{
  display:flex; flex-wrap:wrap; gap:.5rem 0rem;
  justify-content:center; align-items:center;
}
.sf-pay{
  display:inline-flex; align-items:center; justify-content:center;
  width:64px; height:40px; border:1px solid var(--footer-border);
  border-radius:8px; color:var(--text); background:#fff;
}
.sf-pay svg{ width:56px; height:32px; }

.sf-social{ display:flex; gap:.65rem; margin-top:.75rem; }
.sf-social-btn{
  width:44px; height:44px; border-radius:999px; background:var(--chip);
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--text); text-decoration:none;
}
.sf-social-btn:hover{ filter: brightness(0.96); }

.sf-mini-links{
  list-style:none; padding:0; margin: .75rem 0 0 0; display:grid; gap:.35rem;
}

.sf-bottom{
  border-top: 1px solid var(--footer-border);
  padding: 1rem 0 2rem;
  text-align:center;
  display:grid; gap:.35rem;
}
.sf-legal{
  display:flex; gap:.5rem; justify-content:center; flex-wrap:wrap;
  font-size:.95rem;
}
.sf-copy{
  color:var(--muted);
  font-size:.9rem;
}
.cart-preview {
  position: fixed;
  inset: 0;
  z-index: 2100;
  pointer-events: none;
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
  padding: 0;
  font-family: Inter, Arial, sans-serif;
}

.cart-preview__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(3px);
  pointer-events: auto;
}

.cart-preview__panel {
  position: relative;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: -12px 0 36px rgba(15, 23, 42, 0.24);
  padding: 28px 20px calc(18px + env(safe-area-inset-bottom, 0px));
  pointer-events: auto;
  transform: translate3d(100%, 0, 0);
  opacity: 0;
  transition: transform 0.32s ease, opacity 0.32s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cart-preview__panel.is-visible {
  transform: translate3d(0, 0, 0);
  opacity: 1;
}

.cart-preview__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.cart-preview__title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.cart-preview__subtitle {
  margin: 0.25rem 0 0;
  color: #64748b;
  font-size: 0.9rem;
}

.cart-preview__close {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #dbe3ef;
  background: #f8fafc;
  color: #0f172a;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
  border-radius: 14px;
  display: grid;
  place-items: center;
  box-shadow: none;
  outline: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.cart-preview__close:hover {
  color: #111e33;
  background: #eef4ff;
  border-color: #bfdbfe;
  transform: translateY(-1px);
}

.cart-preview__close:focus-visible {
  border-color: #60a5fa;
  box-shadow: 0 0 0 4px rgba(96, 165, 250, 0.2);
}

.cart-preview__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 18px;
}

.cart-preview__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.55) transparent;
}

.cart-preview__list::-webkit-scrollbar {
  width: 6px;
}

.cart-preview__list::-webkit-scrollbar-thumb {
  background-color: rgba(148, 163, 184, 0.55);
  border-radius: 999px;
}

.cart-preview__item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
  padding: 12px 0;
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

.cart-preview__item:last-child {
  border-bottom: none;
}

.cart-preview__item.is-highlight {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.cart-preview__thumb img {
  border-radius: 12px;
  width: 72px;
  height: 72px;
  -o-object-fit: cover;
     object-fit: cover;
}

.cart-preview__info{
  display: grid;
  gap: 8px;
  min-width: 0;
}
.cart-preview__top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.cart-preview__meta {
  display: grid;
  gap: 4px;
}

.cart-preview__name {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cart-preview__metaLine {
  font-size: 0.82rem;
  color: #475569;
}

.cart-preview__bottom{
  display:grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items:center;
  justify-content: space-between;
  gap: 12px;
}

.cart-preview__price {
  font-weight: 800;
  color: #0f172a;
  font-size: 1rem;
}
.cart-preview__qtyControls{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  flex: 0 0 auto;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  border-radius: 12px;
  padding: 6px 10px;
  min-height: 42px;
}
.cart-preview__qtyControls button{
  border: none;
  background: transparent;
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: color .15s ease, transform .12s ease;
}
.cart-preview__qtyControls button:hover{
  color:#1f47a1;
  transform: translateY(-1px);
}
.cart-preview__qtyControls span{
  min-width: 20px;
  text-align: center;
  font-weight: 700;
  color: #0f172a;
}

.cart-preview__remove{
  border:1px solid #e2e8f0;
  background:#f8fafc;
  color:#0f172a;
  width:28px;
  height:28px;
  border-radius:999px;
  cursor:pointer;
  font-size:16px;
  line-height:1;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
  flex-shrink: 0;
}
.cart-preview__remove:hover{
  background:#ff00008c;
  color:#fff;
  transform: translateY(-1px);
}

.cart-preview__empty {
  text-align: center;
  color: #64748b;
  padding: 24px 12px;
  font-weight: 600;
}

.cart-preview__summary{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 4px 12px;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin-top: 10px;
  font-weight: 700;
  color:#0f172a;
}
.cart-preview__summary strong{
  font-size: 1.05rem;
}

.cart-preview__footerDock{
  position: sticky;
  bottom: 0;
  z-index: 2;
  margin-top: auto;
  padding-top: 18px;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #fff 22%);
}

.cart-preview__footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 14px;
}

.cart-preview__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid #0f172a;
  font-weight: 700;
  color: #0f172a;
  text-decoration: none;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.cart-preview__action:hover {
  background: #0f172a;
  color: #fff;
  transform: translateY(-1px);
}

.cart-preview__action:active {
  transform: translateY(0);
}

.cart-preview__action--primary {
  background: #0f172a;
  color: #fff;
}
.cart-preview__action--ghost{
  border:1px solid #1f47a1;
  background:#fff;
  color:#1f47a1;
}
.cart-preview__action--ghost:hover{
  background:#f8fafc;
  color:#1f47a1;
}

.cart-preview__action--primary:hover {
  background: #111e33;
}

.cart-preview__action--cta {
  border: none;
  background-image: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;
  box-shadow: 0 18px 32px rgba(0, 123, 255, 0.25);
}

.cart-preview__action--cta:hover {
  background-image: linear-gradient(135deg, #008dff, #3dd8ff);
  color: #fff;
  box-shadow: 0 22px 38px rgba(0, 123, 255, 0.32);
}

@media (max-width: 768px){
  .cart-preview{
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
  }
  .cart-preview__panel{
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    transform: translate3d(100%, 0, 0);
    padding: 20px 16px calc(12px + env(safe-area-inset-bottom, 0px));
    box-shadow: -12px 0 36px rgba(15, 23, 42, 0.24);
  }
  .cart-preview__panel.is-visible{
    transform: translate3d(0, 0, 0);
  }
  .cart-preview__header{
    align-items: center;
  }
  .cart-preview__body{
    margin-top: 14px;
  }
  .cart-preview__list{
    padding-right: 2px;
    gap: 14px;
  }
  .cart-preview__item{
    padding: 4px 0 12px;
    grid-template-columns: 68px 1fr;
  }
  .cart-preview__thumb img{
    width: 68px;
    height: 68px;
  }
  .cart-preview__bottom{
    align-items: center;
  }
  .cart-preview__qtyControls{
    padding: 6px 8px;
    gap: 10px;
  }
  .cart-preview__price{
    font-size: 0.98rem;
  }
  .cart-preview__footer{
    margin-top: 12px;
    gap: 12px;
  }
  .cart-preview__footerDock{
    padding-top: 14px;
  }
  .cart-preview__action{
    min-height: 50px;
    font-size: 0.95rem;
  }
}

.cart-preview__action--cta:active {
  transform: translateY(1px);
  box-shadow: inset 0 2px 6px rgba(0, 123, 255, 0.3);
}

@media (min-width: 768px) {
  .cart-preview {
    align-items: stretch;
    justify-content: flex-end;
    padding: 0;
  }

  .cart-preview__panel {
    width: min(520px, 100vw);
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    box-shadow: -12px 0 36px rgba(15, 23, 42, 0.24);
    transform: translate3d(100%, 0, 0);
  }

  .cart-preview__panel.is-visible {
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 900px) {
  .cart-preview {
    justify-content: flex-end;
    align-items: stretch;
  }

  .cart-preview__panel {
    width: clamp(440px, 36vw, 560px);
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    margin: 0;
    box-shadow: -12px 0 36px rgba(15, 23, 42, 0.25), -6px 0 18px rgba(15, 23, 42, 0.16);
    padding: 34px 28px calc(24px + env(safe-area-inset-bottom, 0px));
    transform: translateX(110%);
  }

  .cart-preview__panel.is-visible {
    transform: translateX(0);
  }

  .cart-preview__body {
    margin-top: 24px;
  }

  .cart-preview__list {
    max-height: none;
  }
}

.hero{
  position: relative;
  width: 100%;
  overflow: hidden;
  isolation: isolate;
  background: #0b0b0b;
  display: flow-root;   
  padding-bottom: .1px; 
  
  min-height: clamp(260px, 55vh, 480px);    
}


.hero__slide{
  position:absolute; inset:0;
  width:100%; height:100%;
  -o-object-fit:cover;
     object-fit:cover; -o-object-position:var(--kb-origin, 50% 50%); object-position:var(--kb-origin, 50% 50%);
  opacity:0; transform:scale(1.08);
  transition:opacity .7s ease;
  will-change:opacity, transform;
}
.hero__slide.is-active{ opacity:1; animation:kbZoom 8000ms ease-out forwards; }
@keyframes kbZoom{ from{ transform:scale(1.08); } to{ transform:scale(1.0); } }


.hero__overlayTop{
  position:absolute; inset:0;
  background:
    radial-gradient(1200px 1200px at 10% 15%, rgba(0,0,0,.35), transparent 60%),
    linear-gradient(90deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 55%);
  pointer-events:none;
}
.hero__overlayBottom{
  position:absolute; left:0; right:0; bottom:0; height:clamp(100px, 16vh, 220px);
  background: linear-gradient(0deg, rgba(0,0,0,.35), rgba(0,0,0,0));
  pointer-events:none;
}


.hero__content{
  position:absolute; left:clamp(16px, 6vw, 80px); top:50%;
  transform:translateY(-50%);
  max-width:min(92vw, 680px);
  color:#fff; text-shadow:0 1px 2px rgba(0,0,0,.25);
}
.hero__kicker{ display:inline-block; font-size:clamp(12px,1.4vw,18px); letter-spacing:.12em; text-transform:uppercase; opacity:.9; }
.hero__title{ margin-top:.35rem; font-weight:800; line-height:1.06; font-size:clamp(32px,5vw,64px); }
.hero__cta{ display:inline-block; margin-top:1rem; padding:.7rem 1.1rem; border-radius:999px; background:#fff; color:#000; font-weight:700; text-decoration:none; }
.hero__nav{ position:absolute; top:50%; transform:translateY(-50%); background:transparent; border:none; padding:8px; color:rgba(255,255,255,.55); cursor:pointer; }
.hero__nav--prev{ left:max(6px, env(safe-area-inset-left) + 6px); }
.hero__nav--next{ right:max(6px, env(safe-area-inset-right) + 6px); }
.hero__chev{ width:32px; height:32px; display:block; }


.hero__dots{ position:absolute; left:50%; transform:translateX(-50%); bottom:clamp(10px, 2.2vh, 18px); display:flex; gap:6px; align-items:center; }
.hero__dot{ width:16px !important; height:6px !important; border-radius:999px !important; background:rgba(255,255,255,.34) !important; border:none; cursor:pointer; }
.hero__dot.is-active{ background:#fff !important; width:24px !important; }

@media (max-width:640px){
  .hero__content{ max-width:88vw; }
  .hero__chev{ width:28px; height:28px; }
}

@media (hover: hover) and (pointer: fine){
  .hero__cta{ transition:transform .15s, background .15s; }
  .hero__cta:hover{ background:#ffffffd9; transform:translateY(-1px); }
  .hero__nav{ transition:color .12s ease, transform .12s ease; }
  .hero__nav:hover{ color:#fff; transform:translateY(-50%) scale(1.04); }
  .hero__dot{ transition:background .2s ease, width .2s ease, transform .2s ease; }
}

@media (prefers-reduced-motion: reduce){
  .hero__slide{ transition:none !important; will-change:auto !important; }
  .hero__slide.is-active{ animation:none !important; }
  .hero__nav{ transition:none !important; }
  .hero__dot{ transition:none !important; }
  .hero__cta{ transition:none !important; }
}
.whatsapp-fab {
  position: fixed;
  z-index: 999;
  right: 1rem;
  bottom: 1rem;
  margin-bottom: env(safe-area-inset-bottom);
  transition: opacity 300ms ease;
  opacity: 1;
  pointer-events: auto;
}
.whatsapp-fab--hidden { opacity: 0; pointer-events: none; }

@media (min-width: 768px) {
  .whatsapp-fab { right: 1.5rem; bottom: 1.5rem; }
}

.whatsapp-fab__btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 10px 25px rgba(0,0,0,.25), 0 6px 10px rgba(0,0,0,.12);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
  -webkit-tap-highlight-color: transparent;
  will-change: transform;
}
@media (min-width: 768px) {
  .whatsapp-fab__btn { width: 64px; height: 64px; }
}

.whatsapp-fab__btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 28px rgba(0,0,0,.28), 0 8px 16px rgba(0,0,0,.12);
}
.whatsapp-fab__btn:active {
  transform: translateY(0) scale(.98);
  box-shadow: 0 8px 18px rgba(0,0,0,.22), 0 6px 12px rgba(0,0,0,.10);
}

.whatsapp-fab__icon {
  width: 28px; height: 28px;
  fill: #fff;
  display: block;
  overflow: visible;             
  shape-rendering: geometricPrecision;
}
@media (min-width: 768px) {
  .whatsapp-fab__icon { width: 32px; height: 32px; }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-fab, .whatsapp-fab__btn { transition: none; }
}
:root{
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --ring:rgba(17,24,39,.09);
  --button:#111827;
}


.category-card{
  display:flex; flex-direction:column;
  text-decoration:none; color:inherit;
  width:100%; max-width:100%; min-width:0;
  background:transparent;
  transition: transform .2s ease;
  will-change: transform;
}


.category-card__media{
  position:relative;
  aspect-ratio:4/5;
  border-radius:24px;
  overflow:hidden;
  background:#f5f5f5;
  border:1px solid var(--border);
  box-shadow:0 1px 0 var(--ring);
  transition: transform .28s cubic-bezier(0.16, 1, 0.3, 1), box-shadow .28s ease, border-color .28s ease;
}
.category-card__img{
  width:100%; height:100%; -o-object-fit:cover; object-fit:cover; display:block;
  transform:scale(1);
  opacity:0;
  transition:opacity .35s ease;
}
.category-card__img.is-loaded{ opacity:1; }

@media (hover: hover) and (pointer: fine){
  .category-card__img{ transition:opacity .35s ease; will-change:opacity; }
  .category-card:hover{
    transform: translateY(-2px);
  }
  .category-card:hover .category-card__media{
    transform: translateY(-3px);
    border-color: rgba(17,24,39,.15);
    box-shadow:0 14px 30px rgba(15,23,42,.14);
  }
  .category-card:hover .category-card__btn{
    background: var(--button);
    color:#fff;
    transform: translateY(-1px);
  }
}

@media (prefers-reduced-motion: reduce){
  .category-card{ transition:none !important; }
  .category-card__img{ transition:none !important; }
  .category-card__media{ transition:none !important; }
  .category-card__btn{ transition:none !important; }
}


.category-card__body{
  padding:.85rem .15rem 0;
  display:flex; flex-direction:column; flex:1;
}


.category-card__title{
  margin:0;
  color:var(--text);
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.02em;
  line-height:1.2;
  font-size:1.02rem;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
}


.category-card__footer{
  margin-top:.6rem;
  display:flex; justify-content:flex-start; align-items:center;
}


.category-card__btn{
  border:2px solid var(--button);
  background:transparent; color:var(--button);
  font-weight:800; font-size:.9rem;
  padding:.5rem .9rem; border-radius:12px;
  pointer-events:none; 
  -webkit-user-select:none; 
     -moz-user-select:none; 
          user-select:none;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.category-card__btn--sm{ font-size:.85rem; padding:.45rem .85rem; }

.category-card:focus-visible{
  outline:3px solid rgba(37,99,235,.35);
  outline-offset:3px;
}

/* container-app moved to global App.css */

.category-grid-section{
  background-color: white;
  padding-top:2rem;
}

.category-grid-title{
  font-weight:800;
  font-size:clamp(1.5rem, 1.2rem + 1vw, 2rem);
  margin:0 0 1rem 0;
}

.category-grid{
  display:grid;
  gap:1.25rem;
  grid-template-columns:1fr;
}

@media (min-width:640px){
  .category-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (min-width:1024px){
  .category-grid{ grid-template-columns: repeat(3, minmax(0,1fr)); }
}

.category-grid-section .category-card{
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition:
    opacity .52s cubic-bezier(0.16, 1, 0.3, 1),
    transform .52s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-grid-section.reveal-visible .category-card{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.category-grid .category-card:nth-child(3n + 2){ transition-delay: 70ms; }
.category-grid .category-card:nth-child(3n + 3){ transition-delay: 140ms; }

@media (prefers-reduced-motion: reduce){
  .category-grid-section .category-card{
    opacity: 1;
    transform: none;
    transition: none;
  }
}
:root{
  --surface:#fff; --text:#111827;
  --shadow:0 10px 30px rgba(0,0,0,.10);
  --shadow-strong:0 12px 32px rgba(0,0,0,.16);
}

.brand-carousel{
  margin:6rem auto;
  padding:3rem 0 4rem;
  content-visibility:auto;
  contain-intrinsic-size: 360px;
  background:transparent;
}

.bubblesTitle{
  display:flex;
  font-weight:800;
  letter-spacing:-.01em;
  font-size:clamp(1.25rem,1rem + 1.5vw,2rem);
  margin: 1.5rem 0 2rem;
  justify-content:center;
}

.bc-viewport{
  position:relative;
  overflow:hidden;
  padding:0 clamp(2.5rem, 6vw, 4.5rem);
}

.bc-track{
  display:flex;
  transition: transform .45s ease;
  will-change:transform;
}

.bc-item{
  display:flex;
  justify-content:center;
  padding:0 0.6rem;
  box-sizing:border-box;
  opacity:0;
  transform: translateY(12px);
  animation:bubbleFade .45s ease forwards;
}

.brand-bubble{
  width:120px;
  height:120px;
  border-radius:999px;
  background:var(--surface);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 12px 30px rgba(15,23,42,.12);
  border:1px solid rgba(15,23,42,.08);
  overflow:hidden;
  transition:transform .25s ease, box-shadow .25s ease;
}

.brand-bubble img{
  width:100%;
  height:100%;
  -o-object-fit:contain;
     object-fit:contain;
  padding:10px;
}

.brand-bubble__text{
  display:block;
  text-align:center;
  padding:0 .5rem;
  font-weight:800;
  font-size:11px;
  letter-spacing:.06em;
  text-transform:uppercase;
  color:var(--text);
}

.bc-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:auto;
  height:auto;
  border:none;
  background:transparent;
  color:#0f172a;
  cursor:pointer;
  z-index:3;
  line-height:1;
  font-size:28px;
  padding:0;
}
.bc-nav:disabled{ opacity:.35; cursor:default; }
.bc-nav--prev{ left:1rem; }
.bc-nav--next{ right:1rem; }
.bc-nav:focus-visible{ outline:2px solid rgba(37,99,235,.35); border-radius:4px; }

@media (hover: hover) and (pointer: fine){
  .brand-bubble:hover{ transform: translateY(-4px) scale(1.02); box-shadow:var(--shadow-strong); }
  .bc-nav{ transition: background .18s ease, transform .18s ease; }
  .bc-nav:hover{ background:#f8fafc; transform:translateY(-50%) scale(1.04); }
}

@media (max-width: 900px){
  .brand-carousel{ margin:4.5rem auto; padding:2.5rem 0 3rem; }
  .bc-viewport{ padding:0 1.75rem; }
}

@media (max-width: 640px){
  .brand-carousel{ margin:3rem auto 3.5rem; }
  .brand-bubble{ width:95px; height:95px; }
  .bc-viewport{ padding:0 1.25rem; }
  .bc-nav{ width:36px; height:36px; font-size:20px; }
  .bc-nav--prev{ left:4px; }
  .bc-nav--next{ right:4px; }
}

@media (prefers-reduced-motion: reduce){
  .bc-track{ transition:none !important; will-change:auto !important; }
  .brand-bubble{ transition:none !important; will-change:auto !important; }
  .bc-nav{ transition:none !important; }
}

@keyframes bubbleFade{
  from{ opacity:0; transform: translateY(12px); }
  to{ opacity:1; transform: translateY(0); }
}
:root{
  --text:#111827;
  --muted:#6b7280;
  --panel:#f1f5f9; 
}


.benefits{
  position: relative;
  margin-top: 3rem;
  margin-bottom: 4rem;
  content-visibility:auto;
  contain-intrinsic-size: 380px;
}
@media (min-width: 1024px){
  .benefits{ margin-top: 4rem; margin-bottom: 6rem; }
}


.benefits-ribbon{
  position:absolute;
  left:0;
  top:-12px;
  width:min(880px, 78%);
  height:72px;
  border-radius:18px;
  z-index:0;
}


.benefits-grid{
  position: relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px){
  .benefits-grid{ grid-template-columns: repeat(3, 1fr); }
}


.benefit{
  padding: 1.25rem 1.25rem 1.5rem;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity .5s cubic-bezier(0.16, 1, 0.3, 1),
    transform .5s cubic-bezier(0.16, 1, 0.3, 1);
}

.benefits.reveal-visible .benefit{
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.benefits.reveal-visible .benefit:nth-child(2){ transition-delay: 70ms; }
.benefits.reveal-visible .benefit:nth-child(3){ transition-delay: 140ms; }


.benefit-title{
  margin: 0 0 .35rem 0;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -.01em;
  font-size: clamp(1.25rem, 0.9rem + 1vw, 1.85rem);
}


.benefit-subtitle{
  margin: 0 auto 1rem;
  color: var(--muted);
  font-size: clamp(1rem, .95rem + .3vw, 1.1rem);
  line-height: 1.6;
  max-width: 48ch;
}


.benefit-icon{
  width: 120px;
  height: 120px;
  color: var(--text);
  display: inline-block;
  margin-top: .25rem;
}

@media (prefers-reduced-motion: reduce){
  .benefit{
    opacity: 1;
    transform: none;
    transition: none;
  }
}
.home-fallback{
  width: 100%;
  padding-top: 2rem;
}

.home-fallback__title{
  width: clamp(220px, 32vw, 430px);
  height: 2.05rem;
  border-radius: 12px;
  margin-bottom: 1.15rem;
}

.home-fallback__title--center{
  margin-inline: auto;
}

.home-fallback__cards{
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.home-fallback__card{
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.home-fallback__media{
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 24px;
}

.home-fallback__line{
  height: 0.92rem;
  width: min(70%, 320px);
  border-radius: 10px;
}

.home-fallback__line--lg{
  height: 1.24rem;
  width: 84%;
}

.home-fallback__line--md{
  height: 1.05rem;
  width: 74%;
}

.home-fallback__pill{
  width: 8.6rem;
  height: 2.2rem;
  border-radius: 13px;
}

.home-fallback--brands{
  margin-top: 5rem;
  padding-bottom: 3.25rem;
}

.home-fallback__bubbles{
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  justify-items: center;
}

.home-fallback__bubble{
  width: clamp(72px, 9vw, 116px);
  aspect-ratio: 1/1;
  border-radius: 999px;
}

.home-fallback--benefits{
  margin-top: 2.3rem;
  padding-bottom: 3rem;
}

.home-fallback__benefits{
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.home-fallback__benefit{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
}

.home-fallback__benefit .home-fallback__line{
  width: min(88%, 500px);
}

.home-fallback__icon{
  margin-top: 0.35rem;
  width: 92px;
  height: 92px;
  border-radius: 999px;
}

.shimmer-surface{
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, #e8edf3 18%, #f3f6fa 38%, #e5ebf2 62%, #e1e8f1 100%);
  background-size: 240% 100%;
  animation: home-shimmer 1.1s linear infinite;
}

@keyframes home-shimmer{
  from{ background-position: 180% 0; }
  to{ background-position: -40% 0; }
}

@media (min-width: 640px){
  .home-fallback__cards{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px){
  .home-fallback__benefits{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px){
  .home-fallback__cards{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .home-fallback--brands{
    margin-top: 3rem;
    padding-bottom: 2.2rem;
  }

  .home-fallback__bubbles{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce){
  .shimmer-surface{
    animation: none;
  }
}
:root{
  --text:#111827;
  --muted:#6b7280;
  --border:#e5e7eb;
  --ring: rgba(17,24,39,.09);
  --button:#111827;
}


.product-card{
  display:flex; flex-direction:column;
  height:100%;
  width:100%; max-width:100%; min-width:0;
  background: transparent;
  transition:none;
  will-change:auto;
  text-decoration:none;
}

.product-card > article{
  display:flex;
  flex-direction:column;
  height:100%;
}


.product-card__media{
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--ring);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.product-card__img{
  width:100%;
  height:100%;
  -o-object-fit:contain;
     object-fit:contain;
  display:block;
  transform: scale(1);
  opacity:0;
  transition: opacity .35s ease, transform .35s ease;
}
.product-card__img.is-loaded{ opacity:1; }


.product-card__pill{
  position:absolute; top:12px; left:12px;
  background:#111827; color:#fff;
  font-weight:800; font-size:.72rem; letter-spacing:.08em;
  padding:.28rem .55rem; border-radius:999px; text-transform:uppercase;
}


.product-card__body{
  padding:.85rem .15rem 0;
  display:flex; flex-direction:column; flex:1;
}
.product-card__tag{
  display:inline-flex; align-items:center; gap:.4rem;
  background:#0f172a; color:#fff; font-weight:800; letter-spacing:.02em;
  padding:.28rem .65rem; border-radius:999px; font-size:.72rem;
  width:-moz-max-content;
  width:max-content; text-transform:uppercase; margin-bottom:.4rem;
}


.product-card__title{
  margin:0; color:var(--text); font-weight:900;
  text-transform:uppercase; letter-spacing:.02em;
  font-size:1.02rem; line-height:1.2;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  min-height:calc(2 * 1.2em);
}


.product-card__subtitle{
  margin:.38rem 0 .7rem 0; color:var(--muted);
  font-size:.93rem; line-height:1.45;
  display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden;
  min-height:calc(2 * 1.45em);
}


.product-card__prices{
  display:flex; align-items:baseline; gap:.5rem; margin-bottom:.6rem;
  min-height:1.5rem;
}
.product-card__old{ color:#9ca3af; text-decoration:line-through; font-size:.9rem; }
.product-card__price{ color:var(--text); font-weight:900; font-size:1.05rem; }
.product-card__note{
  margin:0 0 .7rem 0; color:#0f172a; font-size:.85rem;
  background:#ecfeff; border:1px solid #a5f3fc; border-radius:10px; padding:.55rem .75rem;
}


.product-card__footer{ margin-top:auto; display:flex; justify-content:flex-start; }
.product-card__btn{
  border:2px solid var(--button);
  background:transparent; color:var(--button);
  font-weight:800; font-size:.88rem;
  padding:.5rem .9rem; border-radius:12px; cursor:pointer;
  display:inline-flex; align-items:center; gap:.5rem;
  min-height:46px;
}
.product-card__btn--sm{ font-size:.85rem; padding:.45rem .85rem; }
.product-card__btn--consult{
  width:100%;
  border-color:#0f766e;
  background: linear-gradient(135deg, #0f766e, #0ea5e9);
  color:#fff;
  box-shadow:0 10px 24px rgba(14,165,233,.22);
}
.product-card__btn:active{ transform: translateY(1px); }
.product-card__btn:focus-visible{ outline:3px solid rgba(17,24,39,.25); outline-offset:2px; }
.product-card__btn.is-loading{
  opacity:.75;
  pointer-events:none;
}
.product-card__spinner{
  width:16px;
  height:16px;
  border-radius:999px;
  border:2px solid rgba(17,24,39,.25);
  border-top-color: var(--button);
  animation: product-card-spin .6s linear infinite;
}
@keyframes product-card-spin{
  to{ transform:rotate(360deg); }
}

@media (hover: hover) and (pointer: fine){
  .product-card__img{ transition: opacity .35s ease; will-change:opacity; }
  .product-card__btn{ transition: background-color .15s ease, color .15s ease, transform .1s ease; }
  .product-card__btn:hover{ background:var(--button); color:#fff; }
  .product-card__btn--consult:hover{
    background: linear-gradient(135deg, #115e59, #0284c7);
    border-color:#115e59; color:#fff;
  }
  .product-card:hover .product-card__img{
    transform: scale(1.05);
  }
  .product-card:hover .product-card__media{
    border-color: #cbd5e1;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  }
}

@media (max-width: 640px){
  .product-card__media{
    aspect-ratio: 0.82;
    border-radius: 18px;
  }

  .product-card__pill{
    top: 10px;
    left: 10px;
    font-size: .62rem;
    padding: .24rem .48rem;
  }

  .product-card__body{
    padding-top: .65rem;
  }

  .product-card__tag{
    font-size: .62rem;
    padding: .24rem .52rem;
    margin-bottom: .3rem;
  }

  .product-card__title{
    font-size: .88rem;
    line-height: 1.18;
    min-height: calc(2 * 1.18em);
  }

  .product-card__subtitle{
    margin: .28rem 0 .55rem 0;
    font-size: .8rem;
    line-height: 1.35;
    min-height: calc(2 * 1.35em);
  }

  .product-card__prices{
    gap: .3rem .45rem;
    flex-wrap: wrap;
    margin-bottom: .5rem;
  }

  .product-card__old{
    font-size: .76rem;
  }

  .product-card__price{
    font-size: .96rem;
  }

  .product-card__note{
    margin-bottom: .55rem;
    font-size: .74rem;
    padding: .45rem .6rem;
    border-radius: 9px;
  }

  .product-card__footer{
    width: 100%;
  }

  .product-card__btn{
    width: 100%;
    justify-content: center;
    font-size: .78rem;
    padding: .58rem .72rem;
    border-radius: 10px;
    min-height: 44px;
  }
}

@media (prefers-reduced-motion: reduce){
  .product-card{ transition:none !important; }
  .product-card__img{ transition:none !important; }
  .product-card__btn{ transition:none !important; }
}
.filters {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
  width: 300px;
  padding: 16px 14px 22px;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.filters__toggle {
  display: none;
  width: 100%;
  border: 1px solid #d7dfef;
  background: #fff;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 800;
  color: #0f172a;
  cursor: pointer;
  text-align: left;
  align-items: center;
  justify-content: space-between;
}

.filters__toggleCaret {
  font-weight: 700;
  color: #475569;
}

.filters__content {
  display: block;
}

.filters__sheet {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.filters__sheetBody {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 0;
}

.filters__header {
  display: grid;
  gap: 8px;
  padding-bottom: 6px;
  border-bottom: 1px solid #f1f1f1;
}

.filters__title {
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
}

.filters__headerActions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.filters__inlineSortSelect {
  border: 1px solid #cfd7e6;
  border-radius: 14px;
  padding: 10px 14px;
  min-height: 44px;
  font-size: 0.875rem;
  color: #0f172a;
  background: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.filters__inlineSortSelect:focus {
  outline: none;
  border-color: #2b7fff;
  box-shadow: 0 0 0 3px rgba(43, 127, 255, 0.25);
}

.filters__clear {
  font-size: 0.75rem;
  background: #f5f8ff;
  color: #1d4ed8;
  border: 1px solid #dbe7ff;
  border-radius: 8px;
  padding: 4px 8px;
  cursor: pointer;
}

.filters__clear:hover {
  background: #eaf2ff;
}

.filters__section {
  padding: 12px 0;
  border-bottom: 1px dashed #efefef;
}

.filters__section:last-of-type {
  border-bottom: 0;
}

.filters__sectionTitle {
  font-size: 0.8125rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #111827;
}

.filters__virtual {
  max-height: 260px;
  overflow-y: auto;
  padding-right: 4px;
}

.filters__virtual::-webkit-scrollbar {
  width: 6px;
}

.filters__virtual::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 999px;
}

.filters__virtual::-webkit-scrollbar-track {
  background: transparent;
}

.filters__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}

.filters__list--virtual {
  display: block;
  position: relative;
  gap: 0;
}

.filters__listItem {
  padding: 4px 0;
}

.filters__link {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 0.875rem;
  padding: 8px 10px;
  border-radius: 10px;
  color: #0f172a;
}

.filters__link:hover {
  background: #f7f7f8;
}

.filters__link.is-active {
  background: #e8f0ff;
  color: #1d4ed8;
}

.filters__count {
  color: #9aa3af;
  font-size: 0.75rem;
}

.filters__priceInputs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.filters__priceInputs input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 0.875rem;
  background: #fff;
}

.filters__priceInputs input:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.filters__dash {
  display: none;
}

.filters__priceInputs input::-webkit-outer-spin-button,
.filters__priceInputs input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.filters__priceInputs input[type="number"] {
  -moz-appearance: textfield;
}

.filters__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.75rem;
  background: #fff;
  cursor: pointer;
}

.chip:hover {
  background: #f7f7f8;
}

.chip.is-selected {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.15);
}

.filters__brandList {
  display: grid;
  gap: 8px;
}

.filters__brandButton {
  width: 100%;
  text-align: left;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
  color: #0f172a;
}

.filters__brandButton:hover {
  background: #f7f7f8;
}

.filters__brandButton.is-selected {
  border-color: #1d4ed8;
  box-shadow: 0 0 0 2px rgba(29, 78, 216, 0.15);
  color: #1d4ed8;
}

.filters__input {
  width: 100%;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.filters__input:focus {
  outline: none;
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

.filters__check {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: space-between;
}

.filters__more {
  margin-top: 6px;
  background: #f5f8ff;
  border: 1px solid #dbe7ff;
  color: #1d4ed8;
  font-size: 0.8125rem;
  border-radius: 8px;
  padding: 6px 10px;
  cursor: pointer;
}

.filters__more:hover {
  background: #eaf2ff;
}

.toggle {
  display: flex;
  gap: 10px;
  align-items: center;
}

.toggle input {
  display: none;
}

.toggle__ui {
  width: 44px;
  height: 26px;
  background: #e5e7eb;
  border-radius: 999px;
  position: relative;
  transition: background 0.2s;
}

.toggle__ui::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.toggle input:checked + .toggle__ui {
  background: #2563eb;
}

.toggle input:checked + .toggle__ui::after {
  transform: translateX(18px);
}

.toggle__label {
  font-weight: 600;
}

.toggle__helper {
  color: #6b7280;
  font-size: 0.75rem;
  display: block;
}

.filters__mobileActions {
  display: none;
}

.filters__mobileExit,
.filters__mobileApply {
  min-height: 48px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 0.92rem;
  border: none;
}

.filters__mobileExit {
  background: #eef2f7;
  color: #0f172a;
}

.filters__mobileApply {
  background: #cbd5e1;
  color: #fff;
  cursor: not-allowed;
}

.filters__mobileApply.is-active {
  background: #0b6bff;
  cursor: pointer;
}

@media (max-width: 1024px) {
  .filters {
    position: static;
    width: 100%;
    padding: 0;
    border: none;
    border-radius: 14px;
    box-shadow: none;
    gap: 10px;
  }

  .filters__toggle {
    display: flex;
  }

  .filters__content {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1200;
    margin-top: 0;
    border: 0;
    border-radius: 0;
    background: rgba(15, 23, 42, 0.28);
    padding: 0;
  }

  .filters.is-open .filters__content {
    display: block;
  }

  .filters__sheet {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    background: #fff;
    height: 100dvh;
    overflow: hidden;
    padding: 18px 16px 0;
    box-shadow: 0 -4px 32px rgba(15, 23, 42, 0.14);
  }

  .filters__sheetBody {
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
    padding-bottom: 24px;
    overscroll-behavior: contain;
  }

  .filters__header {
    position: sticky;
    top: 0;
    z-index: 2;
    background: #fff;
    padding-bottom: 12px;
  }

  .filters__headerActions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .filters__inlineSortSelect,
  .filters__clear {
    width: 100%;
  }

  .filters__mobileActions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    margin-top: 0;
    padding: 14px 0 calc(10px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid #eef2f7;
    background: #fff;
    box-shadow: 0 -10px 28px rgba(15, 23, 42, 0.06);
  }
}

.brand-page { margin-top: clamp(6rem, 4vw + 4.5rem, 7rem); }
.brand-page__toolbar { display:flex; align-items:center; justify-content:flex-end; gap: 12px; margin: -0.5rem 0 1rem; flex-wrap: wrap; }
@media (max-width: 640px){
  .brand-page__toolbar { justify-content: space-between; flex-wrap: wrap; }
}
.brand-page__sort select{ -webkit-appearance:none; -moz-appearance:none; appearance:none; background:#fff; border:1px solid #e5e7eb; border-radius:8px; padding:8px 12px; font-size:0.875rem; color:#111; box-shadow: 0 1px 2px rgba(0,0,0,.03); }
.brand-page__sort select:focus{ outline:none; border-color:#0ea5e9; box-shadow: 0 0 0 3px rgba(14,165,233,.15); }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); border:0; }

.brand-page__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.brand-page__sidebar { position: static; }

@media (min-width: 1024px){
  .brand-page__layout { grid-template-columns: 300px 1fr; }
  .brand-page__sidebar { position: sticky; top: 16px; }
}

.product-grid{
  display:grid;
  gap:1.25rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-width: 0;
}

@media (max-width: 640px){
  .brand-page {
    margin-top: clamp(5.1rem, 18vw, 6.4rem);
  }

  .brand-page__layout {
    gap: 16px;
  }

  .product-grid{
    gap: 0.9rem;
  }
}

@media (min-width: 768px){
  .product-grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px){
  .brand-page.container-app { max-width: 1360px; }
  .product-grid{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (min-width: 1536px){
  .brand-page.container-app { max-width: 1440px; }
}


.brand-page__empty {
  color: #6b7280;
  grid-column: 1 / -1;
  text-align: center;
  padding: 24px 0;
}

.brand-page__pagination {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px){
  .brand-page__pagination {
    grid-column: 2;
  }
}
.pagination{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:0.5rem;
  padding:1.5rem 0 2rem;
  flex-wrap:wrap;
}

.pagination__item,
.pagination__control{
  border:1px solid #d1d5db;
  background:#ffffff;
  color:#111827;
  border-radius:999px;
  padding:0.5rem 0.9rem;
  font-size:0.95rem;
  font-weight:600;
  line-height:1;
  cursor:pointer;
  transition:background-color .2s ease, color .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.pagination__item:hover,
.pagination__control:hover{
  background:#f3f4f6;
  border-color:#cbd5f5;
}

.pagination__item:focus-visible,
.pagination__control:focus-visible{
  outline:3px solid rgba(14,165,233,.3);
  outline-offset:2px;
}

.pagination__item--active{
  background:#111827;
  color:#ffffff;
  border-color:#111827;
  cursor:default;
  box-shadow:0 6px 16px rgba(17,24,39,.18);
}

.pagination__item--active:hover{
  background:#111827;
}

.pagination__control:disabled{
  opacity:.35;
  cursor:not-allowed;
  background:#f9fafb;
  border-color:#e5e7eb;
}

.pagination__ellipsis{
  color:#9ca3af;
  font-weight:600;
  min-width:1ch;
  text-align:center;
}

@media (max-width:640px){
  .pagination{
    padding:1rem 0 1.5rem;
    gap:0.35rem;
  }
  .pagination__item,
  .pagination__control{
    padding:0.45rem 0.75rem;
    font-size:0.85rem;
  }
}

.pd {
  padding-block: clamp(12px, 3vw, 24px);
  margin-top: clamp(3.5rem, 3vw + 2.5rem, 6rem);
}
.pd-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(24px, 4vw, 40px); align-items: start; }
.pd-right { display: grid; gap: 16px; }
.pd-breadcrumbs { font-size: .9rem; color: #666; display: flex; gap: 8px; margin-bottom: 16px; flex-wrap: wrap; }
.pd-breadcrumbs .crumb::after { content: "›"; margin: 0 8px; color: #aaa; }
.pd-breadcrumbs .crumb:last-child::after, .pd-breadcrumbs .is-current::after { content: ""; }


.pg { display: grid; gap: 12px; }
.pg-main { background: #f5f5f5; border-radius: 10px; overflow: hidden; display: grid; place-items: center; min-height: clamp(220px, 60vw, 520px); }
.pg-main img { width: 100%; height: clamp(220px, 60vw, 520px); -o-object-fit:contain; object-fit:contain; }
.pg-thumbs { display: grid; grid-auto-flow: column; grid-auto-columns: max-content; gap: 8px; overflow-x: auto; padding-bottom: 4px; }
.pg-thumb { border: 1px solid #ddd; border-radius: 8px; padding: 4px; background: #fff; }
.pg-thumb.is-active { outline: 2px solid #222; }
.pg-thumb img { width: 72px; height: 72px; -o-object-fit: cover; object-fit: cover; border-radius: 6px; }
@media (max-width: 640px){
  .pg-thumb img { width: 56px; height: 56px; }
}


.ps-head{
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.ps-title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.ps-shortdesc{
  margin: 12px 0 16px;
  color:#475569;
  line-height:1.5;
  font-weight:500;
  font-size: 1.05rem;
}
.ps-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #475569;
  font-weight: 600;
  margin: 8px 0 18px;
  flex-wrap: wrap;
}
.stars span { opacity: .35; font-size: 18px; }
.stars span.on { opacity: 1; color: #222; }
.ps-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 12px 0 4px;
}
.ps-price .final { font-size: 28px; font-weight: 700; }
.ps-price .original { text-decoration: line-through; color: #999; }
.ps-price .badge { background: #222; color: #fff; font-size: .8rem; padding: 2px 8px; border-radius: 999px; }
.ps-price-note{
  margin: -2px 0 18px;
  color:#6b7280;
  font-weight:500;
  font-size:.92rem;
}

.ps-encargo{
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  margin: 0;
  box-shadow: none;
}
.ps-encargo__badge{
  display:inline-flex; align-items:center; gap:8px;
  padding:6px 10px; background:#0f172a; color:#fff;
  border-radius:999px; font-weight:700; letter-spacing:.03em; text-transform:uppercase;
  width:-moz-max-content;
  width:max-content; font-size:.7rem;
}
.ps-encargo__badge--inline{
  transform: translateY(2px);
}

.ps-options { display: grid; gap: 12px; margin: 12px 0; }
.vs { display: grid; gap: 6px; }
.vs-select { padding: 10px 12px; border: 1px solid #ddd; border-radius: 8px; background: #fff; }
.vs-label { font-weight: 600; color: #0f172a; font-size: .95rem; }
.vs-value { display: inline-flex; align-items: center; gap: 8px; padding: 8px 12px; background: #f8fafc; border-radius: 10px; border: 1px solid #e5e7eb; width: -moz-max-content; width: max-content; }
.vs-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.vs-chip { border: 1px solid #e5e7eb; background: #fff; padding: 8px 12px; border-radius: 10px; cursor: pointer; font-weight: 600; color: #0f172a; transition: background .15s ease, border-color .15s ease, transform .15s ease; }
.vs-chip:hover { background: #f1f5f9; border-color: #cbd5e1; }
.vs-chip.is-active { background: #0f172a; color: #fff; border-color: #0f172a; transform: translateY(-1px); }

.ps-actions {
  display: flex;
  gap: 12px;
  align-items: stretch;
  flex-wrap: wrap;
  margin: 12px 0;
}
.ps-actions--encargo{
  flex-direction: column;
  align-items: flex-start;
  margin: 16px 0;
}
.ps-actions .qty{ flex: 0 0 auto; }
.ps-actions .btn-primary{ flex: 1 1 180px; width: 100%; }
.qty {
  display: inline-flex;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  overflow: hidden;
  background: #f7f8fa;
  min-height: 52px;
}
.qty button {
  width: 44px;
  border: 0;
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}
.qty button:hover {
  background: #e2e8f0;
}
.qty button:focus-visible {
  outline: 3px solid rgba(37,99,235,.35);
  outline-offset: 2px;
}
.qty input {
  width: 68px;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 600;
  font-size: 1rem;
  color: #0f172a;
  -moz-appearance: textfield;
}
.qty input:focus {
  outline: none;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.btn-primary {
  padding: 14px 18px;
  border: 1px solid #1f47a1;
  border-radius: 12px;
  background: #1f47a1;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  transition: background .18s ease, opacity .18s ease, box-shadow .18s ease, transform .12s ease;
  min-height: 52px;
  text-transform: uppercase;
}
.btn-primary:hover {
  background: #2452be;
  border-color: #2452be;
  box-shadow: 0 10px 24px rgba(36, 82, 190, .18);
  transform: translateY(-1px);
}
.btn-primary:disabled { opacity: .5; cursor: not-allowed; box-shadow: none; transform: none; }
.btn-primary.is-loading{
  opacity:.8;
  pointer-events:none;
  box-shadow: none;
  transform: none;
}
.btn-primary--consult{
  background: linear-gradient(135deg, #0f766e, #0ea5e9);
  color:#fff;
  box-shadow:0 14px 28px rgba(14,165,233,.28);
  border-radius:14px;
  padding:14px 16px;
  font-weight:700;
  letter-spacing:.01em;
}
.ps-actions .btn-primary--consult {
  background: linear-gradient(135deg, #0ea5e9, #0284c7);
  padding: 12px 16px;
  border-radius: 14px;
  flex: 0 0 auto;
  width: auto;
  min-width: 220px;
  align-self: flex-start;
  box-shadow: 0 16px 34px rgba(14, 165, 233, .28);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.ps-actions .btn-primary--consult:hover {
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 18px 36px rgba(14, 165, 233, .32);
}
.ps-actions .btn-primary--consult:focus-visible {
  outline: 3px solid rgba(14,165,233,.28);
  outline-offset: 2px;
}
.btn-spinner{
  width:18px;
  height:18px;
  border-radius:999px;
  border:2px solid rgba(255,255,255,.4);
  border-top-color:#fff;
  animation: btn-spin .6s linear infinite;
}
@keyframes btn-spin{ to{ transform:rotate(360deg); } }

.ps-brief { color: #444; display: grid; gap: 4px; }

.pd-meta { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: #666; margin-top: 8px; }
.stocksku { display: flex; gap: 16px; align-items: center; }
.stock.ok { color: #2a7b2a; }
.stock.out { color: #ab1e1e; }
.stock.encargo { color: #0f172a; font-weight: 800; }
.sku { color: #666; }

.pd-tabs { display: grid; grid-template-columns: 1fr; gap: 24px; margin-top: clamp(28px, 6vw, 40px); }
.ptabs-nav { display: flex; gap: 8px; border-bottom: 1px solid #eee; }
.ptabs-nav button { background: none; border: 0; padding: 12px 10px; font-weight: 600; color: #666; }
.ptabs-nav button.on { color: #222; border-bottom: 2px solid #222; }
.ptabs-panel { padding: 12px 0; color: #333; line-height: 1.55; }

.ps-brief { color: #444; display: grid; gap: 4px; }

@media (max-width: 768px){
  .pd {
    padding: 12px 14px 16px;
    margin-top: clamp(3rem, 3vw + 2rem, 4.5rem);
  }
  .pd-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pd-right {
    display: grid;
    gap: 14px;
  }
  .ps-head{
    gap: 8px;
    align-items: flex-start;
  }
  .ps-title{
    font-size: clamp(22px, 5vw, 26px);
    line-height: 1.15;
  }
  .ps-encargo__badge{
    font-size: .65rem;
    padding: 5px 9px;
  }
  .ps-shortdesc{
    font-size: 1rem;
    margin: 10px 0 12px;
  }
  .ps-meta{
    gap: 10px;
    margin: 6px 0 14px;
  }
  .ps-price{
    margin: 10px 0 4px;
    gap: 10px;
  }
  .ps-price .final{
    font-size: clamp(22px, 5.2vw, 26px);
  }
  .ps-price .badge{
    padding: 2px 6px;
  }
  .ps-price-note{
    font-size: .88rem;
    margin: 0 0 14px;
  }
  .ps-actions{
    flex-direction: column;
    align-items: stretch;
    margin: 10px 0 14px;
  }
  .ps-actions--encargo{
    margin: 12px 0;
  }
  .ps-actions .btn-primary--consult{
    width: 100%;
    min-width: auto;
    align-self: stretch;
  }
  .ps-actions:not(.ps-actions--encargo){
    flex-direction: row;
    align-items: stretch;
  }
  .ps-actions:not(.ps-actions--encargo) .qty{
    flex: 0 0 128px;
  }
  .ps-actions:not(.ps-actions--encargo) .btn-primary{
    flex: 1 1 auto;
    width: auto;
  }
  .ps-actions .qty{
    width: 100%;
    justify-content: center;
  }
}
.ainfo {
  padding: 0;
  background: #fff;
}
.ainfo__header {
  margin: 0;
  padding: 0 0 10px;
  border-bottom: 1px solid #eee;
}
.ainfo__header h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #222;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 10px 6px;
  border-bottom: 2px solid #222;
}
.ainfo__subtitle {
  margin: 0;
  color: #6b7280;
  font-size: .9rem;
}
.ainfo__table {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding: 0 10px;
}
.ainfo__row {
  display: grid;
  grid-template-columns: minmax(140px, 1fr) minmax(0, 1.25fr);
  gap: 12px;
  align-items: start;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, .04);
}
.ainfo__row:nth-child(even) {
  background: #f8fafc;
}
.ainfo__cell {
  color: #0f172a;
  text-align: left;
}
.ainfo__cell--key {
  font-weight: 700;
  letter-spacing: .01em;
}
.ainfo__cell--value {
  color: #1f2937;
  font-weight: 500;
  line-height: 1.4;
}


.pd-skel { display: grid; grid-template-columns: 1.15fr 1fr; gap: 32px; padding-block: 24px; }
.skel-left { height: 520px; border-radius: 12px; background: linear-gradient(90deg,#f2f2f2 25%,#e9e9e9 37%,#f2f2f2 63%); background-size: 400% 100%; animation: sh 1.4s ease infinite; }
.skel-right { display: grid; gap: 12px; }
.skel-line { height: 16px; background: #eee; border-radius: 8px; }
.skel-line.w60 { width: 60%; }
.skel-line.w40 { width: 40%; }
.skel-line.w30 { width: 30%; }
.skel-box { background: #eee; border-radius: 12px; }
.skel-box.w50 { width: 50%; }
.skel-box.h40 { height: 40px; }
@keyframes sh { 0%{background-position:100% 50%}100%{background-position:0 50%} }


@media (max-width: 980px) {
  .pd-grid, .pd-skel { grid-template-columns: 1fr; }
  .pd-tabs { grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .pg-main{ min-height: clamp(200px, 70vw, 380px); }
  .pg-main img{ height: clamp(200px, 70vw, 380px); }
  .pd-right{ gap: 14px; }
  .pd-tabs{ gap: 20px; }
}
* { box-sizing: border-box; }

.cartRoot {
  --cart-bg: #ffffff;
  --card-bg: #ffffff;
  --border: #e7eaf4;
  --text: #111827;
  --muted: #6b7280;
  --accent: #0b6bff;
  --accent-strong: #084cd1;
  --accent-gradient: linear-gradient(135deg, #007bff, #00c6ff);
  --accent-gradient-hover: linear-gradient(135deg, #008dff, #3dd8ff);
  --accent-shadow: 0 18px 34px rgba(0, 123, 255, 0.28);
  --shadow-sm: 0 18px 36px rgba(15, 23, 42, 0.08);

  background: var(--cart-bg);
  min-height: 100vh;
  padding-bottom: 64px;
  overflow-x: hidden;
}

.cartMain {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(20px, 4vw, 32px) clamp(14px, 4vw, 28px);
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(18px, 3vw, 24px);
}

@media (min-width: 1024px) {
  .cartMain {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: flex-start;
  }
}

.cartCard {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cartCard--full {
  grid-column: 1 / -1;
}

.cartCardHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cartTitle {
  margin: 0;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  color: var(--text);
}

.cartClearBtn {
  border: 1px solid #fda4a4;
  background: #fef2f2;
  color: #f04438;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease, box-shadow 0.15s ease;
}

.cartClearBtn:hover {
  background: #fee2e2;
  color: #b91c1c;
  box-shadow: 0 8px 16px rgba(240, 68, 56, 0.12);
}

.cartClearBtn:active {
  transform: scale(0.98);
}

.cartRows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cartRow {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) 150px 120px 48px;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cartRow:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}

.cartProduct {
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 0;
}

.cartThumb {
  width: 68px;
  height: 68px;
  border-radius: 16px;
  -o-object-fit: cover;
     object-fit: cover;
  background: #f6f7fb;
  flex-shrink: 0;
}

.cartProdText {
  min-width: 0;
}

.cartProdTitle {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  word-break: break-word;
}

.cartProdSub {
  font-size: 12px;
  color: var(--muted);
}
.cartProdMeta{
  font-size: 12px;
  color: #475569;
  margin-bottom: 2px;
}

.cartQty {
  display: flex;
  justify-content: center;
}

.qty {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 4px 12px;
  border-radius: 12px;
  background: #f1f3f8;
}

.qtyBtn {
  border: none;
  background: transparent;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.qtyBtn:hover {
  background: #e3e7f3;
}

.qtyBtn:active {
  transform: scale(0.94);
}

.qtyValue {
  min-width: 26px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.cartPrice {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  justify-self: flex-end;
}

.cartRemove {
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 12px;
  background: #fef2f2;
  color: #f04438;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.1s ease;
}

.cartRemove:hover {
  background: #fee2e2;
}

.cartRemove:active {
  transform: scale(0.94);
}

.totalsCard {
  position: sticky;
  top: 120px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.08);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.totalsHeader {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.totalsTitle {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  color: var(--text);
}

.totalsSubtitle {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.totalsList {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.totalsRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
}

.totalsRow.total {
  padding-top: 6px;
  font-size: 16px;
  font-weight: 800;
}

.totalsKey {
  font-weight: 600;
  color: var(--text);
}

.totalsVal {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: var(--text);
}

.totalsVal.muted {
  font-weight: 500;
  color: var(--muted);
}

.totalsGift {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.totalsGift input {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--border);
  accent-color: var(--accent);
}

.totalsGift strong {
  color: var(--text);
}

.checkoutBtn {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 16px;
  background-image: var(--accent-gradient);
  border: none;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  box-shadow: var(--accent-shadow);
  transition: transform 0.1s ease, box-shadow 0.15s ease;
}

.checkoutBtn:hover {
  transform: translateY(-1px);
  background-image: var(--accent-gradient-hover);
  box-shadow: 0 22px 40px rgba(0, 123, 255, 0.32);
}

.checkoutBtn:active {
  transform: translateY(0);
}

.totalsBack {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 52px;
  border-radius: 16px;
  background: #0f172a;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: opacity 0.15s ease;
}

.totalsBack:hover {
  opacity: 0.94;
}

.cartEmpty {
  text-align: center;
  background: #ffffff;
  border: none;
  border-radius: 32px;
  padding: 64px 32px;
  box-shadow: none;
  color: var(--muted);
  max-width: 1040px;
  margin: 0 auto;
}

.cartEmptyIcon {
  width: 96px;
  height: 96px;
  margin: 0 auto 16px;
  border-radius: 22px;
  background: #eaf3ff;
  color: #0b6bff;
  display: grid;
  place-items: center;
  box-shadow: none;
}

.cartEmptyTitle {
  margin: 8px 0;
  font-size: 32px;
  font-weight: 800;
  color: var(--text);
}

.cartEmptyText {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
}

.cartEmptyBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 16px;
  background-image: var(--accent-gradient);
  border: none;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  margin-top: 16px;
  box-shadow: var(--accent-shadow);
}

.cartEmptyBtn:hover {
  transform: translateY(-1px);
  background-image: var(--accent-gradient-hover);
}

@media (max-width: 900px) {
  .cartRow {
    grid-template-columns: minmax(0, 1fr);
    gap: 18px;
    padding: 22px;
  }

  .cartQty {
    justify-content: flex-start;
  }

  .cartPrice {
    justify-self: flex-start;
  }

  .cartRemove {
    justify-self: flex-start;
  }
}

@media (max-width: 1023px) {
  .totalsCard {
    position: static;
  }
}

@media (max-width: 640px) {
  .cartMain {
    padding: 18px 12px 34px;
  }

  .cartCardHeader {
    align-items: stretch;
  }

  .cartClearBtn {
    width: 100%;
    min-height: 44px;
  }

  .cartRow {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "product remove"
      "qty price";
    gap: 14px 12px;
    padding: 16px;
    align-items: center;
  }

  .cartProduct {
    grid-area: product;
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
  }

  .cartThumb {
    width: 56px;
    height: 56px;
    border-radius: 14px;
  }

  .cartProdTitle {
    font-size: 14px;
  }

  .cartQty {
    grid-area: qty;
    justify-content: flex-start;
    min-width: 0;
  }

  .qty {
    min-width: 152px;
    width: 100%;
    justify-content: space-between;
  }

  .cartPrice {
    grid-area: price;
    font-size: 18px;
    font-weight: 800;
    justify-self: flex-end;
    align-self: center;
    text-align: right;
  }

  .cartRemove {
    grid-area: remove;
    justify-self: flex-end;
    align-self: flex-start;
    width: 42px;
    height: 42px;
  }

  .totalsCard {
    padding: 18px 16px;
  }

  .checkoutBtn,
  .totalsBack {
    height: 48px;
  }

  .cartEmpty {
    padding: 48px 20px;
  }

  .cartEmptyTitle {
    font-size: 26px;
  }

  .cartEmptyText {
    font-size: 16px;
  }
}
* {
  box-sizing: border-box;
}

.checkout-page {
  --bg: #f5f7fd;
  --card: #ffffff;
  --border: #e7eaf4;
  --text: #0f172a;
  --muted: #6b7280;
  --accent: #0b6bff;
  --accent-dark: #094ed1;
  --accent-gradient: linear-gradient(135deg, #007bff, #00c6ff);
  --accent-gradient-hover: linear-gradient(135deg, #008dff, #3dd8ff);
  --accent-shadow: 0 18px 34px rgba(0, 123, 255, 0.28);
  --shadow-card: 0 22px 46px rgba(15, 23, 42, 0.08);
  --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.05);

  margin-top: 0;
  min-height: 100vh;
  background: var(--bg);
  padding: clamp(28px, 5vw, 48px) clamp(16px, 4vw, 32px);
}

.checkout-shell {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
}

.checkout-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78vh;
  padding: 24px;
}

.checkout-empty-card {
  background: none;
  border: none;
  border-radius: 32px;
  padding: clamp(36px, 6vw, 56px);
  box-shadow: none;
  display: grid;
  gap: 16px;
  max-width: 720px;
  text-align: center;
}

.checkout-empty-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto;
  border-radius: 20px;
  background: #eaf3ff;
  color: #0b6bff;
  display: grid;
  place-items: center;
  font-size: 36px;
  box-shadow: none;
}

.checkout-empty-title {
  margin: 4px 0 0;
  font-size: 32px;
  color: var(--text);
  font-weight: 800;
}

.checkout-empty-sub {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.checkout-empty-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3.5vw, 28px);
  min-width: 0;
}

@media (min-width: 1024px) {
  .checkout-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.9fr);
    align-items: flex-start;
  }
}

.section-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: clamp(22px, 3.5vw, 28px);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.section-title {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8c95a9;
  font-weight: 700;
}

.section-subtitle {
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8c95a9;
  font-weight: 700;
  margin: 0 0 16px;
}

.label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 6px;
}

.input {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 11px 15px;
  min-height: 46px;
  font-size: 16px;
  color: var(--text);
  background: #fcfdff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

select.input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10.59.58L12 2 6 8 0 2 1.41.58 6 5.17 10.59.58z' fill='%2399A3B5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 38px;
  cursor: pointer;
}

.input::-moz-placeholder {
  color: #9da5b6;
}

.input::placeholder {
  color: #9da5b6;
}

.input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.18);
  outline: none;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.form-grid.cols-2 {
  gap: 14px;
}

@media (min-width: 768px) {
  .form-grid.cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.divider {
  height: 1px;
  background: var(--border);
  width: 100%;
  margin: 8px 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--accent);
  background-image: var(--accent-gradient);
  color: #ffffff;
  border-radius: 15px;
  padding: 13px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: var(--accent-shadow);
  text-decoration: none;
}

.btn-primary:hover {
  background-image: var(--accent-gradient-hover);
  box-shadow: 0 22px 40px rgba(0, 123, 255, 0.32);
}

.btn-primary:active {
  transform: translateY(1px);
}

.btn-primary[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.4);
  color: var(--text);
  border-radius: 14px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.2s ease, transform 0.12s ease;
  backdrop-filter: blur(4px);
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: rgba(0, 123, 255, 0.4);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.btn-ghost:active {
  transform: translateY(1px);
}

.btn-link {
  border: none;
  background: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  padding: 8px 10px;
  text-decoration: underline;
}

.btn-link:hover {
  color: var(--text);
}

.space-y-6 > * + * {
  margin-top: 24px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pm-option {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fcfdff;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  text-align: left;
}

.pm-option strong {
  font-size: 14px;
  color: var(--text);
}

.pm-option small {
  font-size: 12px;
  color: var(--muted);
}

.pm-option.active,
.pm-option:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2);
  outline: none;
  background: #eef6ff;
}

.sticky-actions {
  position: sticky;
  bottom: 0;
  padding-top: 16px;
  margin-top: 24px;
  display: flex;
  align-items: center;
  background: linear-gradient(transparent, var(--card) 60%);
}

.sticky-actions .btn-primary {
  margin-left: auto;
}

.step {
  border-radius: 20px;
  border: 1px solid transparent;
}

.step-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
  flex-wrap: wrap;
}

.dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 12px;
  background: #f1f4fb;
}

.dot.ok {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.step-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
}

.step-edit {
  margin-left: auto;
  border: none;
  background: none;
  font-size: 12px;
  color: var(--muted);
  cursor: pointer;
}

.step-edit:hover {
  color: var(--text);
}

.step-body {
  overflow: hidden;
  min-width: 0;
}

.step-content,
.space-y-6,
.checkout-block,
.section-form,
.shipping-options,
.summary-stack,
.summary-stack-inline,
.status-module {
  min-width: 0;
}

.step-body.enter {
  animation: slideDown 0.35s ease both;
}

.step-body.exit {
  max-height: 0;
  opacity: 0.6;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.sub-steps {
  display: flex;
  gap: 16px;
  margin: 8px 0 16px;
}

.sub-step {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sub-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: #f1f4fb;
}

.sub-dot.ok {
  background: var(--accent);
  border-color: var(--accent);
  color: #ffffff;
}

.sub-text {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.sub-step.done .sub-text {
  color: var(--text);
}

.aside-sticky {
  position: sticky;
  top: calc(var(--marquee-height, 0px) + var(--nav-h, 88px) + 24px);
  align-self: flex-start;
}

.product-mini {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}

.product-mini img {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  border: 1px solid var(--border);
  -o-object-fit: cover;
     object-fit: cover;
  background: #f6f7fb;
}

.mini-title {
  font-size: 15px;
  color: var(--text);
  font-weight: 700;
}

.mini-meta {
  font-size: 12px;
  color: var(--muted);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #374151;
  margin: 10px 0;
}

.summary-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.summary-products { display:flex; flex-direction:column; gap:12px; margin-bottom:12px; }
.summary-products-title { font-size:14px; font-weight:700; color: var(--text); }
.summary-product-row { display:flex; gap:12px; align-items:center; }
.summary-product-row img { width:48px; height:48px; border-radius:12px; -o-object-fit:cover; object-fit:cover; border:1px solid var(--border); }
.summary-product-info { display:flex; flex-direction:column; gap:2px; min-width: 0; }
.summary-product-name { font-size:13px; font-weight:600; color: var(--text); }
.summary-product-meta { font-size:12px; color: var(--muted); }

.status-module {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.status-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
}

.status-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  padding: 0;
  margin-bottom: 6px;
}

.status-hero-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  -o-object-fit: contain;
     object-fit: contain;
  background: #fff;
  padding: 6px;
  border: 2px solid rgba(15, 23, 42, 0.08);
}

.status-hero-copy {
  max-width: 520px;
}

.status-hero-title {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  color: var(--text);
}

.status-hero-sub {
  margin: 2px 0 0;
  font-size: 16px;
  color: #475569;
}

.status-hero-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
}

.status-hero-icon--success {
  background: #ecfdf5;
  border-color: #34d399;
  color: #047857;
}

.status-hero-icon--info {
  background: #eef2ff;
  border-color: #818cf8;
  color: #312e81;
}

.status-hero-icon--pending {
  background: #fff7ed;
  border-color: #fdba74;
  color: #b45309;
}

.status-hero-icon--danger {
  background: #fef2f2;
  border-color: #f87171;
  color: #b91c1c;
}

.status-accordion {
  border: 1px solid var(--border);
  border-radius: 18px;
  margin-top: 12px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.status-accordion.is-open {
  border-color: rgba(59, 130, 246, 0.4);
}

.status-accordion-toggle {
  width: 100%;
  border: none;
  background: none;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.status-accordion-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 800;
  color: #94a3b8;
}

.status-accordion-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.status-accordion-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease;
  position: relative;
}

.status-accordion-icon::before {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid #0f172a;
  border-bottom: 2px solid #0f172a;
  transform: rotate(45deg);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.status-accordion.is-open .status-accordion-icon {
  background: #eef2ff;
  border-color: #c7d2fe;
}

.status-accordion.is-open .status-accordion-icon::before {
  transform: rotate(-135deg);
  border-color: #4338ca;
}

.status-accordion-body {
  padding: 0 22px 18px;
  border-top: 1px solid var(--border);
}

.status-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.status-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.status-icon.ok {
  background: var(--accent);
  color: #ffffff;
}

.status-icon.fail {
  background: #f43f5e;
  color: #ffffff;
}

.status-icon.pending {
  background: #f59e0b;
  color: #ffffff;
}

.status-title {
  margin: 0;
  font-size: 18px;
  color: var(--text);
}

.status-sub {
  font-size: 13px;
  color: #4b5563;
}

.status-foot {
  margin-top: 18px;
}

.input.input-error {
  border-color: #dc2626;
}

.error-text {
  color: #dc2626;
  font-size: 12px;
  margin-top: 6px;
  display: block;
}

.callout {
  border-radius: 13px;
  padding: 12px 14px;
  margin-top: 10px;
  border: 1px solid #f8d7da;
  word-break: break-word;
}

.callout-error {
  background: #fee2e2;
  color: #991b1b;
  border-left: 4px solid #dc2626;
}

.callout-info {
  background: #f1f5ff;
  border-color: #d0daff;
  border-left: 4px solid #5b3df5;
  color: #1e3a8a;
}

.micro-copy {
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
}

.checkout-payment-note {
  margin-top: 8px;
}

.micro-copy--callout {
  margin-top: 8px;
  font-size: 11px;
  color: currentColor;
  opacity: 0.78;
}

.payment-brick-wrapper,
#payment-brick,
#payment-brick > div {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.payment-brick-wrapper iframe {
  max-width: 100%;
}

.mp-card-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.mp-card-form__docInputs {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 12px;
}

.mp-hosted-field {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #fcfdff;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.mp-hosted-field iframe {
  width: 100% !important;
  min-height: 24px !important;
}

.input-uppercase {
  text-transform: uppercase;
}

.mp-card-form__submit {
  width: 100%;
  margin-top: 8px;
}

.payment-overlay {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  pointer-events: auto;
}
.payment-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.payment-overlay__content {
  position: relative;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 28px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #0f172a;
  font-weight: 700;
  min-width: 240px;
}
.payment-spinner {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 4px solid #e5e7eb;
  border-top-color: #0b6bff;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.checkout-block { display: flex; flex-direction: column; gap: 24px; }
.step-section { display: flex; flex-direction: column; gap: 16px; }
.step-section-header { display: flex; align-items: flex-start; gap: 16px; }
.step-index {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  background-image: var(--accent-gradient);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  box-shadow: var(--accent-shadow);
}
.step-section-title { margin: 0; font-size: 20px; font-weight: 800; color: var(--text); }
.step-section-subtitle { margin: 4px 0 0; font-size: 13px; color: var(--muted); }
.edit-link { border: none; background: none; color: #2563eb; font-weight: 600; font-size: 13px; cursor: pointer; margin-left: auto; }
.edit-link:hover { text-decoration: underline; }
.section-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.summary-card { border: 1px solid var(--border); border-radius: 18px; padding: 16px 18px; background: #ffffff; display: grid; gap: 10px; }
.summary-line { display: flex; gap: 12px; font-size: 14px; color: var(--text); }
.summary-line span { width: 140px; max-width: 40%; font-weight: 600; color: #4b5563; }
.summary-line strong { font-weight: 700; color: var(--text); }
.summary-stack { display: grid; gap: 16px; }
@media (min-width: 768px) {
  .summary-stack { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
}
.summary-card-title { font-size: 13px; font-weight: 700; color: var(--text); text-transform: uppercase; letter-spacing: 0.04em; }
.summary-stack-inline { margin-top: 12px; margin-bottom: 8px; }
.summary-stack-bridge { margin-bottom: 20px; }
.section-actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.shipping-modes { display: flex; gap: 12px; flex-wrap: wrap; }
.shipping-tile { flex: 1; min-width: 220px; border: 1px solid var(--border); border-radius: 16px; padding: 14px 16px; display: flex; align-items: center; gap: 12px; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; background: #fff; }
.shipping-tile input { width: 18px; height: 18px; accent-color: var(--accent); }
.shipping-title { font-weight: 700; font-size: 14px; color: var(--text); }
.shipping-sub { font-size: 12px; color: var(--muted); }
.shipping-tile.active { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2); background: #eef6ff; }
.pickup-select { margin-top: 8px; }
.shipping-options { border: 1px solid var(--border); border-radius: 16px; padding: 16px; background: #f9fbff; display: flex; flex-direction: column; gap: 12px; }
.shipping-options-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.flex-zones-link { margin-top: 6px; background: none; border: none; padding: 0; color: #3da5ff; font-weight: 700; font-size: 13px; text-decoration: underline; cursor: pointer; }
.flex-zones-link:hover { color: #1c7ed6; }
.shipping-options-title { font-weight: 700; font-size: 14px; color: var(--text); text-transform: uppercase; letter-spacing: .04em; }
.shipping-options-sub { font-size: 12px; color: var(--muted); }
.shipping-options-loading { font-size: 12px; color: var(--muted); }
.shipping-options-grid { display: flex; flex-direction: column; gap: 10px; }
.shipping-option-card { display: flex; align-items: center; gap: 12px; border: 1px solid var(--border); border-radius: 14px; padding: 12px 16px; cursor: pointer; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; background: #fff; }
.shipping-option-card input { width: 16px; height: 16px; accent-color: var(--accent); }
.shipping-option-card.active { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.2); background: #eef6ff; }
.shipping-option-info { flex: 1; }
.shipping-option-top { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.shipping-option-title { font-weight: 700; font-size: 14px; color: var(--text); }
.shipping-option-sub { font-size: 12px; color: var(--muted); }
.shipping-option-detail { font-size: 12px; color: var(--muted); margin-top: 4px; }
.shipping-option-badge { font-size: 10px; letter-spacing: .04em; font-weight: 700; text-transform: uppercase; background: rgba(16, 185, 129, 0.15); color: #047857; border-radius: 999px; padding: 2px 8px; }
.shipping-option-price { font-weight: 700; color: var(--text); }
.modal-overlay { position: fixed; inset: 0; width: 100vw; height: 100vh; background: rgba(15, 23, 42, 0.55); display: grid; place-items: center; padding: 18px; z-index: 3000; }
.modal-card { position: relative; background: #ffffff; border-radius: 18px; padding: 22px 26px; width: min(720px, 96vw); max-height: 90vh; overflow: auto; box-shadow: 0 24px 70px rgba(15, 23, 42, 0.22); color: var(--text); }
.modal-card-wide { width: min(880px, 96vw); }
.modal-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 12px; }
.modal-header h3 { margin: 0; font-size: 20px; font-weight: 800; }
.modal-close { border: none; background: #f2f4f8; width: 36px; height: 36px; border-radius: 10px; font-size: 18px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.modal-sub { margin: 6px 0 12px; color: var(--muted); font-size: 14px; }
.modal-zones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 10px; margin-bottom: 18px; }
.modal-chip { display: inline-block; padding: 10px 12px; border-radius: 12px; background: #f5f7fb; color: var(--text); font-weight: 700; font-size: 13px; border: 1px solid #e7eaf4; }
.modal-actions { display: flex; justify-content: flex-end; }
.modal-btn { border: none; background: #3f4e55; color: #ffffff; padding: 12px 18px; border-radius: 12px; font-weight: 800; cursor: pointer; min-width: 120px; }
.shipping-options-empty { font-size: 13px; color: var(--muted); }
.shipping-options-meta { font-size: 12px; color: var(--muted); padding: 8px 0 0; }
.shipping-options-meta.positive { color: #047857; }
.shipping-options-meta.negative { color: #b45309; }
.step-section.is-disabled { opacity: 0.4; pointer-events: none; }

@media (max-width: 1023px) {
  .checkout-page {
    padding: 24px 12px 48px;
  }

  .aside-sticky {
    position: static;
    margin-top: 0;
  }

  .sticky-actions {
    position: static;
    background: transparent;
    justify-content: flex-end;
  }

  .btn-primary {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .checkout-page {
    padding: 20px 0 40px;
  }

  .section-card {
    padding: 20px 14px;
    border-radius: 20px;
  }

  .checkout-shell,
  .checkout-grid,
  .space-y-6,
  .step,
  .step-body,
  .step-content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .step-head,
  .summary-stack-inline,
  .summary-stack-bridge {
    padding-inline: 12px;
  }

  .field,
  .input,
  .shipping-options,
  .shipping-option-card,
  .summary-card,
  .status-card {
    max-width: 100%;
    min-width: 0;
  }

  .payment-methods {
    flex-direction: column;
  }

  .mp-card-form__grid,
  .mp-card-form__docInputs {
    grid-template-columns: 1fr;
  }

  .summary-card {
    padding: 14px;
  }

  .summary-line {
    flex-direction: column;
    gap: 4px;
  }

  .summary-line span {
    width: auto;
    max-width: none;
  }

  .summary-product-row {
    align-items: flex-start;
  }

  .summary-product-row img {
    width: 44px;
    height: 44px;
  }

  .shipping-modes {
    flex-direction: column;
  }

  .shipping-tile {
    min-width: 0;
    width: 100%;
    align-items: flex-start;
  }

  .shipping-option-card {
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 12px 14px;
  }

  .shipping-option-info,
  .shipping-option-price {
    width: 100%;
  }

  .modal-card,
  .modal-card-wide {
    width: min(100%, 96vw);
    padding: 18px 16px;
  }

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

  .payment-overlay__content {
    min-width: 0;
    width: min(92vw, 320px);
    padding: 18px 16px;
  }
}
.success { margin-top: 6rem; padding: 24px 0; }
.success-card { max-width: 760px; margin: 0 auto; }
.success-title { margin: 0 0 6px; font-size: 24px; font-weight: 900; }
.success-sub { margin: 0 0 16px; color: #6B7280; }
.loading { color: #6B7280; }

.sandbox-note {
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  padding: 16px 20px;
  margin-bottom: 20px;
  background: #f8fafc;
}
.sandbox-note p {
  margin: 4px 0 12px;
  color: #475569;
}
.sandbox-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}
.sandbox-chip {
  border: 1px solid #cbd5f5;
  background: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 13px;
  text-transform: capitalize;
  cursor: pointer;
  transition: all 0.15s ease;
}
.sandbox-chip.is-active {
  background: #0f172a;
  color: #fff;
  border-color: #0f172a;
}
.sandbox-note small {
  display: block;
  color: #6b7280;
  margin-top: 4px;
  font-size: 12px;
}
.auth {
  min-height: 100vh;
  display: flex;
  background: #f8f9fb;
  color: #0f172a;
  margin-bottom: -4rem;
  padding-bottom: 4rem;
}

.auth-split {
  padding: 0;
}

.auth-visual {
  flex: 1;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  background: url('/assets/login2-79D4rqRM.jpg') center center / cover no-repeat;
}

.auth-panel {
  flex: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.4rem, 4vw, 3rem);
  background: #fff;
}

.auth-card {
  width: min(480px, 92%);
  display: grid;
  gap: 1.2rem;
  background: transparent;
  border: none;
  box-shadow: none;
  margin-top: 0;
}

.auth-tabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.auth-tab {
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #0f172a;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, transform 0.12s ease;
}

.auth-tab.active {
  border-color: #0f172a;
  background: #0f172a;
  color: #ffffff;
  transform: translateY(-1px);
}

.btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.5);
  border-top-color: #fff;
  border-radius: 50%;
  display: inline-block;
  animation: btnSpin 0.7s linear infinite;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

.auth-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  padding: 16px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.auth-modal {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  width: min(480px, 94%);
  box-shadow: 0 28px 90px -38px rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.4);
  display: grid;
  gap: 16px;
  position: relative;
  animation: authModalIn 0.14s ease;
}

.auth-code-inputs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 54px));
  gap: 12px;
  justify-content: center;
  max-width: 380px;
  margin: 2px auto 4px;
}

.auth-code-inputs input {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 12px 0;
  height: 54px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  box-shadow: 0 10px 26px -20px rgba(15, 23, 42, 0.5);
}

.auth-code-inputs input:focus {
  outline: none;
  border-color: #0f172a;
  box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.14);
}

.auth-modal h3 {
  margin: 0;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.auth-modal p {
  margin: 0;
  color: #475569;
  line-height: 1.5;
}

.auth-modal .btn-primary {
  width: 100%;
  border-radius: 12px;
  margin-top: 2px;
}

.auth-modal .auth-link {
  justify-self: center;
}

.auth-reset-actions {
  display: grid;
  gap: 8px;
}
.auth-admin-modal{ gap:12px; }
.auth-admin-actions{ display:grid; gap:8px; }
.btn-secondary{
  padding: 12px 16px;
  border-radius: 10px;
  background: #e2e8f0;
  color: #0f172a;
  font-weight: 700;
  border: 1px solid #cbd5e1;
  cursor: pointer;
  transition: transform .1s ease, box-shadow .15s ease;
}
.btn-secondary:hover{ transform: translateY(-1px); box-shadow: 0 10px 22px -16px rgba(15,23,42,.35); }

@keyframes authModalIn {
  from { transform: translateY(6px) scale(0.985); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}

.auth-visual-text {
  max-width: 460px;
  text-align: center;
  color: #ffffff;
  margin: 0;
  transform: translateY(-6%);
}

.auth-visual-text h2 {
  margin: 0 0 10rem 0;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.auth-visual-kicker {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #000000;
  font-weight: 700;
}

.auth-logo-wrap {
  text-align: center;
  display: grid;
  place-items: center;
  gap: 0.35rem;
  margin: 0.35rem auto 0.2rem;
}

.auth-logo-img {
  width: 82px;
  height: 82px;
  -o-object-fit: contain;
     object-fit: contain;
}

.auth-brand-sub {
  color: #6b7280;
  font-size: 0.98rem;
}

.auth-form {
  display: grid;
  gap: 1rem;
}

.auth-title {
  margin: 0;
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.auth-sub {
  margin: -0.15rem 0 0.2rem;
  color: #6b7280;
  line-height: 1.6;
}

.auth-label {
  display: grid;
  gap: 0.45rem;
  color: #0f172a;
  font-weight: 600;
  font-size: 0.98rem;
}

.auth-label input {
  padding: 0.95rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 14px;
  background: #fff;
  font-size: 1rem;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.auth-label input:focus {
  outline: none;
  border-color: #111827;
  box-shadow: 0 0 0 4px rgba(17, 24, 39, 0.12);
  transform: translateY(-1px);
}

.auth-password {
  position: relative;
  display: grid;
}

.auth-password input {
  padding-right: 2.5rem;
}

.auth-eye {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
  font-size: 16px;
}

.auth-remember {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.auth-link {
  color: #111827;
  font-weight: 600;
  text-decoration: none;
}

.auth-link:hover {
  text-decoration: underline;
}

.auth-inline-msg {
  font-size: 0.95rem;
  color: #0f172a;
  font-weight: 600;
}

.auth .btn-primary {
  width: 100%;
  border-radius: 12px;
  font-size: 1.05rem;
  padding: 0.95rem;
  font-weight: 700;
  background: #111827;
  border: none;
  color: #fff;
  box-shadow: 0 16px 28px -22px rgba(0, 0, 0, 0.55);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.auth .btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px -24px rgba(0, 0, 0, 0.55);
}

.auth-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.95rem;
  color: #4b5563;
}

.auth-separator {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #9ca3af;
  font-size: 0.95rem;
  text-transform: lowercase;
}

.auth-separator::before,
.auth-separator::after {
  content: "";
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

.auth-socials {
  display: grid;
  gap: 0.6rem;
}

.auth-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  background: #fff;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.auth-social:hover {
  border-color: #d1d5db;
  box-shadow: 0 10px 22px -18px rgba(0, 0, 0, 0.35);
}

.auth-reset-actions {
  display: grid;
  gap: 8px;
}

.auth-login-toast {
  position: fixed;
  top: 92px;
  right: 20px;
  background: #0f172a;
  color: #fff;
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 18px 40px -26px rgba(0,0,0,0.5);
  z-index: 9999;
  animation: toastIn .18s ease;
}

.auth-toast-icon {
  width: 28px;
  height: 28px;
  color: #10b981;
}

.auth-toast-title {
  margin: 0;
  font-weight: 800;
}

.auth-toast-sub {
  margin: -2px 0 0 0;
  color: #cbd5e1;
}

@keyframes toastIn {
  from { transform: translateY(-6px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.auth-social-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #f3f4f6;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #111827;
}

.auth-resend {
  justify-self: flex-start;
  margin-top: -0.1rem;
  border: none;
  background: transparent;
  color: #111827;
  font-weight: 700;
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0;
}

.auth-resend:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .auth {
    flex-direction: column;
  }

  .auth-visual {
    width: 100%;
    min-height: 180px;
  }

  .auth-panel {
    padding: 2.4rem 1.4rem 3rem;
  }

  .auth-card {
    width: min(520px, 100%);
  }
}

@media (max-width: 600px) {
  .auth-remember {
    flex-direction: column;
    align-items: flex-start;
  }

  .auth-code-inputs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .auth-code-inputs input {
    height: 52px;
  }
}
.qs-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #f6f8ff 0%, #ffffff 32%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.5rem 6rem;
  gap: 3.5rem;
}

.qs-heading {
  font-size: clamp(2.5rem, 5vw, 3rem);
  font-weight: 700;
  color: #1f2937;
  text-align: center;
  text-shadow: 0 10px 25px rgba(31, 41, 55, 0.15);
}

.qs-main {
  width: min(1100px, 100%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  align-items: center;
}

.qs-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(31, 41, 55, 0.18);
  isolation: isolate;
}

.qs-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 60%, rgba(15, 23, 42, 0.2));
  pointer-events: none;
}

.qs-image__media {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}

.qs-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #4b5563;
  background: #ffffff;
  padding: 2.25rem;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(148, 163, 184, 0.25);
  border: 1px solid rgba(99, 102, 241, 0.08);
}

.qs-text p + p {
  margin-top: 1.25rem;
}

.qs-text strong {
  color: #1d4ed8;
}

.qs-values {
  width: min(1100px, 100%);
}

.qs-section-title {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.4rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2.5rem;
}

.qs-section-title--small {
  margin-bottom: 1rem;
}

.qs-values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.75rem;
}

.qs-card {
  background: #ffffff;
  border-radius: 32px;
  padding: 2.75rem 2.4rem;
  box-shadow: 0 25px 60px rgba(99, 102, 241, 0.15);
  border: 1px solid rgba(99, 102, 241, 0.08);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qs-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 35px 70px rgba(79, 70, 229, 0.18);
}

.qs-card--featured {
  background: radial-gradient(circle at top, #818cf8 0%, #4338ca 60%, #312e81 100%);
  color: #f8fafc;
  position: relative;
  overflow: hidden;
  box-shadow: 0 28px 75px rgba(59, 130, 246, 0.45);
}

.qs-card--featured::after {
  content: "";
  position: absolute;
  inset: -40% auto auto -20%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(0.5px);
}

.qs-card--featured::before {
  content: "";
  position: absolute;
  inset: auto -15% -35% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.22);
  filter: blur(1px);
}

.qs-card--pasion {
  border: 1px solid rgba(244, 114, 182, 0.25);
  box-shadow: 0 22px 50px rgba(236, 72, 153, 0.18);
}

.qs-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  border-radius: 22px;
  margin: 0 auto;
}

.qs-card__icon svg {
  width: 24px;
  height: 24px;
}

.qs-card__icon--calidad {
  background: rgba(129, 140, 248, 0.16);
  color: #4338ca;
}

.qs-card__icon--featured {
  background: rgba(255, 255, 255, 0.18);
  color: #f8fafc;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(6px);
}

.qs-card__icon--pasion {
  background: rgba(244, 114, 182, 0.15);
  color: #db2777;
}

.qs-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
}

.qs-card__title--featured {
  color: #f8fafc;
  font-size: 1.55rem;
}

.qs-card__text {
  color: #4b5563;
  font-size: 0.975rem;
  line-height: 1.8;
}

.qs-card__text--featured {
  color: rgba(248, 250, 252, 0.85);
}

.qs-map {
  width: min(1100px, 100%);
  text-align: center;
}

.qs-map__address {
  color: #4b5563;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.qs-map__frame {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.22);
  border: 1px solid rgba(79, 70, 229, 0.12);
}

.qs-map__embed {
  width: 100%;
  height: min(380px, 65vh);
  border: 0;
}

@media (max-width: 900px) {
  .qs-page {
    padding: 3.5rem 1.25rem 5rem;
  }

  .qs-main {
    gap: 2rem;
  }

  .qs-card {
    padding: 2.4rem 2rem;
  }
}

@media (max-width: 640px) {
  .qs-page {
    padding: 3rem 1rem 4rem;
  }

  .qs-values__grid {
    grid-template-columns: 1fr;
  }

  .qs-card {
    padding: 2.2rem 1.75rem;
  }

  .qs-card:hover {
    transform: translateY(-8px);
  }
}
.pf-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #eef2ff 0%, #ffffff 35%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.5rem 5rem;
  gap: 2.5rem;
}

.pf-hero {
  text-align: center;
  max-width: 760px;
}

.pf-heading {
  font-size: clamp(2.3rem, 4.5vw, 3rem);
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.pf-subheading {
  font-size: 1rem;
  line-height: 1.8;
  color: #475569;
}

.pf-card {
  width: min(720px, 100%);
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 28px 65px rgba(79, 70, 229, 0.22);
  border: 1px solid rgba(99, 102, 241, 0.08);
  padding: 0.5rem 0;
}

.pf-item + .pf-item {
  border-top: 1px solid rgba(148, 163, 184, 0.25);
}

.pf-item--active {
  background: linear-gradient(90deg, rgba(79, 70, 229, 0.08), rgba(129, 140, 248, 0.08));
}

.pf-item__question {
  width: 100%;
  padding: 1.4rem 2.3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.25s ease;
}

.pf-item__question:focus-visible {
  outline: 3px solid rgba(99, 102, 241, 0.45);
  outline-offset: 4px;
}

.pf-item__label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1f2937;
}

.pf-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(99, 102, 241, 0.13);
  color: #4338ca;
  font-size: 1.5rem;
  font-weight: 600;
  transition: transform 0.25s ease, background 0.25s ease;
}

.pf-item--active .pf-item__icon {
  background: rgba(79, 70, 229, 0.18);
  transform: rotate(180deg);
}

.pf-item__answer {
  padding: 0 2.3rem 1.75rem;
  color: #475569;
  font-size: 0.975rem;
  line-height: 1.75;
}

.pf-help {
  text-align: center;
  font-size: 0.95rem;
  color: #475569;
}

.pf-help a {
  color: #4338ca;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(67, 56, 202, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.pf-help a:hover {
  color: #312e81;
  border-color: rgba(79, 70, 229, 0.8);
}

@media (max-width: 640px) {
  .pf-page {
    padding: 3.5rem 1rem 4rem;
    gap: 2rem;
  }

  .pf-card {
    border-radius: 24px;
    box-shadow: 0 24px 50px rgba(79, 70, 229, 0.18);
  }

  .pf-item__question {
    padding: 1.25rem 1.5rem;
  }

  .pf-item__answer {
    padding: 0 1.5rem 1.5rem;
  }
}
.tc-page {
  min-height: 100vh;
  background: radial-gradient(circle at top, #eef2ff 0%, #ffffff 40%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.5rem 5rem;
  gap: 2.5rem;
}

.tc-hero {
  max-width: 860px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tc-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0.45rem 1.2rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: #2563eb;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.tc-heading {
  font-size: clamp(2.3rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #111827;
}

.tc-intro {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.9;
}

.tc-article {
  width: min(960px, 100%);
  background: #ffffff;
  border-radius: 36px;
  padding: 3rem 3.2rem;
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.16);
  border: 1px solid rgba(37, 99, 235, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.tc-section {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.tc-section__header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.tc-section__marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  box-shadow: 0 0 0 6px rgba(129, 140, 248, 0.15);
}

.tc-section__header h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #111827;
}

.tc-section__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #475569;
  line-height: 1.8;
  font-size: 1rem;
}

.tc-list {
  margin: 0;
  padding-left: 1.2rem;
  list-style: disc;
  color: #374151;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.tc-link {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(37, 99, 235, 0.4);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.tc-link:hover {
  color: #1d4ed8;
  border-color: rgba(29, 78, 216, 0.7);
}

.tc-footer {
  text-align: center;
  font-size: 0.95rem;
  color: #6b7280;
}

.tc-footer time {
  font-weight: 600;
  color: #1f2937;
}

@media (max-width: 900px) {
  .tc-page {
    padding: 3.5rem 1.25rem 4.5rem;
  }

  .tc-article {
    border-radius: 28px;
    padding: 2.5rem 2rem;
  }
}

@media (max-width: 640px) {
  .tc-article {
    border-radius: 24px;
    padding: 2rem 1.5rem;
  }

  .tc-section__header h2 {
    font-size: 1.4rem;
  }

  .tc-list {
    padding-left: 1rem;
  }
}
.cd-page {
  min-height: 100vh;
  background: linear-gradient(180deg, #eef2ff 0%, #ffffff 38%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 4rem 1.5rem 5rem;
  gap: 2.5rem;
}

.cd-hero {
  text-align: center;
  max-width: 760px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cd-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 1.1rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.15);
  color: #047857;
  font-weight: 600;
  font-size: 0.85rem;
}

.cd-heading {
  font-size: clamp(2.2rem, 4.2vw, 3rem);
  font-weight: 700;
  color: #0f172a;
}

.cd-subheading {
  font-size: 1rem;
  color: #475569;
  line-height: 1.85;
}

.cd-card {
  width: min(1000px, 100%);
  background: #ffffff;
  border-radius: 32px;
  padding: 3rem 3.2rem;
  display: grid;
  gap: 2rem;
  box-shadow: 0 32px 70px rgba(15, 23, 42, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.12);
}

.cd-block {
  background: rgba(250, 250, 255, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 26px;
  padding: 2rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0 12px 28px rgba(148, 163, 184, 0.15);
}

.cd-block__header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.cd-block__icon {
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(16, 185, 129, 0.18);
  color: #047857;
}

.cd-block__header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.cd-block__header p {
  color: #475569;
  font-size: 0.95rem;
}

.cd-list,
.cd-steps {
  margin: 0;
  padding-left: 1.25rem;
  color: #1f2937;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  line-height: 1.75;
}

.cd-list li strong {
  color: #0f172a;
}

.cd-text {
  color: #475569;
  line-height: 1.8;
}

.cd-steps {
  list-style: decimal;
}

.cd-support {
  border-radius: 28px;
  padding: 2.2rem 2.4rem;
  background: linear-gradient(120deg, rgba(59, 130, 246, 0.14), rgba(16, 185, 129, 0.16));
  border: 1px solid rgba(37, 99, 235, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.cd-support__info h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.3rem;
}

.cd-support__info p {
  color: #334155;
  font-size: 0.98rem;
}

.cd-support__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #ffffff;
  font-weight: 600;
  border-radius: 999px;
  padding: 0.75rem 1.8rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 25px rgba(14, 165, 233, 0.35);
}

.cd-support__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(14, 165, 233, 0.4);
}

.cd-footer {
  text-align: center;
  font-size: 0.92rem;
  color: #6b7280;
}

@media (max-width: 900px) {
  .cd-page {
    padding: 3.5rem 1.25rem 4.5rem;
  }

  .cd-card {
    padding: 2.5rem 2rem;
  }

  .cd-block {
    padding: 1.8rem 1.9rem;
  }
}

@media (max-width: 640px) {
  .cd-card {
    border-radius: 26px;
    padding: 2rem 1.5rem;
  }

  .cd-block {
    border-radius: 22px;
    padding: 1.6rem 1.5rem;
  }

  .cd-support {
    flex-direction: column;
    align-items: flex-start;
  }

  .cd-support__cta {
    width: 100%;
    text-align: center;
  }

  .cd-list,
  .cd-steps {
    padding-left: 1rem;
  }
}
.policy-page {
  padding: clamp(2rem, 4vw, 4rem) 1.5rem 5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 45%);
  color: #0f172a;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.policy-hero {
  max-width: 960px;
  margin: 0 auto 3rem auto;
  text-align: center;
}

.policy-badge {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(14, 116, 144, 0.12);
  color: #0e7490;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.policy-heading {
  font-size: clamp(2.2rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.policy-intro {
  max-width: 720px;
  margin: 0 auto;
  color: #334155;
  line-height: 1.65;
  font-size: 1.05rem;
}

.policy-article {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  gap: 2.5rem;
}

.policy-section {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: 0 25px 60px -40px rgba(15, 23, 42, 0.35);
  border: 1px solid rgba(148, 163, 184, 0.2);
}

.policy-section__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.policy-section__marker {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0f766e, #22d3ee);
  box-shadow: 0 0 0 6px rgba(34, 211, 238, 0.12);
}

.policy-section__header h2 {
  font-size: 1.35rem;
  margin: 0;
  color: #0f172a;
  font-weight: 600;
}

.policy-section__body {
  color: #475569;
  font-size: 1rem;
  line-height: 1.75;
}

.policy-section__body p + p {
  margin-top: 0.85rem;
}

.policy-section__body ul {
  margin: 0.85rem 0 0.35rem 1.25rem;
  padding: 0;
  color: #334155;
}

.policy-section__body li {
  margin-bottom: 0.55rem;
  position: relative;
}

.policy-section__body li::marker {
  color: #0f766e;
}

.policy-footer {
  max-width: 960px;
  margin: 3rem auto 0 auto;
  text-align: center;
  color: #64748b;
  font-size: 0.95rem;
}

.policy-footer time {
  font-weight: 600;
  color: #0f172a;
}

@media (max-width: 640px) {
  .policy-section {
    padding: 1.5rem 1.25rem;
  }

  .policy-section__header h2 {
    font-size: 1.15rem;
  }

  .policy-hero {
    text-align: left;
  }

  .policy-intro {
    text-align: left;
    font-size: 1rem;
  }
}
.ar-page {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1.5rem;
  background: radial-gradient(circle at top, rgba(14, 165, 233, 0.18), transparent 65%);
}

.ar-card {
  width: min(520px, 100%);
  background: #ffffff;
  border-radius: 28px;
  padding: 2.5rem;
  text-align: center;
  box-shadow: 0 30px 50px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(15, 118, 110, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ar-tag {
  display: inline-flex;
  align-self: center;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #047857;
  background: rgba(16, 185, 129, 0.16);
}


.ar-lead {
  font-size: 1rem;
  color: #475569;
  margin: 0 auto;
  line-height: 1.7;
}

.ar-cta-block {
  background: rgba(241, 245, 249, 0.8);
  border-radius: 22px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.ar-contact-hint,
.ar-availability {
  font-size: 0.9rem;
  color: #475569;
  margin: 0;
}

.ar-cta-button {
  background: linear-gradient(120deg, #22d3ee, #0ea5e9);
  color: #ffffff;
  border-radius: 18px;
  padding: 0.95rem 1rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 15px 25px rgba(14, 165, 233, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ar-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 32px rgba(14, 165, 233, 0.45);
}

@media (max-width: 520px) {
  .ar-card {
    padding: 2rem 1.5rem;
  }

  .ar-cta-block {
    padding: 1.25rem;
  }
}
.account {
  min-height: 70vh;
  background: #f8fafc;
  padding: clamp(1.5rem, 3vw, 2.5rem) 1rem 3rem;
}

.account-container {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
}

.account-header {
  background: #fff;
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 20px 60px -40px rgba(15, 23, 42, 0.4);
  border: 1px solid #e2e8f0;
}

.account-kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  font-size: 0.82rem;
  color: #94a3b8;
}

.account-header h1 {
  margin: 0.1rem 0;
  font-size: clamp(1.6rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.account-sub {
  margin: 0;
  color: #475569;
}

.account-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.btn-secondary {
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #0f172a;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-weight: 700;
  cursor: pointer;
}

.btn-primary.btn-compact {
  width: auto;
  padding: 0.7rem 1rem;
  border-radius: 12px;
}

.account-orders {
  display: grid;
  gap: 0.75rem;
}

.account-section-head h2 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
}

.account-orders-list {
  display: grid;
  gap: 0.9rem;
}

.account-card {
  background: #fff;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 38px -30px rgba(15, 23, 42, 0.3);
}

.account-card.muted {
  color: #475569;
}

.account-card.error {
  color: #b91c1c;
  font-weight: 700;
}

.order-card {
  display: grid;
  gap: 0.8rem;
}

.order-head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.75rem;
  align-items: center;
}

.order-label {
  margin: 0;
  color: #94a3b8;
  font-weight: 700;
  font-size: 0.9rem;
}

.order-strong {
  margin: 0;
  font-weight: 800;
  color: #0f172a;
  font-size: 1.05rem;
}

.order-total {
  justify-self: flex-end;
  text-align: right;
}

.order-lines {
  display: grid;
  gap: 0.65rem;
}

.order-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  align-items: center;
}

.order-line__info {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
}

.order-line__info img,
.order-line__placeholder {
  width: 54px;
  height: 54px;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  background: #e2e8f0;
}

.order-line__title {
  margin: 0;
  font-weight: 700;
}

.order-line__meta {
  margin: 0;
  color: #64748b;
}

.order-line__subtotal {
  margin: 0;
  font-weight: 700;
}

.order-status {
  background: #f8fafc;
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  color: #0f172a;
  font-weight: 700;
}

.status-authorized,
.status-approved,
.status-captured {
  border: 1px solid #16a34a;
  color: #15803d;
}

.status-pending {
  border: 1px solid #f59e0b;
  color: #b45309;
}

.status-failed,
.status-voided {
  border: 1px solid #b91c1c;
  color: #991b1b;
}

@media (max-width: 720px) {
  .account-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .account-actions {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .order-head {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .order-total {
    justify-self: flex-start;
    text-align: left;
  }
}
.notfound-page {
  min-height: 100vh;
  background: #ffffff;
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  color: #0f172a;
  overflow: hidden;
}

.notfound-image-shell {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 100vh;
  padding-bottom: 140px;
}

.notfound-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.notfound-picture img {
  width: 100%;
  height: 90vh;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  display: block;
}

.notfound-btn {
  position: relative;
  left: 34%;
  transform: translateX(-50%);
  bottom: clamp(30px, 6vw, 60px);
  display: block;
  padding: 16px 26px;
  width: min(360px, 88%);
  border-radius: 14px;
  background: #3f4e55;
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  text-align: center;
  border: none;
  box-shadow: 0 14px 26px rgba(63, 78, 85, 0.24);
  transition: transform 0.12s ease, box-shadow 0.2s ease, background 0.2s ease;
  z-index: 2;
}

.notfound-btn:hover {
  box-shadow: 0 18px 34px rgba(63, 78, 85, 0.28);
}

.notfound-btn:active {
  transform: translateY(0);
}

.notfound-btn:focus-visible {
  outline: 3px solid rgba(0, 123, 255, 0.35);
  outline-offset: 3px;
}

.notfound-btn:focus-visible {
  outline-color: rgba(63, 78, 85, 0.6);
}

@media (max-width: 768px) {
  .notfound-picture img {
    height: auto;
    max-height: 90vh;
    -o-object-fit: contain;
       object-fit: contain;
  }

  .notfound-btn {
    position: relative;
    bottom: 15%;
    left: 5%;
    transform: none;
    margin: 14px auto 22px;
    width: min(300px, 88%);
    display: block;
    font-size: 16px;
    text-align: center;
  }
}
/*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
@layer properties{@supports ((-webkit-hyphens:none) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-space-y-reverse:0;--tw-border-style:solid;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000}}}@layer theme{:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--color-gray-100:oklch(96.7% .003 264.542);--color-white:#fff;--spacing:.25rem;--text-sm:.875rem;--text-sm--line-height:calc(1.25/.875);--radius-xl:.75rem;--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}}@layer base{*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::-moz-placeholder{opacity:1}::placeholder{opacity:1}@supports (not (-webkit-appearance:-apple-pay-button)) or (contain-intrinsic-size:1px){::-moz-placeholder{color:currentColor}::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::-moz-placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){-webkit-appearance:button;-moz-appearance:button;appearance:button}::file-selector-button{-webkit-appearance:button;-moz-appearance:button;appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}}@layer components{.reveal-from-bottom{--reveal-distance:2.25rem;--reveal-duration:.85s;--reveal-delay:0s;--reveal-ease:cubic-bezier(.16,1,.3,1);opacity:0;transform:translate3d(0,var(--reveal-distance),0);transition-property:opacity,transform;transition-duration:var(--reveal-duration);transition-delay:var(--reveal-delay);transition-timing-function:var(--reveal-ease);will-change:opacity,transform}.reveal-from-bottom.reveal-visible{opacity:1;transform:translate(0)}}@layer utilities{.absolute{position:absolute}.relative{position:relative}.container{width:100%}@media (min-width:40rem){.container{max-width:40rem}}@media (min-width:48rem){.container{max-width:48rem}}@media (min-width:64rem){.container{max-width:64rem}}@media (min-width:80rem){.container{max-width:80rem}}@media (min-width:96rem){.container{max-width:96rem}}.flex{display:flex}.hidden{display:none}.inline-block{display:inline-block}.table{display:table}.h-9{height:calc(var(--spacing)*9)}.min-h-screen{min-height:100vh}.w-9{width:calc(var(--spacing)*9)}.w-48{width:calc(var(--spacing)*48)}.flex-1{flex:1}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.resize{resize:both}.flex-col{flex-direction:column}.items-center{align-items:center}:where(.space-y-6>:not(:last-child)){--tw-space-y-reverse:0;margin-block-start:calc(calc(var(--spacing)*6)*var(--tw-space-y-reverse));margin-block-end:calc(calc(var(--spacing)*6)*calc(1 - var(--tw-space-y-reverse)))}.rounded-xl{border-radius:var(--radius-xl)}.border{border-style:var(--tw-border-style);border-width:1px}.bg-gray-100{background-color:var(--color-gray-100)}.bg-transparent{background-color:#0000}.bg-white{background-color:var(--color-white)}.py-1\.5{padding-block:calc(var(--spacing)*1.5)}.pr-2{padding-right:calc(var(--spacing)*2)}.pb-16{padding-bottom:calc(var(--spacing)*16)}.pl-3{padding-left:calc(var(--spacing)*3)}.text-sm{font-size:var(--text-sm);line-height:var(--tw-leading,var(--text-sm--line-height))}.underline{text-decoration-line:underline}.outline-none{--tw-outline-style:none;outline-style:none}.focus-within\:ring-2:focus-within{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(2px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}@media (min-width:40rem){.sm\:flex{display:flex}}}html,body,#root{background-color:#fff;min-height:100%}body{background-color:#fff;margin:0}@media (prefers-reduced-motion:reduce){.reveal-from-bottom{transition-duration:1ms;transition-delay:0s;transform:none}}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-space-y-reverse{syntax:"*";inherits:false;initial-value:0}@property --tw-border-style{syntax:"*";inherits:false;initial-value:solid}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}


