/* ============================================
   POKÉMON TCG PRODUCTS — STYLE.CSS
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bangers&family=Nunito:wght@400;600;700;800;900&display=swap');

/* ── CSS VARIABLES ──────────────────────────── */
:root {
  --yellow: #FFCB05;
  --red: #CC0000;
  --blue: #3B4CCA;
  --dark-blue: #1a2080;
  --light-blue: #6278d9;
  --white: #FFFFFF;
  --off-white: #FFF9E6;
  --dark: #0d0d1a;
  --gray: #4a4a6a;
  --light-gray: #f0f0fa;
  --card-bg: #ffffff;
  --shadow: 0 8px 32px rgba(59,76,202,0.13);
  --shadow-lg: 0 20px 60px rgba(59,76,202,0.18);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: all 0.28s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Bangers', cursive;
  --font-body: 'Nunito', sans-serif;
  --whatsapp: #25D366;
}

/* ── RESET & BASE ───────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--off-white);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  padding-top: 68px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── UTILITY ────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.section { padding: 80px 0; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  letter-spacing: 2px;
  color: var(--blue);
  text-align: center;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: var(--gray);
  font-size: 1.1rem;
  margin-bottom: 48px;
  font-weight: 600;
}
.badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.tag-red { background: var(--red); color: #fff; }
.tag-blue { background: var(--blue); color: #fff; }

/* ── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.18);
  opacity: 0;
  transition: var(--transition);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--yellow);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(255,203,5,0.4);
}
.btn-secondary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(59,76,202,0.3);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  font-size: 1.05rem;
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 2.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-sm { padding: 5px 10px; font-size: 0.75rem; }

/* ── NAV ────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  width: 100%;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 2px;
  color: var(--yellow);
}
.nav-logo span { color: var(--white); }
.nav-logo-icon {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--yellow);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--yellow); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: #fff;
  border-radius: 4px;
  transition: var(--transition);
}

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, var(--dark) 0%, #0a0a2e 50%, #1a0a30 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,203,5,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(59,76,202,0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(204,0,0,0.05) 0%, transparent 70%);
}
.hero-pokeball-bg {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  opacity: 0.06;
}
.hero-floating-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-icon {
  position: absolute;
  font-size: 2rem;
  animation: floatRandom 6s ease-in-out infinite;
  opacity: 0.15;
}
.float-icon:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.float-icon:nth-child(2) { top: 70%; left: 5%; animation-delay: 1.5s; }
.float-icon:nth-child(3) { top: 30%; right: 15%; animation-delay: 0.8s; }
.float-icon:nth-child(4) { top: 75%; right: 8%; animation-delay: 2.2s; }
.float-icon:nth-child(5) { top: 50%; left: 45%; animation-delay: 3s; }
@keyframes floatRandom {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(5deg); }
  66% { transform: translateY(10px) rotate(-3deg); }
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 16px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,203,5,0.15);
  border: 1px solid rgba(255,203,5,0.3);
  color: var(--yellow);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.hero-title .highlight {
  color: var(--yellow);
  position: relative;
  display: inline-block;
}
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
  border-radius: 4px;
}
.hero-desc {
  color: rgba(255,255,255,0.75);
  font-size: 1.15rem;
  margin-bottom: 36px;
  font-weight: 600;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  font-weight: 700;
}
.trust-item svg, .trust-item .icon { color: var(--yellow); font-size: 1.1rem; }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-pokeball {
  width: 380px;
  height: 380px;
  position: relative;
  animation: spinSlow 20s linear infinite;
}
@keyframes spinSlow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-game-cards {
  position: absolute;
  inset: 0;
  animation: spinSlow 20s linear infinite reverse;
}
.mini-card {
  position: absolute;
  background: var(--card-bg);
  border-radius: var(--radius-sm);
  padding: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  text-align: center;
  width: 80px;
  min-height: 110px;
  animation: floatRandom 4s ease-in-out infinite;
}
.mini-card img { width: 100%; height: 75px; object-fit: contain; border-radius: 4px; margin-bottom: 4px; display: block; }
.mini-card:nth-child(1) { top: 15%; left: 0; animation-delay: 0s; }
.mini-card:nth-child(2) { top: 15%; right: 0; animation-delay: 1s; }
.mini-card:nth-child(3) { bottom: 15%; left: 5%; animation-delay: 2s; }
.mini-card:nth-child(4) { bottom: 15%; right: 5%; animation-delay: 0.5s; }
.mini-card .game-emoji { font-size: 2.2rem; }
.mini-card .game-name { font-size: 0.6rem; font-weight: 800; color: var(--dark); margin-top: 4px; }
.mini-card .game-price { font-size: 0.65rem; font-weight: 900; color: var(--blue); }

/* ── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--yellow);
  padding: 16px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--dark);
}
.trust-bar-icon { font-size: 1.3rem; }

/* ── FEATURED / PRODUCT CARDS ───────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
  width: 100%;
}
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.product-card-img {
  position: relative;
  height: 220px;
  background: linear-gradient(135deg, #e8eaf6 0%, #f3e5f5 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-card-img .placeholder-emoji { font-size: 5rem; }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--red);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-badge.new { background: var(--blue); }
.product-badge.sale { background: var(--red); }
.stock-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
}
.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-platform {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.product-name {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-desc {
  font-size: 0.875rem;
  color: var(--gray);
  margin-bottom: 16px;
  flex: 1;
  font-weight: 600;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--blue);
  letter-spacing: 1px;
  white-space: nowrap;
}
.product-price .original {
  font-size: 0.9rem;
  text-decoration: line-through;
  color: var(--gray);
  font-family: var(--font-body);
  font-weight: 600;
  display: block;
}

/* ── SHOP FILTERS ───────────────────────────── */
.shop-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a3e 100%);
  padding: 60px 0 40px;
  text-align: center;
}
.shop-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.shop-hero-title span { color: var(--yellow); }
.shop-hero-sub { color: rgba(255,255,255,0.65); font-size: 1.1rem; font-weight: 600; }
.shop-controls {
  background: #fff;
  padding: 24px 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.07);
  position: sticky;
  top: 68px;
  z-index: 100;
}
.shop-controls-inner {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.search-wrap {
  flex: 1;
  min-width: 180px;
  position: relative;
}
.search-wrap input {
  width: 100%;
  padding: 12px 20px 12px 48px;
  border-radius: 50px;
  border: 2px solid #e0e0f0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  transition: var(--transition);
}
.search-wrap input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(59,76,202,0.1); }
.search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gray);
  font-size: 1.1rem;
}
.filter-select {
  padding: 12px 20px;
  border-radius: 50px;
  border: 2px solid #e0e0f0;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  background: #fff;
  outline: none;
  cursor: pointer;
  transition: var(--transition);
}
.filter-select:focus { border-color: var(--blue); }
.results-count {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gray);
  white-space: nowrap;
}

/* ── PRODUCT DETAIL ─────────────────────────── */
.product-detail { padding: 60px 0; }
.product-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  width: 100%;
}
.product-images { position: relative; }
.main-image {
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(135deg, #e8eaf6, #f3e5f5);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.main-image img { width: 100%; height: 100%; object-fit: cover; }
.main-image .placeholder-emoji { font-size: 8rem; }
.thumb-row { display: flex; gap: 12px; }
.thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  border: 3px solid transparent;
  background: #e8eaf6;
  cursor: pointer;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: var(--transition);
}
.thumb:hover, .thumb.active { border-color: var(--blue); }
.product-info {}
.product-info .product-platform { font-size: 0.85rem; margin-bottom: 8px; }
.product-info h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.1;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.stars { color: var(--yellow); letter-spacing: 2px; font-size: 1.1rem; }
.rating-count { color: var(--gray); font-size: 0.9rem; font-weight: 600; }
.product-info .price-block { margin-bottom: 24px; }
.price-main {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--blue);
  letter-spacing: 2px;
}
.price-original {
  font-size: 1.1rem;
  color: var(--gray);
  font-weight: 600;
  text-decoration: line-through;
}
.product-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.product-tag {
  background: var(--light-gray);
  color: var(--dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.product-short-desc {
  color: var(--gray);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 28px;
  line-height: 1.7;
}
.product-specs {
  background: var(--light-gray);
  border-radius: var(--radius-sm);
  padding: 20px;
  margin-bottom: 28px;
}
.spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0f0;
  font-size: 0.9rem;
}
.spec-row:last-child { border-bottom: none; }
.spec-label { color: var(--gray); font-weight: 700; }
.spec-value { font-weight: 800; color: var(--dark); }
.buy-actions { display: flex; flex-direction: column; gap: 14px; }
.buy-actions .btn { justify-content: center; width: 100%; padding: 18px; font-size: 1.1rem; }
.urgency-strip {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(204,0,0,0.08);
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 16px;
}

/* ── TESTIMONIALS ───────────────────────────── */
.testimonials-section { background: var(--dark); }
.testimonials-section .section-title { color: var(--yellow); }
.testimonials-section .section-subtitle { color: rgba(255,255,255,0.6); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,203,5,0.3);
}
.testimonial-quote {
  font-size: 2.5rem;
  color: var(--yellow);
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 900;
  flex-shrink: 0;
}
.author-name { font-weight: 800; color: #fff; font-size: 0.95rem; }
.author-location { font-size: 0.78rem; color: rgba(255,255,255,0.5); font-weight: 600; }
.author-stars { color: var(--yellow); font-size: 0.8rem; }

/* ── ABOUT ──────────────────────────────────── */
.about-hero {
  background: linear-gradient(135deg, var(--dark), #1a1a3e);
  padding: 80px 0;
  width: 100%;
}
.about-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  width: 100%;
}
.about-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: #fff;
  letter-spacing: 2px;
  margin-bottom: 20px;
  line-height: 1.1;
}
.about-hero h1 span { color: var(--yellow); }
.about-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; font-weight: 600; line-height: 1.8; }
.about-visual {
  display: flex;
  justify-content: center;
}
.big-pokeball {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--red) 50%, var(--dark) 50%);
  border: 6px solid var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(204,0,0,0.4);
  animation: floatRandom 5s ease-in-out infinite;
}
.big-pokeball::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 6px;
  background: var(--dark);
  top: 50%;
  transform: translateY(-50%);
}
.big-pokeball::after {
  content: '';
  position: absolute;
  width: 70px; height: 70px;
  background: #fff;
  border-radius: 50%;
  border: 6px solid var(--dark);
  z-index: 2;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.value-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 2.5rem; margin-bottom: 16px; }
.value-title { font-weight: 900; font-size: 1.05rem; margin-bottom: 8px; color: var(--blue); }
.value-desc { font-size: 0.88rem; color: var(--gray); font-weight: 600; line-height: 1.6; }
.how-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.step-card {
  text-align: center;
  padding: 24px 16px;
}
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(59,76,202,0.35);
}
.step-title { font-weight: 900; font-size: 1rem; color: var(--dark); margin-bottom: 8px; }
.step-desc { font-size: 0.875rem; color: var(--gray); font-weight: 600; line-height: 1.6; }

/* ── CONTACT ────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  width: 100%;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: var(--blue);
  margin-bottom: 16px;
}
.contact-info p { color: var(--gray); font-size: 1rem; font-weight: 600; line-height: 1.7; margin-bottom: 32px; }
.contact-methods { display: flex; flex-direction: column; gap: 16px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
}
.contact-method:hover { transform: translateX(4px); box-shadow: var(--shadow-lg); }
.contact-method-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.contact-method-text strong { font-size: 1rem; font-weight: 900; color: var(--dark); display: block; margin-bottom: 2px; }
.contact-method-text span { font-size: 0.85rem; color: var(--gray); font-weight: 600; }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.social-link {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  transition: var(--transition);
  font-weight: 900;
}
.social-link:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.2); }
.social-fb { background: #1877f2; }
.social-ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-tt { background: #010101; }
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  width: 100%;
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--dark);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 8px;
  color: var(--dark);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0f0;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  transition: var(--transition);
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(59,76,202,0.1);
}
.form-group textarea { min-height: 120px; }

/* ── FLOATING WHATSAPP BUTTON ───────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.whatsapp-float-btn {
  width: 64px;
  height: 64px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: var(--transition);
  animation: pulseWA 2s infinite;
  text-decoration: none;
}
.whatsapp-float-btn:hover { transform: scale(1.12); box-shadow: 0 12px 36px rgba(37,211,102,0.6); }
@keyframes pulseWA {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-tooltip {
  background: var(--dark);
  color: #fff;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand { }
.footer-brand .nav-logo { margin-bottom: 16px; font-size: 1.4rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; font-weight: 600; margin-bottom: 20px; }
.footer-col h4 {
  font-weight: 900;
  font-size: 0.9rem;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--yellow); padding-left: 4px; }
.footer-col p { font-size: 0.88rem; font-weight: 600; line-height: 1.7; margin-bottom: 8px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-weight: 600; }
.footer-bottom-links a:hover { color: var(--yellow); }

/* ── EMPTY STATE ────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--gray);
}
.empty-state .empty-icon { font-size: 4rem; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.3rem; font-weight: 900; margin-bottom: 8px; }
.empty-state p { font-size: 0.95rem; font-weight: 600; }

/* ── BREADCRUMB ─────────────────────────────── */
.breadcrumb {
  padding: 16px 0;
  border-bottom: 1px solid #e0e0f0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--gray);
}
.breadcrumb a { color: var(--blue); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 8px; }

/* ── RELATED PRODUCTS ───────────────────────── */
.related-section { padding: 60px 0; background: var(--light-gray); }

/* ── MOBILE NAV ─────────────────────────────── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  padding: 32px 24px;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 1.3rem;
  font-weight: 800;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: block;
  transition: var(--transition);
}
.mobile-nav a:hover { color: var(--yellow); padding-left: 8px; }

/* -- UTILITY CLASSES -------------------------- */
.bg-off-white { background: var(--off-white); }
.bg-blue { background: var(--blue); }
.bg-yellow { background: var(--yellow); padding: 56px 0; text-align: center; }
.bg-yellow-stats { background: var(--yellow); padding: 40px 0; }
.bg-dark { background: var(--dark); }

.text-white { color: #fff; }
.text-yellow { color: var(--yellow); }
.text-light-white { color: rgba(255,255,255,0.7); }
.text-light-white-65 { color: rgba(255,255,255,0.65); }
.text-light-dark { color: rgba(0,0,0,0.65); }
.whatsapp-link { color: var(--whatsapp); }

.step-num-yellow { background: var(--yellow); color: var(--dark); }
.avatar-blue { background: var(--blue); color: #fff; }
.avatar-red { background: var(--red); color: #fff; }
.avatar-yellow { background: var(--yellow); color: var(--dark); }

.badge-margin { margin-bottom: 20px; }
.text-center-mt-48 { text-align: center; margin-top: 48px; }
.flex-wrap-gap { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.flex-center-gap { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 3rem; letter-spacing: 2px; color: var(--dark); }
.stat-label { font-weight: 800; font-size: 0.9rem; color: rgba(0,0,0,0.65); }

.cta-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 2px; color: var(--dark); margin-bottom: 12px; }
.cta-subtitle { font-size: 1.1rem; font-weight: 700; color: rgba(0,0,0,0.65); margin-bottom: 32px; }
.max-w-800 { max-width: 800px; margin: 0 auto; }
.grid-2col-gap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card-box { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.icon-xl { font-size: 2rem; margin-bottom: 12px; }
.card-title { font-weight: 900; font-size: 1.1rem; margin-bottom: 8px; color: var(--blue); }
.card-desc { color: var(--gray); font-size: 0.9rem; font-weight: 600; line-height: 1.7; }

/* ── UTILITY CLASSES ────────────────────────── */
.bg-off-white { background: var(--off-white); }
.bg-blue { background: var(--blue); }
.bg-yellow { background: var(--yellow); padding: 56px 0; text-align: center; }
.bg-yellow-stats { background: var(--yellow); padding: 40px 0; }
.bg-dark { background: var(--dark); }

.text-white { color: #fff; }
.text-yellow { color: var(--yellow); }
.text-light-white { color: rgba(255,255,255,0.7); }
.text-light-white-65 { color: rgba(255,255,255,0.65); }
.text-light-dark { color: rgba(0,0,0,0.65); }
.whatsapp-link { color: var(--whatsapp); }

.step-num-yellow { background: var(--yellow); color: var(--dark); }
.avatar-blue { background: var(--blue); color: #fff; }
.avatar-red { background: var(--red); color: #fff; }
.avatar-yellow { background: var(--yellow); color: var(--dark); }

.badge-margin { margin-bottom: 20px; }
.text-center-mt-48 { text-align: center; margin-top: 48px; }
.flex-wrap-gap { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 8px; }
.flex-center-gap { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 24px; text-align: center; }
.stat-number { font-family: var(--font-display); font-size: 3rem; letter-spacing: 2px; color: var(--dark); }
.stat-label { font-weight: 800; font-size: 0.9rem; color: rgba(0,0,0,0.65); }

.cta-title { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem); letter-spacing: 2px; color: var(--dark); margin-bottom: 12px; }
.cta-subtitle { font-size: 1.1rem; font-weight: 700; color: rgba(0,0,0,0.65); margin-bottom: 32px; }
.max-w-800 { max-width: 800px; margin: 0 auto; }
.grid-2col-gap { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.card-box { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.icon-xl { font-size: 2rem; margin-bottom: 12px; }
.card-title { font-weight: 900; font-size: 1.1rem; margin-bottom: 8px; color: var(--blue); }
.card-desc { color: var(--gray); font-size: 0.9rem; font-weight: 600; line-height: 1.7; }

/* Additional utility classes */
.badge-margin-16 { margin-bottom: 16px; }
.pt-48 { padding-top: 48px; }
.shop-cta-bg { background: var(--blue); padding: 48px 0; text-align: center; }
.shop-cta-title { font-family: var(--font-display); font-size: 2rem; letter-spacing: 2px; color: #fff; margin-bottom: 12px; }
.shop-cta-subtitle { color: rgba(255,255,255,0.7); font-weight: 700; font-size: 1rem; margin-bottom: 24px; }
.contact-hero-bg { background: linear-gradient(135deg, var(--dark), #1a1a3e); padding: 72px 0; text-align: center; }
.contact-hero-title { font-family: var(--font-display); font-size: clamp(2.5rem, 6vw, 4rem); color: #fff; letter-spacing: 2px; margin-bottom: 12px; }
.contact-hero-subtitle { color: rgba(255,255,255,0.7); font-size: 1.1rem; font-weight: 600; max-width: 500px; margin: 0 auto; }
.whatsapp-banner { background: var(--whatsapp); padding: 28px 0; text-align: center; }
.whatsapp-banner-inner { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.whatsapp-banner-title { font-size: 1.2rem; font-weight: 900; color: #fff; }
.whatsapp-banner-subtitle { font-size: 0.95rem; font-weight: 700; color: rgba(255,255,255,0.85); }
.whatsapp-btn-custom { background: #fff; color: #128C7E; font-size: 1.05rem; padding: 16px 36px; }

/* Product page specific classes */
.guarantee-strip { background: var(--light-gray); padding: 40px 0; border-top: 1px solid #e0e0f0; border-bottom: 1px solid #e0e0f0; }
.guarantee-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; text-align: center; }
.guarantee-icon { font-size: 2.2rem; margin-bottom: 10px; }
.guarantee-title { font-weight: 900; font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.guarantee-desc { font-size: 0.85rem; color: var(--gray); font-weight: 600; }

/* Contact page specific classes */
.contact-icon-whatsapp { background: #e8f5e9; }
.contact-icon-facebook { background: #e3f2fd; }
.contact-icon-instagram { background: #fce4ec; }
.contact-icon-tiktok { background: #f3e5f5; }
.mt-32 { margin-top: 32px; }
.response-times-box { margin-top: 32px; padding: 20px; background: var(--light-gray); border-radius: var(--radius-sm); }
.response-times-title { font-weight: 900; font-size: 0.9rem; margin-bottom: 12px; color: var(--blue); }
.response-times-content { font-size: 0.88rem; font-weight: 700; color: var(--gray); line-height: 2; }
.form-description { font-size: 0.9rem; color: var(--gray); font-weight: 600; margin-bottom: 24px; }
.submit-btn-full { width: 100%; justify-content: center; padding: 18px; font-size: 1.05rem; }
.faq-section-bg { background: var(--dark); padding-top: 64px; padding-bottom: 64px; }
.faq-container-max { max-width: 800px; }
.faq-subtitle-color { color: rgba(255,255,255,0.6); }
.faq-container-flex { display: flex; flex-direction: column; gap: 16px; margin-top: 16px; }
.faq-item-style { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-sm); padding: 20px; }
.faq-summary { font-weight: 900; color: #fff; cursor: pointer; font-size: 1rem; list-style: none; display: flex; justify-content: space-between; }
.faq-answer { color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 600; margin-top: 12px; line-height: 1.7; }
.faq-bottom { text-align: center; margin-top: 40px; }
.faq-bottom-text { color: rgba(255,255,255,0.6); font-weight: 700; font-size: 0.95rem; margin-bottom: 16px; }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
    padding: 60px 16px;
  }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { display: none; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .about-visual { display: none; }
  .product-detail-inner { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .main-image { height: 300px; }
  .contact-form-wrap { padding: 20px; }
}

@media (max-width: 600px) {
  html { font-size: 14px; }
  .section { padding: 40px 0; }
  .container { padding: 0 12px; }
  .trust-bar-inner { gap: 12px; padding: 0 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; gap: 12px; }
  .hero-actions .btn { width: 100%; max-width: 280px; justify-content: center; padding: 12px 24px; font-size: 0.95rem; }
  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
  }
  .shop-controls-inner { flex-direction: column; gap: 10px; padding: 12px; align-items: stretch; }
  .search-wrap { min-width: 0; width: 100%; max-width: 100%; }
  .filter-select { width: 100%; max-width: 100%; }
  .results-count { text-align: center; white-space: normal; }
  .whatsapp-float { bottom: 12px; right: 12px; }
  .whatsapp-float-btn { width: 56px; height: 56px; font-size: 1.6rem; }
  .contact-form-wrap { padding: 16px; }
  body { padding-top: 60px; }
  .nav-inner { padding: 0 12px; height: 60px; }
  .nav-logo { font-size: 1.3rem; }
  .nav-logo-icon { width: 48px; height: 48px; }
  .btn { padding: 12px 24px; font-size: 0.95rem; }
  .btn-sm { padding: 4px 6px; font-size: 0.7rem; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); margin-bottom: 8px; }
  .section-subtitle { font-size: 0.95rem; margin-bottom: 32px; }
  .main-image { height: 250px; }
  .thumb { width: 60px; height: 60px; font-size: 1.5rem; }
  .contact-method { padding: 16px; }
  .contact-method-icon { width: 44px; height: 44px; font-size: 1.2rem; }
  .how-steps { grid-template-columns: 1fr; gap: 16px; }
  .values-grid { grid-template-columns: 1fr; gap: 16px; }
  .step-card { padding: 20px 12px; }
  .step-num { width: 48px; height: 48px; font-size: 1.5rem; }
  .product-card-img { height: 180px; }
  .product-card-img .placeholder-emoji { font-size: 3.5rem; }
  .product-name { font-size: 0.95rem; }
  .product-desc { font-size: 0.8rem; }
  .product-price { font-size: 1.2rem; }
  .price-main { font-size: 2rem; }
  .big-pokeball { width: 200px; height: 200px; }
  .shop-hero { padding: 40px 0 30px; }
  .shop-hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }
  .badge { font-size: 0.7rem; padding: 3px 10px; }
  .hero-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .hero-desc { font-size: 1rem; }
  .trust-bar-item { font-size: 0.85rem; gap: 6px; }
  .footer { padding: 40px 0 20px; }
  .footer-col h4 { font-size: 0.85rem; }
  .footer-col a { font-size: 0.82rem; }
  .social-link { width: 40px; height: 40px; font-size: 1.1rem; }
}

@media (max-width: 400px) {
  .products-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .hero-inner { padding: 40px 12px; }
  .container { padding: 0 10px; }
  .btn { padding: 10px 20px; font-size: 0.9rem; }
}

/* ── ANIMATIONS & EFFECTS ───────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

/* No results */
.hidden { display: none !important; }

/* Pokeball spinner SVG */
.pokeball-svg { animation: spinSlow 12s linear infinite; }
