@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Bebas+Neue&display=swap');

:root {
  --yellow: #FFD400;
  --yellow-soft: rgba(255, 212, 0, 0.14);
  --yellow-soft-2: rgba(255, 212, 0, 0.08);
  --yellow-border: rgba(255, 212, 0, 0.24);

  --bg: #050505;
  --bg-2: #0c0c0c;
  --bg-3: #111111;
  --card: #111111;
  --card-2: #161616;

  --text: #ffffff;
  --text-soft: rgba(255,255,255,0.82);
  --muted: rgba(255,255,255,0.68);
  --muted-2: rgba(255,255,255,0.45);

  --border: rgba(255,255,255,0.08);
  --border-soft: rgba(255,255,255,0.06);

  --shadow: 0 10px 40px rgba(0,0,0,0.35);
  --shadow-strong: 0 18px 50px rgba(0,0,0,0.42);

  --radius: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --container: 1240px;
  --transition: .22s ease;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body.shopBody {
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at top center, rgba(255,212,0,0.12), transparent 35%),
    linear-gradient(180deg, #060606 0%, #030303 100%);
  color: var(--text);
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
select,
input,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* TIPOGRAFIA GLOBAL */
h1,
h2,
.hero h1,
.sectionHead h2,
.legalHero h1,
.legalCard h2 {
  font-family: 'Bebas Neue', sans-serif;
}

p,
li,
td,
th,
label,
input,
select,
textarea,
span,
div,
a,
button {
  font-family: 'Inter', sans-serif;
}

/* TOPBAR */
.topbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(12px);
  background: rgba(10,10,12,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbarInner {
  max-width: 1200px;
  margin: 0 auto;
  min-height: 72px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brandBlock {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  min-width: 0;
}

.brandEyebrow {
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.brandTitle {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brandBlock:hover .brandTitle {
  opacity: .85;
}

.topActions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.topLink {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all var(--transition);
}

.topLink:hover {
  background: var(--yellow);
  color: #111;
  border-color: var(--yellow);
}

.cartLink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,.03);
  transition: all var(--transition);
}

.cartLink:hover {
  border-color: var(--yellow);
}

.cartCount {
  min-width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--yellow);
  color: #111;
  font-size: 12px;
  font-weight: 800;
  padding: 0 6px;
}

.cartLabel {
  font-size: 14px;
  font-weight: 700;
}

/* HERO */
.hero {
  padding: 42px 0 24px;
}

.heroInner {
  position: relative;
}

.heroContent {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255,212,0,0.12), rgba(255,255,255,0.02)),
    #0b0b0b;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 28px;
  padding: 28px 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.heroContent::after {
  content: "";
  position: absolute;
  inset: auto -20% -60% auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,212,0,0.18), transparent 70%);
  pointer-events: none;
}

.heroBadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--yellow);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  border-radius: 999px;
  padding: 8px 12px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 6vw, 4rem);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 820px;
}

.hero p {
  margin: 14px 0 0;
  max-width: 700px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

/* SECTION */
.shopMain {
  padding-bottom: 56px;
}

.sectionHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin: 10px 0 18px;
}

.sectionKicker {
  display: inline-block;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.sectionHead h2 {
  margin: 0;
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* PRODUCT GRID */
.productGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

/* PRODUCT CARD */
.productCard {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition:
    transform var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
}

.productCard:hover {
  transform: translateY(-4px);
  border-color: var(--yellow-border);
  box-shadow: var(--shadow-strong);
}

.productMedia {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.08;
  background: #131313;
  overflow: hidden;
}

.productImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.productCard:hover .productImage {
  transform: scale(1.04);
}

.imageOverlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,0.42) 100%);
  pointer-events: none;
}

.productInfo {
  padding: 16px;
}

.productTop {
  min-height: 24px;
  margin-bottom: 8px;
}

.productBadge {
  display: inline-flex;
  align-items: center;
  background: var(--yellow);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.05em;
  padding: 7px 11px;
  border-radius: 999px;
  text-transform: uppercase;
}

.productInfo h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}

.productDesc {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  min-height: 42px;
}

.productBottom {
  display: grid;
  gap: 14px;
}

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

.productPrice {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.productSubprice {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.buyBtn,
.buyBigBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  background: var(--yellow);
  color: #000;
  font-weight: 900;
  text-align: center;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    opacity .18s ease;
  box-shadow: 0 10px 24px rgba(255,212,0,0.18);
}

.buyBtn {
  min-height: 50px;
  width: 100%;
  border-radius: 14px;
  font-size: 14px;
  letter-spacing: 0.02em;
}

.buyBigBtn {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  font-size: 16px;
  padding: 0 18px;
}

.buyBtn:hover,
.buyBigBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255,212,0,0.22);
}

/* EMPTY / LOADING */
.emptyState {
  background: #0f0f0f;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 20px;
  text-align: center;
}

.emptyState h3 {
  margin: 0 0 8px;
  font-size: 22px;
  font-family: 'Inter', sans-serif;
}

.emptyState p {
  margin: 0;
  color: var(--muted);
}

.loadingCards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.loadingCard {
  height: 420px;
  border-radius: 24px;
  background: linear-gradient(90deg, #121212 0%, #1a1a1a 50%, #121212 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
  border: 1px solid var(--border);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* TRUST */
.shopTrust {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 36px;
  margin-bottom: 8px;
}

.trustCard {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 18px;
}

.trustTitle {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.trustCard p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* FOOTER */
.shopFooter,
.cl-footer {

  border-top: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, #111214 0%, #0b0b0c 100%);
  color: #d7d9df;
  padding: 42px 20px 18px;
}

.footerGrid,
.cl-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  padding-top: 0;
  padding-bottom: 0;
}

.footerCol {
  display: grid;
  gap: 10px;
}

.footerColBrand {
  max-width: 360px;
}

.footerBrand {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-family: 'Inter', sans-serif;
}

.footerCol h4,
.cl-footer h3,
.cl-footer h4 {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.03em;
  font-family: 'Inter', sans-serif;
}

.cl-footer h3 {
  color: #fff;
  font-size: 20px;
}

.footerText,
.footerCol p,
.footerCol a,
.cl-footer p,
.cl-footer li {
  margin: 0 0 10px;
  color: #b8bcc6;
  font-size: 14px;
  line-height: 1.6;
  text-decoration: none;
}

.footerCol a:hover,
.cl-footer a:hover {
  color: #fff;
  text-decoration: underline;
}

.cl-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cl-footer a {
  color: var(--yellow);
}

.cl-footer strong,
.footerCol strong {
  color: #fff;
}

.footerBottom,
.cl-footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  padding-top: 18px;
  padding-bottom: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #969ba6;
  font-size: 13px;
}

/* PRODUCT PAGE */
.productMain {
  padding-top: 28px;
  padding-bottom: 56px;
}

.productLoading {
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
}

.productHeroGrid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.productGalleryCard,
.productContentCard {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.productGalleryCard {
  overflow: hidden;
}

.productMainImageWrap {
  background: #111;
  aspect-ratio: 1 / 1.06;
}

.productMainImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productThumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px;
}

.thumbBtn {
  appearance: none;
  border: 1px solid rgba(255,255,255,0.08);
  background: #0d0d0d;
  border-radius: 14px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
}

.thumbBtn img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.thumbBtn.isActive {
  border-color: rgba(255,212,0,0.7);
  box-shadow: 0 0 0 2px rgba(255,212,0,0.18);
}

.productContentCard {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 420px;
}

.productContentTop h1 {
  margin: 12px 0 10px;
  font-size: 52px;
  line-height: 0.98;
  letter-spacing: 0.03em;
  font-weight: 400;
  text-transform: uppercase;
}

.productPageDesc {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--muted);
}

.productPagePrice {
  font-size: 40px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 6px;
}

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

.eligibilityBox {
  margin-top: 18px;
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,212,0,0.08);
  border: 1px solid rgba(255,212,0,0.18);
}

.eligibilityBox strong {
  font-size: 14px;
}

.eligibilityBox span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.productActionsBox {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
  width: 100%;
}

.productField {
  width: 100%;
}

.productField label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.selectWrap {
  position: relative;
  width: 100%;
}

.productSelect {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: #0d0d0d;
  color: #fff;
  padding: 0 48px 0 16px;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  transition:
    border-color .18s ease,
    box-shadow .18s ease,
    background .18s ease;
}

.productSelect:focus {
  border-color: rgba(255,212,0,0.55);
  box-shadow: 0 0 0 3px rgba(255,212,0,0.12);
  background: #111;
}

.selectArrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-52%);
  pointer-events: none;
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  line-height: 1;
}

/* CHECKOUT */
.checkoutMain {
  padding-top: 28px;
  padding-bottom: 56px;
}

.checkoutLayout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.checkoutFormCard,
.checkoutSummaryCard {
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.checkoutFormCard,
.checkoutSummaryCard {
  padding: 22px;
}

.checkoutIntro h3,
.checkoutSummaryCard h3 {
  margin: 0 0 10px;
  font-size: 24px;
  font-family: 'Inter', sans-serif;
}

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

.checkoutForm {
  display: grid;
  gap: 16px;
}

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

.checkoutField label {
  font-size: 13px;
  font-weight: 800;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.checkoutInput,
.checkoutSelect {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: #0d0d0d;
  color: #fff;
  padding: 0 16px;
  outline: none;
}

.checkoutInput:focus,
.checkoutSelect:focus {
  border-color: rgba(255,212,0,0.55);
  box-shadow: 0 0 0 3px rgba(255,212,0,0.12);
}

.fieldHint {
  color: var(--muted-2);
  font-size: 13px;
  line-height: 1.5;
}

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

.shippingFields {
  display: grid;
  gap: 16px;
}

.checkoutActions {
  padding-top: 6px;
}

.checkoutStatus {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,212,0,0.08);
  border: 1px solid rgba(255,212,0,0.18);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.checkoutItems {
  display: grid;
  gap: 14px;
  margin-bottom: 18px;
}

.checkoutItem {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 12px;
  background: rgba(255,255,255,0.015);
}

.checkoutItem.isBlocked {
  border-color: rgba(255,90,90,0.25);
  background: rgba(255,90,90,0.04);
}

.checkoutItemMedia {
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 1 / 1;
}

.checkoutItemMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.checkoutItemTop {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.checkoutItemTop h4 {
  margin: 0 0 6px;
  font-size: 17px;
  line-height: 1.05;
  font-family: 'Inter', sans-serif;
}

.checkoutMeta,
.checkoutRule,
.checkoutBlocked {
  font-size: 13px;
  line-height: 1.5;
}

.checkoutMeta,
.checkoutRule {
  color: var(--muted);
}

.checkoutBlocked {
  color: #ff8f8f;
  font-weight: 700;
}

.checkoutQty {
  font-size: 13px;
  color: var(--muted);
  font-weight: 800;
}

.checkoutLinePrice {
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.checkoutTotals {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.totalRow {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.summaryBtn[disabled] {
  opacity: .45;
  cursor: not-allowed;
  pointer-events: none;
}

/* PÁGINAS LEGAIS */
.legalPage {
  min-height: 100vh;
  background:
    radial-gradient(circle at top right, rgba(255,212,0,.08), transparent 24%),
    linear-gradient(180deg,#0a0a0b 0%,#101014 100%);
  color: #f3f3f5;
  padding: 32px 0 80px;
}

.legalWrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

.legalHero {
  padding: 32px;
  background: linear-gradient(135deg, rgba(255,212,0,.12), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
  margin: 28px 0 24px;
}

.legalBadge {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,212,0,.12);
  color: #ffd400;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.legalHero h1 {
  margin: 18px 0 8px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legalHero p {
  margin: 0;
  max-width: 760px;
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.8;
}

.legalMeta {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(220px,1fr));
  gap: 14px;
  margin-top: 20px;
}

.legalMetaItem {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  padding: 16px;
  color: #b5b7c0;
  line-height: 1.65;
}

.legalMetaItem strong,
.legalCard strong {
  color: #fff;
}

.legalCard {
  background: rgba(24,24,28,.92);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 22px;
  padding: 28px;
  margin: 18px 0;
  box-shadow: 0 20px 60px rgba(0,0,0,.35);
}

.legalCard h2 {
  margin: 34px 0 10px;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.legalCard h2:first-child {
  margin-top: 0;
}

.legalCard p,
.legalCard li {
  color: rgba(255,255,255,0.82);
  font-size: 16px;
  line-height: 1.8;
}

.legalCard ul,
.legalCard ol {
  padding-left: 20px;
}

.legalCard a {
  color: #ffd400;
  text-decoration: none;
}

.legalCard a:hover {
  text-decoration: underline;
}

.legalTableWrap {
  overflow: auto;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.08);
  margin: 14px 0;
}

.legalTable {
  width: 100%;
  min-width: 560px;
  border-collapse: collapse;
  background: rgba(255,255,255,.02);
}

.legalTable th,
.legalTable td {
  padding: 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-align: left;
  vertical-align: top;
}

.legalTable th {
  background: rgba(255,255,255,.04);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: none;
}

.legalTable td {
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  line-height: 1.65;
}

.legalNotice {
  border-left: 4px solid #ffd400;
  background: rgba(255,212,0,.08);
  padding: 16px 18px;
  border-radius: 12px;
  color: #fff;
  margin: 14px 0;
}

.legalFooterNote {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #9b9da7;
  font-size: .95rem;
  line-height: 1.7;
}

/* TABLET */
@media (min-width: 700px) {
  .hero {
    padding: 54px 0 26px;
  }

  .heroContent {
    padding: 38px 34px;
  }

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

  .productBottom {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .buyBtn {
    width: auto;
    min-width: 144px;
    padding: 0 22px;
  }

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

/* DESKTOP */
@media (min-width: 960px) {
  .productHeroGrid {
    grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
    align-items: start;
  }

  .productContentCard {
    padding: 28px;
    position: sticky;
    top: 98px;
    max-width: none;
  }

  .productPagePrice {
    font-size: 52px;
  }

  .checkoutLayout {
    grid-template-columns: minmax(0, 1.15fr) 380px;
    align-items: start;
  }

  .checkoutSummary {
    position: sticky;
    top: 98px;
  }
}

@media (min-width: 980px) {
  .footerGrid,
  .cl-footer-inner {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
    gap: 28px;
    align-items: start;
  }
}

@media (min-width: 1100px) {
  .container {
    padding-left: 24px;
    padding-right: 24px;
  }

  .topbarInner {
    min-height: 78px;
  }

  .brandTitle {
    font-size: 20px;
  }

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

/* MOBILE */
@media (max-width: 900px) {
  .cl-footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .legalWrap {
    padding: 0 14px;
  }

  .legalHero,
  .legalCard {
    padding: 22px;
  }

  .topbarInner {
    padding: 12px 14px;
  }

  .brandTitle {
    font-size: 16px;
  }

  .topLinkDesktop {
    display: none;
  }

  .cartLabel {
    display: none;
  }

  .cartLink {
    padding: 8px 10px;
  }

  .cl-footer-inner,
  .footerGrid {
    grid-template-columns: 1fr;
  }

  .cl-footer,
  .shopFooter {
    padding: 32px 16px 18px;
  }
}

.productButtons {
  display: grid;
  gap: 12px;
}

.ghostBtn {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.03);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s ease;
}

.ghostBtn:hover {
  border-color: rgba(255,212,0,0.45);
  background: rgba(255,212,0,0.06);
}

.eligibilityCard {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  margin-top: 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,212,0,0.08), rgba(255,212,0,0.04));
  border: 1px solid rgba(255,212,0,0.18);
}

.eligibilityIcon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffd400;
  color: #111;
  font-size: 18px;
  font-weight: 900;
}

.eligibilityContent strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
}

.eligibilityContent p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.6;
  max-width: none;
}

/* CART */
.cartMain {
  padding-top: 28px;
  padding-bottom: 56px;
}

.cartLayout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.cartNotice {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,212,0,0.08);
  border: 1px solid rgba(255,212,0,0.16);
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.6;
}

.cartItems {
  display: grid;
  gap: 18px;
}

.cartItem {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.cartItemMedia {
  border-radius: 18px;
  overflow: hidden;
  background: #111;
  aspect-ratio: 1 / 1;
}

.cartItemMedia img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cartItemBody {
  display: grid;
  gap: 14px;
}

.cartItemTop {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.cartItemInfo h3 {
  margin: 0 0 6px;
  font-size: 20px;
  line-height: 1.08;
  font-weight: 800;
  font-family: 'Inter', sans-serif;
}

.cartVariant {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  line-height: 1.5;
}

.cartRemoveBtn {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.03);
  color: #fff;
  border-radius: 12px;
  min-height: 40px;
  padding: 0 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s ease;
}

.cartRemoveBtn:hover {
  border-color: rgba(255,90,90,0.28);
  background: rgba(255,90,90,0.08);
  color: #fff;
}

.cartEligibilityCard {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255,212,0,0.08), rgba(255,212,0,0.04));
  border: 1px solid rgba(255,212,0,0.18);
}

.cartEligibilityIcon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffd400;
  color: #111;
  font-size: 18px;
  font-weight: 900;
}

.cartEligibilityContent strong {
  display: block;
  color: #fff;
  font-size: 15px;
  margin-bottom: 6px;
}

.cartEligibilityContent p {
  margin: 0;
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  line-height: 1.6;
}

.cartItemBottom {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 18px;
}

.cartPriceBlock {
  display: grid;
  gap: 5px;
}

.cartUnitPrice {
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.cartMemberPrice {
  color: rgba(255,255,255,0.65);
  font-size: 13px;
  line-height: 1.45;
}

.cartQtyWrap {
  display: inline-grid;
  grid-template-columns: 44px 72px 44px;
  align-items: center;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  overflow: hidden;
  background: #0d0d0d;
}

.qtyBtn {
  appearance: none;
  border: none;
  background: rgba(255,255,255,0.04);
  color: #fff;
  height: 44px;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease;
}

.qtyBtn:hover {
  background: rgba(255,212,0,0.10);
}

.qtyInput {
  width: 100%;
  height: 44px;
  border: none;
  outline: none;
  background: transparent;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  -moz-appearance: textfield;
}

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

.cartLineTotal {
  min-width: 90px;
  text-align: right;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
}

.cartSummary {
  display: block;
}

.cartSummaryCard {
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.cartSummaryCard h3 {
  margin: 0 0 18px;
  font-size: 24px;
  font-family: 'Inter', sans-serif;
}

.summaryRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.summaryRow span {
  color: rgba(255,255,255,0.72);
  font-size: 15px;
}

.summaryRow strong {
  font-size: 20px;
  color: #fff;
}

.summaryNote {
  margin: 0 0 18px;
  color: rgba(255,255,255,0.68);
  font-size: 14px;
  line-height: 1.6;
}

.summaryBtn {
  width: 100%;
  margin-bottom: 10px;
}

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

/* CART RESPONSIVE */
@media (min-width: 980px) {
  .cartLayout {
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: start;
  }

  .cartSummary {
    position: sticky;
    top: 98px;
  }
}

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

  .cartItemMedia {
    max-width: 180px;
  }

  .cartItemBottom {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .cartLineTotal {
    text-align: left;
    min-width: 0;
  }

  .cartQtyWrap {
    width: fit-content;
  }
}