/* ═══════════════════════════════════════════════════════════════
   shop.css — layout específico da loja (header, hero, produtos…)
   ═══════════════════════════════════════════════════════════════ */

/* ══════════════ ANNOUNCEMENT BAR ══════════════ */
.announce {
  background: var(--accent);
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 5;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  height: var(--announce-h);
  display: flex;
  align-items: center;
}
.announce-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 80s linear infinite;
  padding-left: 40px;
  will-change: transform;
}
.announce-track:hover { animation-play-state: paused; }
.announce-track > span { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.announce-dot { opacity: 0.6; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ══════════════ HEADER ══════════════ */
.site-header {
  position: sticky; top: 0;
  z-index: 20;
  background: rgba(7, 8, 10, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  height: var(--header-h);
}
body.theme-light .site-header {
  background: rgba(255, 255, 255, 0.85);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--text-1);
}
.brand-dot {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--accent-glow);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.3); box-shadow: 0 0 18px var(--accent); }
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  position: relative;
  transition: color var(--dur);
}
.nav-link:hover { color: var(--text-1); }
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width var(--dur) var(--ease-out);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

.header-tools {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-btn {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  border: 1px solid transparent;
  border-radius: var(--r-sm);
  transition: all var(--dur);
}
.icon-btn:hover {
  color: var(--text-1);
  background: var(--bg-1);
  border-color: var(--line);
}
.icon-btn .badge-count {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--r-full);
  border: 2px solid var(--bg-0);
}

.user-dropdown-container { position: relative; }

/* Mobile nav */
.mobile-menu-btn { display: none; }
@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .brand { font-size: 18px; }
}

/* ══════════════ HERO ══════════════ */
.hero {
  position: relative;
  padding: clamp(60px, 10vw, 120px) 0 clamp(80px, 12vw, 140px);
  overflow: hidden;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  opacity: 0.4;
  pointer-events: none;
}
.hero-glow {
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(circle, var(--accent-glow), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-glow-2 {
  position: absolute;
  bottom: -20%; left: -10%;
  width: 50%; height: 60%;
  background: radial-gradient(circle, var(--neon-glow), transparent 60%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-kicker {
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 120px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  margin-bottom: 28px;
}
.hero-title > div { display: block; }
.hero-title .line-2 {
  color: transparent;
  -webkit-text-stroke: 2px var(--text-1);
}
.hero-title .line-3 { color: var(--accent); }

.hero-desc {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-2);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  gap: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.hero-metric-v {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.02em;
}
.hero-metric-l {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Hero showcase cards (mockup de produtos) */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1.1;
}
.showcase-card {
  position: absolute;
  width: 200px;
  padding: 16px;
  background: var(--bg-1);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease-out);
}
.showcase-card:hover { transform: translateY(-4px) rotate(0deg) !important; }

.showcase-card .sc-visual {
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}
.showcase-card .sc-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255,255,255,0.06) 50%, transparent 60%);
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
  0%, 100% { transform: translateX(-100%); }
  50% { transform: translateX(100%); }
}

.showcase-card .sc-name { font-size: 13px; font-weight: 600; color: var(--text-1); margin-bottom: 4px; }
.showcase-card .sc-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--accent);
}
.showcase-card .sc-stars { color: var(--warn); font-size: 11px; margin-top: 6px; }

.showcase-card.sc-1 { top: 0;  left: 20px;   transform: rotate(-4deg); z-index: 3; }
.showcase-card.sc-2 { top: 30%; right: 0;    transform: rotate(3deg);  z-index: 2; }
.showcase-card.sc-3 { bottom: 0; left: 30%;  transform: rotate(-2deg); z-index: 1; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { height: 320px; aspect-ratio: auto; max-width: 400px; margin: 0 auto; }
  .showcase-card { width: 150px; }
  .hero-metrics { gap: 28px; }
}

/* ══════════════ MARQUEE STRIP (após hero) ══════════════ */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-1);
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.strip-track {
  display: inline-flex;
  gap: 40px;
  white-space: nowrap;
  animation: marquee 90s linear infinite;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-2);
  will-change: transform;
}
.strip-track:hover { animation-play-state: paused; }
.strip-track > span { display: inline-flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.strip-dot { color: var(--accent); }

/* ══════════════ SECTION HEAD ══════════════ */
.section {
  padding: clamp(60px, 9vw, 120px) 0;
  position: relative;
  z-index: 2;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-sub {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 10px;
}

/* ══════════════ CATEGORIES ══════════════ */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 14px;
}
.cat-card {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 20px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--dur) var(--ease-out);
  cursor: pointer;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, var(--accent-glow));
  opacity: 0;
  transition: opacity var(--dur);
}
.cat-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}
.cat-card:hover::before { opacity: 1; }
.cat-emoji { font-size: 48px; position: relative; z-index: 2; }
.cat-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}
.cat-count {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}

/* ══════════════ PRODUCT GRID ══════════════ */
.products-toolbar {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.search-box {
  flex: 1;
  min-width: 260px;
  position: relative;
}
.search-box .input {
  padding-left: 42px;
}
.search-box-icon {
  position: absolute;
  left: 14px; top: 50%;
  transform: translateY(-50%);
  color: var(--text-3);
}

.filter-chips {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-2);
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--dur);
}
.chip:hover { border-color: var(--line-strong); color: var(--text-1); }
.chip.active { background: var(--accent); color: #fff; border-color: var(--accent); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all var(--dur) var(--ease-out);
  cursor: pointer;
  position: relative;
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}

.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 600ms var(--ease-out);
}
.product-card:hover .product-media img { transform: scale(1.05); }

.product-media-emoji {
  font-size: 80px;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
}

.product-badges {
  position: absolute;
  top: 12px; left: 12px;
  display: flex; flex-direction: column; gap: 6px;
  z-index: 2;
}

.product-body {
  padding: 16px;
}
.product-category {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.product-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-1);
  margin-bottom: 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 40px;
}
.product-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 10px;
}
.product-rating .stars { color: var(--warn); }

.product-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.product-price {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.02em;
}
.product-price small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 11px;
  color: var(--text-3);
  text-transform: uppercase;
  margin-left: 3px;
}
.product-price-old {
  font-size: 13px;
  color: var(--text-4);
  text-decoration: line-through;
  margin-left: 8px;
}
.product-add-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: var(--text-1);
  color: var(--bg-0);
  border-radius: var(--r-sm);
  transition: all var(--dur);
  font-size: 16px;
}
.product-add-btn:hover {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}

/* ══════════════ PRODUCT PAGE ══════════════ */
.product-page {
  padding: 40px 0 80px;
  position: relative;
  z-index: 2;
}
.product-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-gallery {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}
.gallery-main {
  aspect-ratio: 1 / 1;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-main-emoji { font-size: 160px; }

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.gallery-thumb {
  aspect-ratio: 1/1;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  cursor: pointer;
  overflow: hidden;
  transition: all var(--dur);
}
.gallery-thumb:hover { border-color: var(--line-strong); }
.gallery-thumb.active { border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent-glow); }
.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-info-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 16px;
}

.product-info-rating {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-3);
}
.product-info-rating .stars { color: var(--warn); font-size: 16px; }

.product-info-price {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.product-info-price small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--text-3);
  margin-left: 6px;
}
.product-info-parcel {
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 24px;
}
.product-info-parcel strong { color: var(--accent); }

.variant-group {
  margin-bottom: 20px;
}
.variant-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
}
.variant-label b { color: var(--text-1); letter-spacing: 0; text-transform: none; font-family: var(--font-body); font-size: 14px; }

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.swatch {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: all var(--dur);
}
.swatch:hover { transform: scale(1.06); }
.swatch.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--bg-0), 0 0 0 4px var(--accent);
}
.swatch.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  position: relative;
}
.swatch.disabled::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 48%, currentColor 49% 51%, transparent 52%);
}

.size-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.size-chip {
  min-width: 52px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid var(--line-strong);
  background: var(--bg-1);
  color: var(--text-1);
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--dur);
}
.size-chip:hover { border-color: var(--text-1); }
.size-chip.active { background: var(--text-1); color: var(--bg-0); border-color: var(--text-1); }
.size-chip.disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.qty-row {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  align-items: center;
}
.qty-control {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  overflow: hidden;
}
.qty-btn {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-1);
  font-size: 18px;
  background: var(--bg-1);
}
.qty-btn:hover { background: var(--bg-2); }
.qty-input {
  width: 60px;
  height: 44px;
  text-align: center;
  background: var(--bg-1);
  border: 0;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.shipping-info {
  padding: 14px 16px;
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--text-2);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.shipping-info .icon { font-size: 20px; color: var(--neon); }
.shipping-info strong { color: var(--text-1); }

@media (max-width: 900px) {
  .product-main { grid-template-columns: 1fr; gap: 32px; }
  .product-gallery { position: static; }
  .gallery-main-emoji { font-size: 100px; }
}

/* ══════════════ CART ══════════════ */
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.cart-item:last-child { border-bottom: 0; }
.cart-item-img {
  width: 72px; height: 72px;
  background: var(--bg-2);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  overflow: hidden;
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { min-width: 0; }
.cart-item-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
}
.cart-item-variant {
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.cart-item-price {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-1);
  margin-top: 4px;
}
.cart-item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.cart-summary {
  padding: 18px 24px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  margin-top: 16px;
}
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: 14px;
}
.cart-row--total {
  padding-top: 14px;
  margin-top: 6px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}
.cart-row--total .total-val { color: var(--accent); }

.cart-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-3);
}
.cart-empty-icon { font-size: 64px; margin-bottom: 16px; opacity: 0.5; }

/* ══════════════ CHECKOUT ══════════════ */
.checkout-steps {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  padding: 0 24px;
}
.step {
  flex: 1;
  padding: 10px 14px;
  background: var(--bg-2);
  border-radius: var(--r-sm);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  text-align: center;
  border: 1px solid var(--line);
}
.step.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.step.done { color: var(--ok); border-color: var(--ok); }

.address-card {
  padding: 16px;
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--dur);
  margin-bottom: 10px;
}
.address-card:hover { border-color: var(--line-strong); }
.address-card.selected { border-color: var(--accent); background: rgba(255,42,60,0.05); }
.address-card-name { font-weight: 700; font-family: var(--font-display); margin-bottom: 4px; }
.address-card-text { font-size: 13px; color: var(--text-2); line-height: 1.5; }

.pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.pay-method {
  padding: 20px 16px;
  background: var(--bg-2);
  border: 2px solid var(--line);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: center;
  transition: all var(--dur);
}
.pay-method:hover { border-color: var(--line-strong); }
.pay-method.selected {
  border-color: var(--accent);
  background: rgba(255,42,60,0.05);
}
.pay-method-icon { font-size: 28px; margin-bottom: 8px; }
.pay-method-name {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.pay-method-sub {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 4px;
}

@media (max-width: 640px) {
  .pay-methods { grid-template-columns: 1fr; }
}

/* ══════════════ FOOTER ══════════════ */
.site-footer {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  padding: 60px 0 24px;
  position: relative;
  z-index: 2;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
  margin: 16px 0 20px;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: 8px;
}
.fsocial {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--text-2);
  transition: all var(--dur);
}
.fsocial:hover {
  color: var(--text-1);
  background: var(--accent);
  border-color: var(--accent);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-3);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--text-2);
  transition: color var(--dur);
}
.footer-links a:hover { color: var(--text-1); }

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-3);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.footer-badges {
  display: flex;
  gap: 8px;
}
.footer-badge {
  padding: 4px 10px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-full);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ══════════════ WHATSAPP FLOAT ══════════════ */
.wa-float {
  position: fixed;
  bottom: 20px; right: 20px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 15;
  transition: transform var(--dur) var(--ease-spring);
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: '';
  position: absolute; inset: -6px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: wa-pulse 2s ease-in-out infinite;
  z-index: -1;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.4); opacity: 0; }
}
