:root{
  --bg:#f3f4f9;
  --surface:#ffffff;
  --surface-soft:#f7f8fc;
  --surface-dark:#2a2f3a;
  --surface-dark-2:#1f2430;
  --text:#1f2740;
  --muted:#6f778a;
  --line:#dce1ea;
  --yellow:#ffe600;
  --yellow-soft:#fff6b3;
  --green:#2ecb70;
  --green-dark:#1e9f58;
  --red:#d51216;
  --blue:#245fb3;
  --shadow:0 18px 45px rgba(19, 27, 45, .08);
  --radius:22px;
}

*{box-sizing:border-box}
html,body{min-height:100%}
body{
  margin:0;
  background:
    radial-gradient(circle at top left, rgba(255,230,0,.14), transparent 24%),
    linear-gradient(180deg,#f8f8fc 0%, var(--bg) 100%);
  color:var(--text);
  font-family:"Trebuchet MS","Segoe UI",sans-serif;
  overflow-x:hidden;
}
body.is-locked{overflow:hidden}
a{color:inherit;text-decoration:none}
button,input,select,textarea{font:inherit}
img{max-width:100%}

.container{
  width:min(1380px, calc(100% - 40px));
  margin:0 auto;
}

.card{
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:18px;
}

.small,
.muted{color:var(--muted)}

.topbar{
  position:sticky;
  top:0;
  z-index:40;
  background:rgba(250,250,253,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(195, 201, 214, .8);
}

.topbar__inner{
  display:grid;
  grid-template-columns:300px minmax(0,1fr) auto;
  align-items:center;
  gap:24px;
  min-height:108px;
}

.mobile-left{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}

.menu-btn{display:none}

.brand{
  display:inline-flex;
  align-items:center;
}

.brand img{
  width:auto;
  height:74px;
  display:block;
  filter:drop-shadow(0 8px 16px rgba(0,0,0,.06));
}

.search{
  position:relative;
  min-width:0;
}

.search input{
  width:100%;
  height:60px;
  border:1px solid #cfd5df;
  border-radius:16px;
  background:#fff;
  padding:0 58px 0 24px;
  font-size:17px;
  color:var(--text);
  box-shadow:0 10px 24px rgba(15, 23, 42, .03);
}

.search button{
  position:absolute;
  right:12px;
  top:10px;
  width:40px;
  height:40px;
  border:0;
  background:transparent;
  color:#a1a8b6;
  cursor:pointer;
}

.top-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
}

.icon-btn{
  border:0;
  background:transparent;
  color:#283042;
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:10px 12px;
  border-radius:14px;
  cursor:pointer;
  position:relative;
  transition:background .2s ease, transform .2s ease;
}

.icon-btn.menu-btn{display:none}

.icon-btn:hover{
  background:rgba(38, 47, 66, .06);
  transform:translateY(-1px);
}

.icon-btn--plain{padding-inline:10px}
.icon{width:29px;height:29px;flex:none}

.support-btn{
  font-size:16px;
  font-weight:700;
  margin-right:4px;
}

.cart-total{
  min-width:72px;
  padding:7px 12px;
  border-radius:999px;
  background:#212734;
  color:#fff;
  font-size:13px;
  font-weight:800;
  text-align:center;
}

.cart-badge{
  position:absolute;
  top:2px;
  right:2px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--red);
  color:#fff;
  font-size:11px;
  font-weight:800;
}

.nav{
  background:var(--surface-dark);
  color:#fff;
  border-bottom:1px solid #1d2230;
}

.nav__inner{
  min-height:58px;
  display:flex;
  align-items:center;
  gap:28px;
  overflow-x:auto;
  white-space:nowrap;
  -ms-overflow-style:none;
  scrollbar-width:none;
}

.nav__inner::-webkit-scrollbar{display:none}

.nav a{
  min-height:58px;
  display:inline-flex;
  align-items:center;
  font-size:15px;
  font-weight:800;
  color:#fff;
  opacity:.92;
  transition:opacity .2s ease, background .2s ease;
}

.nav a:hover,
.nav a.is-active{
  opacity:1;
}

.nav a.is-active{
  padding-inline:18px;
  background:rgba(255,255,255,.14);
}

.mobile-nav-backdrop{
  position:fixed;
  inset:0;
  z-index:70;
  display:none !important;
  background:rgba(17, 24, 39, .56);
}

.mobile-nav-backdrop.is-open{
  display:block !important;
}

.mobile-nav{
  width:min(380px, calc(100vw - 32px));
  height:100%;
  padding:22px 18px 28px;
  background:linear-gradient(180deg,#252b38 0%, #1d2230 100%);
  color:#fff;
  box-shadow:28px 0 80px rgba(0,0,0,.3);
}

.mobile-nav-backdrop:not(.is-open){
  pointer-events:none;
}

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

.mobile-nav__head img{
  max-width:220px;
  height:auto;
}

.mobile-nav__close{
  width:42px;
  height:42px;
  border:0;
  border-radius:14px;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:28px;
  cursor:pointer;
}

.mobile-nav__search{
  position:relative;
  margin-top:22px;
}

.mobile-nav__search input{
  width:100%;
  height:52px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:16px;
  background:rgba(255,255,255,.08);
  color:#fff;
  padding:0 52px 0 18px;
}

.mobile-nav__search input::placeholder{color:rgba(255,255,255,.72)}

.mobile-nav__search button{
  position:absolute;
  top:8px;
  right:8px;
  width:36px;
  height:36px;
  border:0;
  border-radius:12px;
  background:transparent;
  color:#fff;
  cursor:pointer;
}

.mobile-nav__links{
  margin-top:24px;
  display:grid;
  gap:8px;
}

.mobile-nav__links a{
  display:flex;
  align-items:center;
  min-height:46px;
  padding:0 14px;
  border-radius:14px;
  background:rgba(255,255,255,.06);
  font-weight:700;
}

.mobile-nav__support{
  margin-top:20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:14px 16px;
  border-radius:16px;
  background:var(--yellow);
  color:#1b2130;
  font-weight:900;
}

.breadcrumb{
  padding:28px 0 12px;
  font-size:14px;
  color:var(--muted);
}

.breadcrumb .current{
  color:var(--red);
  font-weight:800;
}

.page-title{
  margin:0 0 16px;
  font-size:56px;
  line-height:1.03;
  font-weight:700;
  letter-spacing:-.03em;
}

.banner{
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:26px;
  background:#fff;
  box-shadow:var(--shadow);
}

.banner img{
  display:block;
  width:100%;
}

.content-grid{
  display:grid;
  grid-template-columns:300px minmax(0,1fr);
  gap:20px;
  padding:24px 0 42px;
}

.filters h2{
  margin:0 0 14px;
  font-size:42px;
  letter-spacing:-.03em;
}

.filter-card{
  background:rgba(255,255,255,.96);
  border:1px solid var(--line);
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow);
  margin-bottom:14px;
}

.filter-card__title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:10px;
  color:var(--red);
  font-size:20px;
  font-weight:900;
}

.filter-card label{
  display:flex;
  align-items:center;
  gap:10px;
  padding:7px 0;
  font-size:15px;
}

.filter-card__btn{
  width:100%;
  height:48px;
  border:0;
  border-radius:14px;
  background:#212734;
  color:#fff;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
}

.mobile-filters-trigger{display:none}

.products-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-bottom:18px;
  color:var(--muted);
  font-size:15px;
}

.products-head select{
  min-width:230px;
  height:48px;
  border:1px solid #cfd5df;
  border-radius:14px;
  background:#fff;
  padding:0 14px;
  color:var(--text);
  box-shadow:0 10px 24px rgba(15, 23, 42, .03);
}

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

.product-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
}

.product-card__img{
  height:340px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg,#ffffff 0%, #f6f7fb 100%);
  display:grid;
  place-items:center;
  padding:26px 20px 42px;
  box-shadow:var(--shadow);
}

.product-card__img img,
.product-media img,
.drawer-item img,
.cart-row img{
  width:100%;
  height:100%;
  object-fit:contain;
}

.badge{
  position:absolute;
  top:14px;
  left:14px;
  z-index:2;
  padding:10px 14px;
  border-radius:12px;
  background:var(--yellow);
  color:#111827;
  font-size:14px;
  font-weight:900;
  box-shadow:0 12px 24px rgba(255,230,0,.22);
}

.badge--inline{
  position:absolute;
}

.product-card__fav{
  position:absolute;
  right:14px;
  bottom:122px;
  width:42px;
  height:42px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  color:#8a95a7;
  font-size:21px;
  box-shadow:0 14px 30px rgba(15, 23, 42, .06);
}

.product-card__body{
  display:flex;
  flex-direction:column;
  gap:8px;
  padding-top:12px;
}

.product-card__name{
  min-height:54px;
  font-size:18px;
  line-height:1.35;
  font-weight:700;
}

.price{
  margin-top:2px;
  font-size:26px;
  font-weight:900;
  letter-spacing:-.03em;
}

.installments{
  font-size:14px;
  color:var(--muted);
}

.add-btn,
.buy-btn,
.checkout-btn,
.drawer-go{
  width:100%;
  min-height:54px;
  border:0;
  border-radius:16px;
  cursor:pointer;
  font-weight:900;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.add-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  background:linear-gradient(180deg,#36d67c 0%, var(--green) 100%);
  color:#fff;
  font-size:18px;
  box-shadow:0 18px 34px rgba(46,203,112,.22);
}

.add-btn:hover,
.buy-btn:hover,
.checkout-btn:hover,
.drawer-go:hover,
.secondary-btn:hover{
  transform:translateY(-1px);
}

.product-page{
  display:grid;
  grid-template-columns:minmax(0, 48%) minmax(0, 52%);
  gap:28px;
  padding:18px 0 44px;
}

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

.product-media{
  position:relative;
  min-height:640px;
  padding:28px;
  border:1px solid var(--line);
  border-radius:28px;
  background:linear-gradient(180deg,#fff 0%, #f7f8fb 100%);
  box-shadow:var(--shadow);
}

.share-row{
  display:flex;
  justify-content:center;
  gap:14px;
}

.share-btn{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
  border-radius:999px;
  color:#fff;
  font-size:22px;
  font-weight:900;
  box-shadow:0 14px 30px rgba(15, 23, 42, .12);
}

.share-btn--link{background:#4d70b8}
.share-btn--whats{background:#25d366}
.share-btn--fb{background:#0e4f90}
.share-btn--x{background:#24a8f2}

.product-info h1{
  margin:0 0 14px;
  font-size:54px;
  line-height:1.12;
  letter-spacing:-.03em;
}

.preorder-note{
  display:inline-flex;
  align-items:center;
  min-height:38px;
  padding:0 14px;
  border-radius:12px;
  background:var(--yellow);
  color:#101726;
  font-size:14px;
  font-weight:900;
}

.product-info .desc{
  font-size:18px;
  line-height:1.72;
  color:#27314d;
}

.product-info .desc p{
  margin:0 0 14px;
}

.buy-box{
  margin-top:22px;
  padding:22px;
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(255,255,255,.94);
  box-shadow:var(--shadow);
}

.buy-price{
  font-size:58px;
  font-weight:900;
  letter-spacing:-.04em;
  margin-bottom:14px;
}

.buy-btn{
  background:#232936;
  color:#fff;
  font-size:20px;
  box-shadow:0 18px 34px rgba(35,41,54,.18);
}

.shipping-calc{
  margin-top:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:var(--surface-soft);
  overflow:hidden;
}

.shipping-calc__toggle{
  width:100%;
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:0 20px;
  border:0;
  background:#fff;
  color:#4a5470;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
}

.shipping-calc__chevron{
  font-size:18px;
  transition:transform .2s ease;
}

.shipping-calc.is-collapsed .shipping-calc__chevron{
  transform:rotate(-180deg);
}

.shipping-calc__panel{
  padding:18px 18px 20px;
}

.shipping-calc.is-collapsed .shipping-calc__panel{
  display:none;
}

.shipping-calc__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.shipping-status{
  margin-top:12px;
  padding:12px 14px;
  border-radius:14px;
  background:#eef3fb;
  color:#51607b;
  font-size:13px;
  line-height:1.5;
}

.shipping-address,
.address-preview{
  margin-top:12px;
  padding:14px 16px;
  border:1px solid #d6ddeb;
  border-radius:16px;
  background:#fff;
  color:var(--text);
}

.shipping-address strong,
.address-preview strong{
  display:block;
  margin-bottom:6px;
  font-size:14px;
}

.shipping-results{
  margin-top:14px;
}

.shipping-results__title{
  margin-bottom:10px;
  font-size:14px;
  font-weight:900;
}

.shipping-results__hint{
  margin-top:8px;
  font-size:12px;
}

.shipping-options-list{
  display:grid;
  gap:10px;
}

.shipping-choice{
  display:grid;
  grid-template-columns:22px minmax(0,1fr) auto;
  align-items:center;
  gap:12px;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:16px;
  background:#fff;
  box-shadow:0 10px 24px rgba(15, 23, 42, .03);
}

.shipping-choice input{
  width:18px;
  height:18px;
  margin:0;
  accent-color:var(--green-dark);
}

.shipping-choice__body{
  min-width:0;
  display:grid;
  gap:3px;
}

.shipping-choice__name{
  font-size:15px;
  font-weight:800;
}

.shipping-choice__meta{
  font-size:12px;
  color:var(--muted);
}

.shipping-choice__price{
  font-size:15px;
  font-weight:900;
}

.drawer-backdrop{
  position:fixed;
  inset:0;
  z-index:65;
  display:none;
  align-items:flex-start;
  justify-content:center;
  padding:80px 18px 24px;
  background:rgba(15, 23, 42, .45);
}

.drawer{
  width:min(760px, 100%);
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:0 28px 80px rgba(0,0,0,.24);
}

.drawer__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:22px 24px 10px;
}

.drawer__head h3{
  margin:0;
  font-size:32px;
  letter-spacing:-.03em;
}

.drawer__close{
  width:42px;
  height:42px;
  border:0;
  border-radius:14px;
  background:#f1f4f9;
  color:#414d65;
  font-size:24px;
  cursor:pointer;
}

.drawer__body{
  padding:0 24px 24px;
}

.drawer-item{
  display:grid;
  grid-template-columns:84px minmax(0,1fr) 126px auto;
  align-items:center;
  gap:14px;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}

.drawer-item img{
  width:84px;
  height:74px;
}

.drawer-item__name{
  font-weight:800;
  line-height:1.4;
}

.drawer-item__price{
  margin-top:4px;
  color:var(--muted);
  font-size:14px;
}

.qty{
  display:inline-flex;
  align-items:center;
  overflow:hidden;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}

.qty button{
  width:36px;
  height:36px;
  border:0;
  background:#f3f5f9;
  color:#27314d;
  font-weight:900;
  cursor:pointer;
}

.qty span{
  width:42px;
  display:grid;
  place-items:center;
  font-weight:800;
}

.trash{
  border:0;
  background:transparent;
  color:var(--red);
  font-weight:800;
  cursor:pointer;
}

.drawer-total{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  padding:20px 0 18px;
}

.drawer-total strong{
  color:var(--green-dark);
  font-size:34px;
  letter-spacing:-.03em;
}

.drawer-go{
  background:#212734;
  color:#fff;
  font-size:18px;
}

.cart-page,
.checkout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 410px;
  gap:22px;
  padding:18px 0 44px;
}

.cart-card{
  padding:24px;
  border:1px solid var(--line);
  border-radius:28px;
  background:rgba(255,255,255,.96);
  box-shadow:var(--shadow);
}

.cart-card h2,
.summary h3{
  margin:0 0 12px;
  font-size:34px;
  letter-spacing:-.03em;
}

.section-tag{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border-radius:999px;
  background:var(--yellow-soft);
  color:#34321d;
  font-size:12px;
  font-weight:900;
  margin-bottom:12px;
}

.checkout-lead{
  margin:0 0 18px;
  color:var(--muted);
  line-height:1.6;
}

.summary p{
  margin:0 0 18px;
  line-height:1.6;
  color:var(--muted);
}

.cart-row{
  display:grid;
  grid-template-columns:112px minmax(0,1fr) 140px 158px 110px;
  gap:16px;
  align-items:center;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}

.cart-row img{
  width:112px;
  height:92px;
}

.cart-row__name{
  font-size:17px;
  font-weight:800;
  line-height:1.45;
}

.cart-row__muted{
  color:var(--muted);
  font-size:12px;
}

.cart-row__price{
  margin-top:5px;
  font-weight:900;
}

.cart-row__total{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:6px;
}

.cart-row__badge{
  margin-top:10px;
}

.secondary-btn{
  min-height:44px;
  padding:0 16px;
  border:1px solid #cfd5df;
  border-radius:14px;
  background:#fff;
  color:var(--text);
  font-size:14px;
  font-weight:800;
  cursor:pointer;
}

.field-row{
  display:grid;
  grid-template-columns:1fr 120px;
  gap:10px;
  margin:10px 0 16px;
}

.field-row input,
.field-row button,
.form-control input,
.form-control select{
  width:100%;
  min-height:46px;
  border:1px solid #cfd5df;
  border-radius:14px;
  background:#fff;
  padding:0 14px;
  color:var(--text);
}

.field-row button{
  border:0;
  background:#212734;
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.summary-line,
.summary-total{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:12px 0;
}

.summary-line{font-size:15px}

.summary-total{
  margin-top:4px;
  border-top:1px solid var(--line);
}

.summary-total strong{
  color:var(--green-dark);
  font-size:42px;
  letter-spacing:-.03em;
}

.checkout-btn{
  margin-top:16px;
  background:#212734;
  color:#fff;
  font-size:18px;
}

.notice{
  margin:12px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.6;
}

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

.form-grid .full{grid-column:1 / -1}

.form-control label{
  margin-bottom:15px;
  margin-top: 15;
  font-size:13px;
  font-weight:800;
  color:#333d56;
}

.pay-box{
  margin-top:18px;
  padding-top:18px;
  border-top:1px solid black;
}

.radio-row{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0;
  font-weight:400;
}

.radio-row input{
  accent-color:var(--green-dark);
}

.success{
  padding:28px;
  margin:24px 0 48px;
  border:1px solid var(--line);
  border-radius:28px;
  background:#fff;
  box-shadow:var(--shadow);
}

.success h2{
  margin:0 0 12px;
  font-size:34px;
}

.footer-main{
  position:relative;
  margin-top:42px;
}

.footer-newsletter,
.footer-links{
  background:#292e39;
  color:#eef2fa;
}

.footer-newsletter{
  position:relative;
  overflow:hidden;
  border-top:1px solid #1d2230;
}

.footer-newsletter__grid{
  display:grid;
  grid-template-columns:440px minmax(0,1fr);
  gap:28px;
  padding:28px 0 26px;
  align-items:start;
}

.footer-newsletter__intro{
  position:relative;
  min-height:320px;
  border-radius:30px;
  background:
    radial-gradient(circle at 18px 18px, rgba(26,101,210,.62) 7px, transparent 8px) 0 0/24px 24px,
    linear-gradient(135deg,#1d2740 0%, #272d39 68%);
  overflow:hidden;
}

.footer-newsletter__intro::after{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(circle at left center, rgba(39, 96, 190, .24) 0%, transparent 58%);
}

.footer-newsletter__copy{
  position:relative;
  z-index:1;
  padding:42px 34px;
}

.footer-newsletter__copy h3{
  margin:0;
  color:var(--yellow);
  font-size:52px;
  line-height:1;
  letter-spacing:-.03em;
}

.footer-newsletter__copy p{
  margin:14px 0 0;
  font-size:18px;
  font-weight:800;
  line-height:1.45;
}

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

.footer-field{
  display:grid;
  gap:8px;
}

.footer-field label,
.footer-consent{
  font-size:13px;
}

.footer-field label{
  font-weight:800;
}

.footer-field input{
  min-height:48px;
  border:1px solid rgba(255,255,255,.28);
  border-radius:14px;
  background:#2e3442;
  color:#fff;
  padding:0 14px;
}

.footer-field input::placeholder{color:rgba(255,255,255,.62)}

.footer-field--full,
.footer-consent,
.footer-submit{
  grid-column:1 / -1;
}

.footer-checks{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.footer-chip{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:46px;
  padding:0 14px;
  border-radius:14px;
  background:#3a404d;
  font-size:14px;
  font-weight:700;
}

.footer-chip input,
.footer-consent input{
  width:18px;
  height:18px;
  accent-color:var(--yellow);
}

.footer-consent{
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height:1.6;
}

.footer-consent a{
  color:#8cb6ff;
  text-decoration:underline;
}

.footer-submit{
  display:flex;
  justify-content:flex-end;
}

.footer-submit button{
  min-width:220px;
  min-height:50px;
  border:0;
  border-radius:16px;
  background:var(--yellow);
  color:#1d2330;
  font-size:18px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 18px 34px rgba(255,230,0,.18);
}

.footer-links{
  border-top:1px solid #404856;
}

.footer-links__grid{
  display:grid;
  grid-template-columns:240px repeat(4, minmax(0,1fr));
  gap:24px;
  padding:26px 0 20px;
}

.footer-brand-col{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:16px;
}

.footer-brand-col img{
  width:170px;
  display:block;
}

.footer-venda{
  display:flex;
  flex-direction:column;
  gap:4px;
  font-weight:900;
  line-height:1;
}

.footer-venda__lead{
  font-size:34px;
  color:#fff;
}

.footer-venda__mark{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 10px;
  border-radius:10px;
  background:var(--yellow);
  color:#161b27;
  font-size:28px;
  text-transform:lowercase;
}

.footer-links h4{
  margin:0 0 14px;
  color:#fff;
  font-size:19px;
}

.footer-links a{
  display:block;
  margin-bottom:10px;
  font-size:14px;
  color:#e6ebf3;
}

.footer-links a:hover{text-decoration:underline}

.footer-copy{
  margin:0;
  padding:14px 0 26px;
  border-top:1px solid #404856;
  text-align:center;
  color:#d4dbe8;
  font-size:13px;
}

.back-to-top{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:45;
  width:58px;
  height:58px;
  border:0;
  border-radius:18px;
  background:#2a2f3a;
  color:#fff;
  font-size:30px;
  cursor:pointer;
  box-shadow:0 18px 34px rgba(0,0,0,.24);
  opacity:0;
  pointer-events:none;
  transform:translateY(12px);
  transition:opacity .2s ease, transform .2s ease;
}

.back-to-top.is-visible{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}

@media (max-width: 1320px){
  .topbar__inner{grid-template-columns:230px minmax(0,1fr) auto;min-height:92px;gap:18px}
  .brand img{height:56px}
  .search input{height:54px}
  .support-btn{font-size:14px}
  .page-title{font-size:50px}
  .products{grid-template-columns:repeat(3, minmax(0,1fr))}
  .product-media{min-height:520px}
  .product-info h1{font-size:44px}
  .buy-price{font-size:48px}
  .cart-page,
  .checkout{grid-template-columns:minmax(0,1fr) 360px}
  .footer-newsletter__grid{grid-template-columns:360px minmax(0,1fr)}
  .footer-links__grid{grid-template-columns:190px repeat(4, minmax(0,1fr))}
}

@media (max-width: 1080px){
  .content-grid{grid-template-columns:260px minmax(0,1fr)}
  .products{grid-template-columns:repeat(2, minmax(0,1fr))}
  .product-page{grid-template-columns:1fr}
  .product-media{min-height:460px}
  .cart-page,
  .checkout{grid-template-columns:1fr}
  .footer-newsletter__grid{grid-template-columns:1fr}
  .footer-links__grid{grid-template-columns:repeat(2, minmax(0,1fr))}
  .footer-brand-col{grid-column:1 / -1}
}

@media (max-width: 860px){
  .container{width:calc(100% - 24px)}

  .topbar{
    background:#252b38;
    color:#fff;
    border-bottom:1px solid #1d2230;
  }

  .topbar__inner{
    grid-template-columns:1fr auto;
    gap:10px;
    min-height:78px;
    padding:10px 0;
  }

  .menu-btn{display:inline-flex;color:#fff}
  .brand img{height:48px}
  .search,
  .support-btn,
  .login-btn span,
  .cart-total,
  .nav{display:none}
  .top-actions{gap:2px}
  .icon-btn{color:#fff}
  .icon-btn:hover{background:rgba(255,255,255,.08)}

  .breadcrumb{padding:18px 0 8px;font-size:12px}
  .page-title{font-size:36px;margin-bottom:12px}
  .banner{border-radius:18px}
  .content-grid{
    grid-template-columns:1fr;
    gap:12px;
    padding:16px 0 26px;
  }

  .filters{
    display:none;
  }

  .filters.is-open{
    position:fixed;
    inset:auto 12px 12px 12px;
    z-index:50;
    display:block;
    max-height:78vh;
    overflow:auto;
    padding:18px;
    border-radius:24px;
    background:#fff;
    box-shadow:0 28px 80px rgba(0,0,0,.22);
  }

  .mobile-filters-trigger{display:block}

  .mobile-filters-trigger button{
    width:100%;
    min-height:46px;
    border:0;
    border-radius:14px;
    background:#232936;
    color:#fff;
    font-weight:900;
    cursor:pointer;
  }

  .products-head{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .products-head > div:last-child{
    display:grid !important;
    gap:6px;
  }

  .products-head select{
    width:100%;
    min-width:0;
  }

  .products{gap:12px}
  .product-card__img{height:220px;padding:16px 12px 34px;border-radius:18px}
  .product-card__fav{bottom:108px}
  .product-card__name{min-height:46px;font-size:16px}
  .price{font-size:24px}
  .product-media{min-height:360px;padding:20px}
  .share-btn{width:52px;height:52px}
  .product-info h1{font-size:32px}
  .product-info .desc{font-size:16px}
  .buy-box{padding:18px}
  .buy-price{font-size:40px}
  .shipping-calc__grid,
  .form-grid,
  .field-row{grid-template-columns:1fr}
  .drawer-item{
    grid-template-columns:70px minmax(0,1fr);
    gap:12px;
    align-items:start;
  }
  .drawer-item img{width:70px;height:64px}
  .drawer-item > :nth-child(3),
  .drawer-item > :nth-child(4){grid-column:2}
  .cart-row{
    grid-template-columns:80px minmax(0,1fr);
    align-items:start;
    gap:10px;
  }
  .cart-row img{width:80px;height:72px}
  .cart-row > :nth-child(3),
  .cart-row > :nth-child(4),
  .cart-row > :nth-child(5){grid-column:2}
  .cart-row__total{align-items:flex-start}
  .summary-total strong{font-size:34px}
  .footer-newsletter__intro{min-height:160px}
  .footer-newsletter__copy{padding:28px 22px}
  .footer-newsletter__copy h3{font-size:38px}
  .footer-form{grid-template-columns:1fr}
  .footer-submit{justify-content:stretch}
  .footer-submit button{width:100%;min-width:0}
}

@media (max-width: 640px){
  .container{width:calc(100% - 20px)}
  .brand img{height:42px}
  .page-title{font-size:32px}
  .products{
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:10px;
  }
  .product-card__img{height:178px;padding:14px 10px 28px}
  .product-card__fav{
    width:36px;
    height:36px;
    right:10px;
    bottom:92px;
    border-radius:12px;
  }
  .badge{top:10px;left:10px;padding:8px 12px;font-size:13px;border-radius:10px}
  .product-card__name{font-size:14px;min-height:42px}
  .price{font-size:22px}
  .installments{font-size:12px}
  .add-btn{min-height:46px;font-size:16px;border-radius:14px}
  .breadcrumb{font-size:11px}
  .product-media{min-height:300px;padding:16px}
  .buy-btn,
  .checkout-btn,
  .drawer-go{font-size:16px}
  .drawer{
    border-radius:22px;
  }
  .drawer__head,
  .drawer__body{padding-inline:18px}
  .cart-card{padding:18px}
  .cart-card h2,
  .summary h3,
  .success h2{font-size:28px}
  .shipping-choice{
    grid-template-columns:22px minmax(0,1fr);
    align-items:start;
  }
  .shipping-choice__price{
    grid-column:2;
  }
  .footer-links__grid{grid-template-columns:1fr}
  .footer-brand-col img{width:140px}
  .footer-venda__lead{font-size:26px}
  .footer-venda__mark{font-size:22px;min-height:32px}
  .back-to-top{
    right:16px;
    bottom:16px;
    width:52px;
    height:52px;
    border-radius:16px;
    font-size:28px;
  }
}

/* Storefront refinement aligned with the Panini reference */
body{
  background:#f5f6fb;
  color:#1f2740;
  font-family:Arial, "Trebuchet MS", sans-serif;
}

.container{
  width:min(1440px, calc(100% - 48px));
}

.topbar{
  background:#f7f7fb;
  border-bottom:1px solid #d7dbe4;
  backdrop-filter:none;
}

.topbar__inner{
  grid-template-columns:260px minmax(0,1fr) auto;
  min-height:110px;
  gap:28px;
}

.brand img{
  height:58px;
  filter:none;
}

.search input{
  height:58px;
  border:1px solid #cfd5df;
  border-radius:10px;
  box-shadow:none;
  padding:0 56px 0 18px;
  font-size:16px;
}

.search button{
  top:9px;
  right:10px;
}

.icon-btn{
  border-radius:10px;
}

.icon-btn .icon{
  width:24px;
  height:24px;
}

.mobile-search-btn{
  display:none;
}

.support-btn{
  font-size:15px;
  font-weight:500;
}

.cart-total{
  min-width:82px;
  min-height:30px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 14px;
  border-radius:8px;
  background:#232832;
  font-size:15px;
}

.nav{
  background:#2b3038;
  border-bottom:0;
}

.nav__inner{
  min-height:56px;
  gap:24px;
}

.nav a{
  min-height:56px;
  font-size:14px;
  font-weight:700;
  opacity:1;
}

.nav a.is-active{
  background:#55585d;
  padding-inline:18px;
}

.mobile-nav{
  width:min(390px, calc(100vw - 20px));
  padding:18px 18px 26px;
  background:#252b38;
  box-shadow:26px 0 56px rgba(0,0,0,.34);
}

.mobile-nav__head img{
  max-width:214px;
}

.mobile-nav__close{
  border-radius:8px;
}

.mobile-nav__search input{
  height:48px;
  border-radius:8px;
  background:#303644;
}

.mobile-nav__links a{
  min-height:44px;
  border-radius:8px;
}

.mobile-nav__support{
  border-radius:8px;
}

.breadcrumb{
  padding:24px 0 14px;
  font-size:15px;
  color:#727b8f;
}

.breadcrumb a{
  color:#263047;
}

.page-title{
  margin:0 0 22px;
  font-size:60px;
  line-height:1.04;
  font-weight:400;
  letter-spacing:-.04em;
  color:#222a3d;
}

.banner,
.banner--catalog{
  border:0;
  border-radius:4px;
  background:transparent;
  box-shadow:none;
}

.banner img{
  border-radius:4px;
}

.catalog-grid{
  grid-template-columns:300px minmax(0,1fr);
  gap:38px;
  padding:28px 0 54px;
}

.catalog-content{
  min-width:0;
}

.filters h2{
  margin:0 0 20px;
  font-size:56px;
  line-height:1;
}

.filter-card{
  margin-bottom:18px;
  padding:18px 18px 16px;
  border:1px solid #dfe4ee;
  border-radius:8px;
  background:#fff;
  box-shadow:none;
}

.filter-card__title{
  margin-bottom:14px;
  font-size:17px;
  line-height:1.2;
}

.filter-card__title span{
  color:#0f4f99;
  font-size:18px;
}

.filter-card label{
  gap:10px;
  padding:8px 0;
  font-size:14px;
  line-height:1.4;
}

.filter-card input[type="checkbox"]{
  width:18px;
  height:18px;
  margin:0;
}

.filter-card__count{
  margin-left:auto;
  color:#6a7283;
  font-weight:400;
}

.filter-card__price-row{
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:#1a2235;
  font-size:17px;
  font-weight:800;
}

.filter-card__range{
  padding:10px 0 14px;
}

.filter-card__range input{
  width:100%;
  margin:0;
}

.filter-card__range input + input{
  margin-top:8px;
}

.filter-card__range input[type="range"]{
  appearance:none;
  height:4px;
  background:#d7dce5;
  border-radius:999px;
  outline:none;
}

.filter-card__range input[type="range"]::-webkit-slider-thumb{
  appearance:none;
  width:20px;
  height:20px;
  border:0;
  border-radius:50%;
  background:#0e78db;
}

.filter-card__range input[type="range"]::-moz-range-thumb{
  width:20px;
  height:20px;
  border:0;
  border-radius:50%;
  background:#0e78db;
}

.filter-card__btn{
  height:54px;
  border-radius:6px;
  font-size:17px;
}

.catalog-toolbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:26px;
}

.catalog-toolbar__count{
  font-size:17px;
  color:#7a8090;
}

.catalog-toolbar__actions{
  display:flex;
  align-items:flex-end;
  gap:18px;
}

.catalog-filter-button{
  display:none;
  border:0;
  border-radius:6px;
  background:#252a33;
  color:#fff;
  cursor:pointer;
}

.catalog-sort{
  display:flex;
  align-items:center;
  gap:14px;
  color:#253047;
  font-size:17px;
  font-weight:700;
}

.catalog-sort select{
  min-width:240px;
  height:64px;
  border:1px solid #aeb5c1;
  border-radius:8px;
  background:#fff;
  padding:0 18px;
  color:#111827;
  box-shadow:none;
}

.products{
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:26px;
}

.product-card{
  min-width:0;
}

.product-card__media{
  position:relative;
}

.product-card__img{
  height:430px;
  padding:22px 18px 40px;
  border:1px solid #eceff4;
  border-radius:4px;
  background:#fff;
  box-shadow:none;
}

.badge{
  top:12px;
  left:12px;
  padding:11px 18px;
  border-radius:4px;
  font-size:18px;
  box-shadow:none;
}

.product-card__fav{
  right:12px;
  bottom:12px;
  width:48px;
  height:48px;
  border:1px solid #eceff4;
  border-radius:6px;
  background:#fff;
  color:#92a0b5;
  font-size:28px;
  box-shadow:none;
}

.product-card__body{
  gap:10px;
  padding-top:14px;
}

.product-card__name{
  min-height:74px;
  font-size:17px;
  line-height:1.28;
  font-weight:400;
  color:#1c2437;
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
}

.price{
  margin-top:2px;
  color:#14203d;
  font-size:31px;
  letter-spacing:-.04em;
}

.installments{
  min-height:22px;
  font-size:16px;
  color:#1d2944;
}

.installments--empty{
  visibility:hidden;
}

.add-btn{
  min-height:58px;
  border-radius:6px;
  background:#2ecb70;
  box-shadow:none;
  font-size:19px;
}

.add-btn .icon{
  width:22px;
  height:22px;
}

.add-btn--notify{
  background:#ffe600;
  color:#111827;
}

.product-page{
  gap:32px;
}

.product-media{
  min-height:580px;
  padding:24px;
  border-radius:4px;
  box-shadow:none;
  background:#fff;
}

.share-btn{
  box-shadow:none;
}

.product-info h1{
  font-size:56px;
}

.preorder-note{
  border-radius:4px;
}

.buy-box{
  border-radius:4px;
  box-shadow:none;
}

.shipping-calc{
  border-radius:4px;
}

.footer-main{
  margin-top:54px;
}

.footer-newsletter,
.footer-links{
  background:#2b303b;
}

.footer-newsletter{
  border-top:0;
}

.footer-newsletter__grid{
  grid-template-columns:430px minmax(0,1fr);
  gap:34px;
  padding:34px 0 28px;
}

.footer-newsletter__intro{
  min-height:250px;
  border-radius:0;
  background:
    radial-gradient(circle at 9px 9px, rgba(18, 88, 186, .78) 0 5px, transparent 5.5px) 0 0/18px 18px,
    linear-gradient(180deg, transparent 0%, transparent 100%);
}

.footer-newsletter__intro::after{
  background:radial-gradient(circle at left center, rgba(18, 88, 186, .18) 0%, transparent 58%);
}

.footer-newsletter__copy{
  padding:82px 0 0;
}

.footer-newsletter__copy h3{
  font-size:56px;
}

.footer-newsletter__copy p{
  margin-top:12px;
  font-size:20px;
  font-weight:700;
}

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

.footer-field{
  gap:10px;
}

.footer-field label{
  font-size:15px;
  font-weight:700;
}

.footer-field input{
  min-height:46px;
  border:1px solid rgba(255,255,255,.35);
  border-radius:8px;
  background:#2f3440;
  padding:0 20px;
}

.footer-checks{
  gap:12px;
}

.footer-chip{
  min-height:46px;
  padding:0 16px;
  border-radius:6px;
  background:#40444e;
  font-size:17px;
  font-weight:500;
}

.footer-form__bottom{
  grid-column:1 / -1;
  display:grid;
  grid-template-columns:minmax(0,1fr) 248px;
  gap:18px;
  align-items:center;
}

.footer-consent{
  margin:0;
  gap:14px;
  font-size:15px;
}

.footer-submit{
  justify-content:flex-end;
}

.footer-submit button{
  width:100%;
  min-width:0;
  min-height:64px;
  border-radius:6px;
  box-shadow:none;
  font-size:22px;
}

.footer-links{
  border-top:1px solid #454b59;
}

.footer-links__grid{
  grid-template-columns:260px repeat(4, minmax(0,1fr));
  gap:34px;
  padding:36px 0 24px;
}

.footer-brand-col{
  gap:22px;
}

.footer-brand-col img{
  width:176px;
}

.footer-venda{
  flex-direction:row;
  flex-wrap:wrap;
  gap:12px;
}

.footer-venda__lead,
.footer-venda__mark{
  min-height:56px;
  padding:0 14px;
  border-radius:0;
  font-size:38px;
  text-transform:none;
}

.footer-venda__lead{
  background:#10151e;
  color:#fff;
}

.footer-venda__mark{
  background:#ffe600;
  color:#10151e;
}

.footer-links__column h4{
  margin-bottom:18px;
  font-size:24px;
}

.footer-links__column a{
  margin-bottom:12px;
  font-size:16px;
  line-height:1.35;
}

.footer-copy{
  padding:18px 0 22px;
  font-size:14px;
}

.back-to-top{
  right:22px;
  bottom:18px;
  width:52px;
  height:52px;
  border-radius:8px;
  font-size:26px;
}

@media (max-width: 1280px){
  .topbar__inner{
    grid-template-columns:230px minmax(0,1fr) auto;
  }

  .catalog-grid{
    grid-template-columns:280px minmax(0,1fr);
    gap:28px;
  }

  .products{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }

  .product-card__img{
    height:370px;
  }

  .footer-newsletter__grid{
    grid-template-columns:340px minmax(0,1fr);
  }

  .footer-links__grid{
    grid-template-columns:220px repeat(4, minmax(0,1fr));
    gap:24px;
  }
}

@media (max-width: 1080px){
  .container{
    width:calc(100% - 32px);
  }

  .catalog-grid{
    grid-template-columns:1fr;
    gap:16px;
  }

  .filters{
    display:none;
  }

  .filters.is-open{
    position:fixed;
    left:16px;
    right:16px;
    top:96px;
    bottom:16px;
    z-index:65;
    display:block;
    overflow:auto;
    padding:18px;
    border:1px solid #dfe4ee;
    border-radius:12px;
    background:#f8f9fc;
    box-shadow:0 24px 60px rgba(16,24,40,.24);
  }

  .catalog-filter-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    min-width:180px;
    height:56px;
    padding:0 18px;
    font-size:18px;
    font-weight:800;
  }

  .products{
    grid-template-columns:repeat(3, minmax(0,1fr));
  }

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

  .product-media{
    min-height:460px;
  }

  .footer-newsletter__grid{
    grid-template-columns:1fr;
  }

  .footer-links__grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }

  .footer-brand-col{
    grid-column:1 / -1;
  }
}

@media (max-width: 860px){
  .container{
    width:calc(100% - 24px);
  }

  .topbar{
    background:#252b38;
    border-bottom:1px solid #444a58;
    box-shadow:0 4px 12px rgba(0,0,0,.16);
  }

  .topbar__inner{
    grid-template-columns:minmax(0,1fr) auto;
    min-height:84px;
    gap:10px;
    padding:0;
  }

  .mobile-left{
    gap:10px;
  }

  .menu-btn{
    display:inline-flex;
    color:#fff;
  }

  .brand img{
    height:40px;
  }

  .search,
  .support-btn,
  .login-btn,
  .cart-total,
  .nav{
    display:none !important;
  }

  .mobile-search-btn{
    display:inline-flex;
  }

  .top-actions{
    gap:2px;
  }

  .icon-btn{
    color:#fff;
    padding:8px;
    border-radius:8px;
  }

  .icon-btn:hover{
    background:rgba(255,255,255,.08);
  }

  .breadcrumb{
    padding:16px 0 10px;
    font-size:12px;
  }

  .page-title{
    margin-bottom:12px;
    font-size:36px;
    line-height:1.08;
  }

  .banner img{
    border-radius:3px;
  }

  .catalog-grid{
    gap:14px;
    padding:14px 0 34px;
  }

  .catalog-toolbar{
    display:grid;
    gap:12px;
    margin-bottom:18px;
  }

  .catalog-toolbar__count{
    font-size:15px;
  }

  .catalog-toolbar__actions{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:12px;
  }

  .catalog-filter-button{
    width:100%;
    min-width:0;
    height:54px;
    font-size:17px;
  }

  .catalog-sort{
    display:block;
  }

  .catalog-sort span{
    display:none;
  }

  .catalog-sort select{
    width:100%;
    min-width:0;
    height:54px;
  }

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

  .product-card__img{
    height:220px;
    padding:18px 10px 38px;
  }

  .badge{
    top:10px;
    left:10px;
    padding:9px 14px;
    font-size:14px;
  }

  .product-card__fav{
    width:40px;
    height:40px;
    font-size:22px;
  }

  .product-card__name{
    min-height:56px;
    font-size:14px;
  }

  .price{
    font-size:24px;
  }

  .installments{
    min-height:18px;
    font-size:13px;
  }

  .add-btn{
    min-height:42px;
    font-size:15px;
  }

  .add-btn .icon{
    width:18px;
    height:18px;
  }

  .product-info h1{
    font-size:34px;
  }

  .footer-newsletter__intro{
    min-height:180px;
  }

  .footer-newsletter__copy{
    padding:32px 0 0;
  }

  .footer-newsletter__copy h3{
    font-size:34px;
  }

  .footer-newsletter__copy p{
    font-size:15px;
  }

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

  .footer-form__bottom{
    grid-template-columns:1fr;
  }

  .footer-chip{
    min-height:42px;
    font-size:15px;
  }

  .footer-submit button{
    min-height:54px;
    font-size:18px;
  }
}

@media (max-width: 640px){
  .container{
    width:calc(100% - 18px);
  }

  .brand img{
    height:36px;
  }

  .page-title{
    font-size:32px;
  }

  .products{
    gap:14px 12px;
  }

  .product-card__img{
    height:190px;
    padding:16px 10px 36px;
  }

  .product-card__name{
    min-height:62px;
  }

  .price{
    font-size:21px;
  }

  .installments{
    font-size:12px;
  }

  .add-btn{
    min-height:40px;
    font-size:14px;
  }

  .filters.is-open{
    left:10px;
    right:10px;
    top:88px;
    bottom:10px;
  }

  .footer-links__grid{
    grid-template-columns:1fr;
  }

  .footer-brand-col img{
    width:138px;
  }

  .footer-venda__lead,
  .footer-venda__mark{
    min-height:44px;
    padding:0 10px;
    font-size:26px;
  }

  .footer-links__column h4{
    margin-bottom:14px;
    font-size:18px;
  }

  .footer-links__column a{
    margin-bottom:10px;
    font-size:14px;
  }

  .footer-copy{
    font-size:13px;
  }

  .back-to-top{
    right:14px;
    bottom:14px;
    width:46px;
    height:46px;
    font-size:22px;
  }
}

/* Final pass for stable responsive layout across all store pages */
.topbar__inner,
.product-page,
.cart-page,
.checkout,
.cart-row,
.drawer-item,
.footer-newsletter__grid,
.footer-links__grid,
.catalog-toolbar__actions,
.summary-total__value{
  min-width:0;
}

.topbar__inner{
  overflow:hidden;
}

.brand{
  width:clamp(170px, 18vw, 260px);
  max-width:100%;
  min-width:0;
  min-height:58px;
  display:flex;
  align-items:center;
}

.brand img{
  width:100%;
  max-width:100%;
  max-height:58px;
  height:auto;
  object-fit:contain;
  object-position:left center;
}

.page-shell{
  padding-bottom:34px;
}

.page-panel,
.summary-panel,
.success{
  border-radius:8px;
  box-shadow:none;
}

.page-header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}

.page-header-row h2,
.page-heading{
  margin:0;
}

.page-block-title{
  margin:0 0 10px;
  color:#20293e;
  font-size:16px;
  font-weight:900;
  border-top: 1px solid black
}

.cart-items-wrap{
  margin-top:6px;
}

.summary-copy,
.checkout-lead,
.notice,
.success p,
.product-info .desc{
  overflow-wrap:anywhere;
}

.summary-shipping{
  display:grid;
  gap:12px;
  margin-bottom:10px;
}

.form-grid--shipping{
  grid-template-columns:1fr 1fr;
}

.help-text{
  margin-top:6px;
  font-size:12px;
}

.installments-row{
  margin-top:10px;
}

.summary-total__value{
  text-align:right;
}

.price,
.buy-price,
.summary-total strong,
.drawer-total strong,
.cart-row__price,
.summary-line span:last-child{
  white-space:nowrap;
  max-width:100%;
}

.catalog-products .price{
  white-space:normal;
  line-height:1.1;
}

.catalog-products .installments{
  white-space:normal;
  overflow-wrap:anywhere;
}

.price{
  font-size:clamp(24px, 2vw, 31px);
  line-height:1.05;
}

.buy-price{
  font-size:clamp(40px, 4vw, 58px);
  line-height:1.02;
}

.summary-total strong{
  font-size:clamp(34px, 3vw, 42px);
  line-height:1.04;
}

.cart-row__name{
  font-size:16px;
  font-weight:700;
}

.cart-row__price{
  font-size:18px;
}

.success{
  max-width:760px;
  margin:24px auto 56px;
  padding:34px;
}

.success-link{
  margin-top:22px;
}

.success-link a{
  font-weight:800;
  text-decoration:underline;
}

@media (max-width: 1320px){
  .brand{
    width:clamp(160px, 17vw, 230px);
    min-height:54px;
  }

  .brand img{
    max-height:54px;
  }
}

@media (max-width: 1080px){
  .cart-page,
  .checkout{
    grid-template-columns:1fr;
  }

  .summary-panel{
    order:2;
  }

  .page-panel{
    order:1;
  }

  .page-header-row{
    flex-wrap:wrap;
  }
}

@media (max-width: 860px){
  .icon-btn.menu-btn{
    display:inline-flex;
  }

  .brand{
    width:min(176px, 45vw);
    min-height:40px;
  }

  .brand img{
    max-height:40px;
  }

  .page-shell{
    padding-bottom:24px;
  }

  .product-page{
    gap:20px;
  }

  .product-gallery,
  .product-info{
    min-width:0;
  }

  .share-row{
    flex-wrap:wrap;
    justify-content:flex-start;
  }

  .share-btn{
    width:50px;
    height:50px;
    font-size:18px;
  }

  .cart-card{
    padding:18px;
  }

  .cart-row{
    grid-template-columns:84px minmax(0,1fr);
    gap:12px;
    align-items:start;
  }

  .cart-row img{
    width:84px;
    height:74px;
  }

  .cart-row > :nth-child(3),
  .cart-row > :nth-child(4),
  .cart-row > :nth-child(5){
    grid-column:2;
  }

  .cart-row__total{
    align-items:flex-start;
  }

  .field-row,
  .form-grid--shipping{
    grid-template-columns:1fr;
  }

  .secondary-btn{
    width:100%;
  }

  .success{
    margin:18px 0 38px;
    padding:24px 18px;
  }
}

@media (max-width: 640px){
  .topbar__inner{
    min-height:76px;
  }

  .brand{
    width:min(154px, 44vw);
    min-height:36px;
  }

  .brand img{
    max-height:36px;
  }

  .product-card__body{
    gap:8px;
  }

  .price{
    font-size:clamp(15px, 4.8vw, 19px);
  }

  .buy-price{
    font-size:clamp(32px, 10vw, 40px);
  }

  .summary-total strong{
    font-size:clamp(28px, 9vw, 34px);
  }

  .cart-row__price{
    font-size:16px;
  }

  .success h2{
    font-size:28px;
  }
}

/* Hardening pass for header, footer and dense mobile cards */
.store-footer{
  position:relative;
  margin-top:54px;
}

.nav{
  position:sticky;
  top:110px;
  z-index:39;
}

.topbar__inner{
  grid-template-columns:minmax(190px, 260px) minmax(260px, 1fr) auto;
}

.top-actions,
.top-actions > *,
.search,
.mobile-left,
.catalog-sort,
.footer-form,
.footer-form__bottom,
.footer-consent,
.footer-links__column,
.mobile-nav__links,
.mobile-nav__support,
.page-title,
.product-info h1,
.product-card__body{
  min-width:0;
}

.top-actions{
  flex-wrap:nowrap;
}

.top-actions > *{
  flex:0 0 auto;
}

.support-btn span,
.login-btn span,
.mobile-nav__links a,
.footer-links__column a,
.footer-consent span,
.page-title,
.product-info h1{
  overflow-wrap:anywhere;
}

.support-btn span,
.login-btn span{
  white-space:nowrap;
}

.cart-total{
  white-space:nowrap;
}

.mobile-nav__links a.is-active{
  background:rgba(255,255,255,.16);
}

.footer-form,
.footer-form__bottom{
  align-items:start;
}

.footer-submit button{
  max-width:100%;
}

.product-card__body{
  overflow:hidden;
}

.price,
.installments{
  width:100%;
}

@media (max-width: 1080px){
  .nav{
    top:108px;
  }

  .topbar__inner{
    grid-template-columns:minmax(176px, 220px) minmax(0, 1fr) auto;
  }
}

@media (max-width: 860px){
  .topbar__inner{
    grid-template-columns:minmax(0, 1fr) auto;
  }

  .product-card__body{
    gap:8px;
  }

  .price{
    font-size:clamp(19px, 5vw, 23px);
  }

  .installments{
    font-size:12px;
    line-height:1.35;
  }
}

@media (max-width: 640px){
  .store-footer{
    margin-top:36px;
  }

  .price{
    font-size:clamp(16px, 4.8vw, 20px);
  }

  .product-card__name{
    min-height:60px;
  }

  .footer-form__bottom{
    gap:14px;
  }
}
