/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #006847;
  --green-dark: #005038;
  --red: #CE1126;
  --black: #1a1a1a;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #e5e5e5;
  --gray-text: #767676;
  --font: 'Helvetica Neue', Arial, Helvetica, sans-serif;
  --header-h: 68px;
  --transition: 0.22s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: #0a2e1c;
  color: var(--white);
  position: relative;
  min-height: 38px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 14px;
}

.ann-slides {
  position: relative;
  width: 100%;
  min-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ann-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.ann-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.ann-slide.leaving {
  opacity: 0;
  transform: translateY(-8px);
}

.ann-dots {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
}

.ann-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  transition: background 0.3s, width 0.3s;
  cursor: pointer;
}

.ann-dot.active {
  background: rgba(255,255,255,0.9);
  width: 16px;
  border-radius: 2px;
}

@media (max-width: 640px) {
  .announcement-bar {
    min-height: 48px;
    padding-bottom: 18px;
  }
  .ann-slides {
    min-height: 30px;
  }
  .ann-slide {
    white-space: normal;
    font-size: 10.5px;
    letter-spacing: 0.04em;
    line-height: 1.4;
    padding: 6px 20px 0;
  }
  .ann-slide .ann-sep {
    display: none;
  }
}

/* ===== HEADER ===== */
:root {
  --header-green: #0c3523;   /* verde escuro do header original */
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-green);
}

/* ── Utility bar (preta) ── */
.header-utility {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 24px;
  background: #111;
  font-size: 11.5px;
}

.utility-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.55);
}

.utility-left a {
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.utility-left a:hover { color: var(--white); }
.util-sep { color: rgba(255,255,255,0.3); }

.tudn-img {
  height: 18px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
  vertical-align: middle;
}

.utility-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.utility-right a {
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 500;
  transition: color var(--transition);
}

.utility-right a:hover { color: var(--white); }

.lang-selector {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: rgba(255,255,255,0.75);
  font-size: 11px;
  font-weight: 500;
}

.lang-selector svg { fill: rgba(255,255,255,0.55); }

/* ── Header principal (verde escuro) ── */
.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px 32px 14px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 4px;
}

.header-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.header-logo img {
  height: 72px;
  width: auto;
  display: block;
}

.header-tagline {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-align: center;
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}

.icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
  position: relative;
  color: var(--white);
}

.icon-btn svg { width: 21px; height: 21px; stroke: var(--white); }
.icon-btn:hover { background: rgba(255,255,255,0.12); }

.cart-count {
  position: absolute;
  top: 5px;
  right: 5px;
  background: var(--red);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  opacity: 0;
  transform: scale(0.6);
  transition: opacity var(--transition), transform var(--transition);
}

.cart-count.visible { opacity: 1; transform: scale(1); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 4px;
  transition: background var(--transition);
}

.menu-toggle:hover { background: rgba(255,255,255,0.12); }

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

/* ── Navegacao ── */
.header-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 12px 32px;
  border-top: 1px solid rgba(255,255,255,0.18);
}

.header-nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  padding: 2px 0;
  position: relative;
  white-space: nowrap;
  transition: color var(--transition);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: width var(--transition);
}

.header-nav a:hover { color: var(--white); }
.header-nav a:hover::after { width: 100%; }
.header-nav a.nav-sale { color: #ff8080; }
.header-nav a.nav-sale::after { background: #ff8080; }

/* Search Bar */
.search-bar {
  display: none;
  padding: 12px 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  background: var(--header-green);
}

.search-bar.open { display: block; }

.search-inner {
  display: flex;
  align-items: center;
  max-width: 580px;
  margin: 0 auto;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 3px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.search-inner input {
  flex: 1;
  padding: 11px 12px;
  border: none;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: transparent;
  color: var(--white);
}

.search-inner input::placeholder { color: rgba(255,255,255,0.5); }

#searchClose {
  padding: 11px 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  border-left: 1px solid rgba(255,255,255,0.2);
}

#searchClose:hover { color: var(--white); }

/* ===== HERO CAROUSEL ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.7s ease;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  max-height: 88vh;
  min-height: 480px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-content {
  position: absolute;
  bottom: 12%;
  left: 8%;
  color: var(--white);
  max-width: 560px;
}

.hero-content--dark h1,
.hero-content--dark p,
.hero-content--dark .hero-eyebrow { color: var(--black); text-shadow: none; }
.hero-content--dark .btn-hero { background: var(--black); color: var(--white); }
.hero-content--dark .btn-hero:hover { background: var(--green); }

.hero-content--center {
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.88;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.hero-content h1 {
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.0;
  margin-bottom: 14px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.45);
}

.hero-desc {
  font-size: 14px;
  font-weight: 400;
  opacity: 0.88;
  margin-bottom: 26px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  line-height: 1.5;
}

.btn-hero {
  display: inline-block;
  padding: 14px 34px;
  background: var(--white);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition), transform 0.15s;
}

.btn-hero:hover { background: var(--green); color: var(--white); transform: translateY(-1px); }

.btn-hero--outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}
.btn-hero--outline:hover { background: var(--white); color: var(--black); }

/* Hero nav arrows */
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  background: rgba(0,0,0,0.28);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.22s ease, background 0.18s;
}
.hero-section:hover .hero-prev,
.hero-section:hover .hero-next { opacity: 1; }
.hero-prev { left: 16px; }
.hero-next { right: 16px; }
.hero-prev svg, .hero-next svg { width: 20px; height: 20px; stroke: var(--white); }
.hero-prev:hover, .hero-next:hover { background: rgba(0,0,0,0.52); }

@media (max-width: 768px) {
  .hero-prev, .hero-next { display: none; }
}

/* Hero dots */
.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  padding: 0;
}

.hero-dot.active {
  background: var(--white);
  transform: scale(1.25);
}

/* ===== PROMO BANNERS ===== */
.promo-banner {
  position: relative;
  overflow: hidden;
  max-height: 520px;
}

.promo-banner img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.promo-banner:hover img { transform: scale(1.02); }

.promo-banner--dark { background: var(--black); }
.promo-banner--gold { background: #1a1200; }

.promo-banner__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px 7%;
  background: linear-gradient(to right, rgba(0,0,0,0.62) 40%, transparent 100%);
  color: var(--white);
}

.promo-banner__content--right {
  align-items: flex-end;
  text-align: right;
  background: linear-gradient(to left, rgba(0,0,0,0.62) 40%, transparent 100%);
  padding-right: 7%;
}

.promo-banner__content--center {
  align-items: center;
  text-align: center;
  background: rgba(0,0,0,0.45);
}

.promo-banner__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
  opacity: 0.82;
}

.promo-banner__content h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin-bottom: 12px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.promo-banner__content p {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 24px;
  line-height: 1.55;
  max-width: 360px;
}

.promo-banner--gold .promo-banner__content h2 { color: #f5d87a; }
.promo-banner--gold .promo-banner__eyebrow   { color: #f5d87a; }

/* ===== SHARED SECTION STYLES ===== */
.section-title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
}

.view-all {
  font-size: 13px;
  font-weight: 700;
  color: var(--green);
  transition: opacity var(--transition);
  white-space: nowrap;
}

.view-all:hover { opacity: 0.65; }

/* ===== FEATURED CATEGORIES ===== */
.featured-categories { padding: 72px 0; }

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

.category-card {
  display: block;
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.28s;
}

.category-card:hover { transform: translateY(-5px); }

.category-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--gray-light);
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  transition: transform 0.4s;
}

.category-card:hover .category-img img { transform: scale(1.06); }

.category-info {
  padding: 14px 6px 4px;
}

.category-info h3 {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 3px;
  line-height: 1.35;
}

.category-info span {
  font-size: 12px;
  color: var(--gray-text);
}

/* ===== GENDER SECTION ===== */
.gender-section { padding: 0 0 72px; }

.gender-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gender-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  aspect-ratio: 3/4;
  cursor: pointer;
}

.gender-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gender-card:hover img { transform: scale(1.05); }

.gender-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 36px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0) 100%);
  color: var(--white);
}

.gender-overlay h3 {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.07em;
  margin-bottom: 14px;
}

.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  border: 2px solid var(--white);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

/* ===== PRODUCTS SECTION ===== */
.products-section { padding: 72px 0; }
.section-alt { background: var(--gray-light); }

/* Instrui o browser a pular renderizacao de secoes fora da tela */
.products-section {
  content-visibility: auto;
  contain-intrinsic-size: 0 600px;
}

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

.product-card {
  position: relative;
  cursor: pointer;
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--gray-light);
  border-radius: 2px;
  aspect-ratio: 1 / 1;
  margin-bottom: 14px;
}

.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  transition: transform 0.4s;
}

.product-card:hover .product-img-wrap img { transform: scale(1.07); }

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 2px;
  pointer-events: none;
}

.badge-agotado { background: var(--black); color: var(--white); }
.badge-nuevo   { background: var(--green); color: var(--white); }
.badge-sale    { background: var(--red);   color: var(--white); }

/* Skeleton placeholder enquanto imagem carrega */
.img-skeleton {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #ececec 25%, #f8f8f8 50%, #ececec 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 2px;
  pointer-events: none;
}

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

/* Load more */
.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 24px 0 8px;
}

.btn-load-more {
  padding: 13px 36px;
  border: 1.5px solid var(--black);
  background: var(--white);
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  cursor: pointer;
  font-family: var(--font);
  transition: background var(--transition), color var(--transition);
}

.btn-load-more:hover {
  background: var(--black);
  color: var(--white);
}

.btn-quick-view {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  color: var(--black);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 9px 20px;
  border-radius: 2px;
  border: 1px solid var(--gray-mid);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.product-card:hover .btn-quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--black);
}

.product-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--black);
}

.product-price.agotado { color: var(--gray-text); }

.price-sale     { font-weight: 800; color: var(--red); }
.price-original { font-weight: 500; color: var(--gray-text); text-decoration: line-through; margin-left: 5px; font-size: 12px; }

.modal-prices { display: flex; align-items: baseline; gap: 8px; }
.modal-price-original { font-size: 16px; color: var(--gray-text); text-decoration: line-through; }

.section-collab { background: #f0ebe3; }
.section-venta  { background: #fff8f8; }
.section-title-sale { color: var(--red); }

/* ===== NEWSLETTER ===== */
.newsletter {
  background: var(--green);
  color: var(--white);
  padding: 72px 0;
  text-align: center;
}

.newsletter h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 900;
  margin-bottom: 10px;
}

.newsletter p {
  font-size: 14.5px;
  opacity: 0.82;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.newsletter-form input {
  flex: 1;
  padding: 15px 18px;
  border: none;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  background: var(--white);
}

.newsletter-form button {
  padding: 15px 26px;
  background: var(--black);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--transition);
  border-radius: 0;
}

.newsletter-form button:hover { background: #333; }

/* ===== FOOTER ===== */
footer {
  background: #111;
  color: var(--white);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.social-links a:hover { background: var(--green); }

.social-links svg {
  width: 16px;
  height: 16px;
  fill: var(--white);
}

.footer-col h4 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.45);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul a {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}

.footer-col ul a:hover { color: var(--white); }

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.payment-methods span {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  padding: 5px 8px;
  border-radius: 3px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.tudn-footer img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.55;
}

.footer-bottom {
  padding: 20px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-align: center;
}

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(3px);
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 4px;
  max-width: 840px;
  width: 100%;
  position: relative;
  max-height: 92vh;
  overflow-y: auto;
  animation: modalIn 0.28s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 18px;
  color: var(--gray-text);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  border-radius: 50%;
  transition: all var(--transition);
}

.modal-close:hover { color: var(--black); background: var(--gray-light); }

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

/* Gallery */
.modal-media {
  background: var(--gray-light);
  padding: 24px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-gallery-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.modal-gallery-main img {
  max-height: 380px;
  max-width: 100%;
  object-fit: contain;
  transition: opacity 0.18s;
}

.modal-gallery-thumbs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}

.gallery-thumb {
  width: 54px;
  height: 54px;
  border: 2px solid transparent;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  background: var(--white);
  flex-shrink: 0;
  transition: border-color 0.15s;
}

.gallery-thumb.active { border-color: var(--black); }
.gallery-thumb:hover   { border-color: var(--gray-text); }

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

.modal-info {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
}

.modal-desc {
  font-size: 13px;
  line-height: 1.7;
  color: var(--gray-text);
  border-top: 1px solid var(--gray-mid);
  border-bottom: 1px solid var(--gray-mid);
  padding: 12px 0;
}

.modal-info h2 {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.35;
  padding-right: 28px;
}

.modal-price {
  font-size: 24px;
  font-weight: 900;
  color: var(--black);
}

.modal-sizes p {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  color: var(--gray-text);
}

.size-btns {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}

.size-btns button {
  border: 1.5px solid var(--gray-mid);
  border-radius: 2px;
  padding: 7px 13px;
  font-size: 12.5px;
  font-weight: 700;
  transition: all 0.15s;
  background: var(--white);
}

.size-btns button:hover { border-color: var(--black); }

.size-btns button.selected {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.btn-add-cart {
  padding: 15px;
  background: var(--green);
  color: var(--white);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 2px;
  width: 100%;
  transition: background var(--transition);
}

.btn-add-cart:hover { background: var(--green-dark); }
.btn-add-cart:disabled { background: var(--gray-mid); color: var(--gray-text); cursor: not-allowed; }

.view-full-product {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green);
  text-align: center;
  padding: 4px 0;
}

.view-full-product:hover { text-decoration: underline; }

/* ===== CART DRAWER ===== */
/* ── CART OVERLAY ── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* ── CART DRAWER ── */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 85vw;
  max-width: 400px;
  background: #fff;
  z-index: 160;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,0.18);
}
.cart-drawer.open { transform: translateX(0); }

/* ── CART HEADER ── */
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: var(--header-green);
  flex-shrink: 0;
}
.cart-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}
.cart-header-icon {
  width: 22px;
  height: 22px;
}
.cart-close-btn {
  color: rgba(255,255,255,0.8);
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  transition: all 0.15s;
}
.cart-close-btn:hover { color: #fff; background: rgba(255,255,255,0.15); }
.cart-close-btn svg { width: 22px; height: 22px; }

/* ── CART BODY ── */
.cart-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

/* ── EMPTY STATE ── */
.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  text-align: center;
  height: 100%;
  min-height: 300px;
}
.cart-empty-state svg {
  width: 72px;
  height: 72px;
  color: #d1d5db;
  margin-bottom: 16px;
}
.cart-empty-title {
  font-size: 15px;
  font-weight: 700;
  color: #374151;
  margin-bottom: 6px;
}
.cart-empty-sub {
  font-size: 13px;
  color: #9ca3af;
  margin-bottom: 24px;
}
.btn-seguir {
  background: var(--header-green);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 8px;
  transition: opacity 0.15s;
}
.btn-seguir:hover { opacity: 0.88; }

/* ── CART ITEMS ── */
.cart-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 12px;
  align-items: start;
  padding: 16px 20px;
  border-bottom: 1px solid #f3f4f6;
}
.cart-item-img {
  background: #f9fafb;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid #e5e7eb;
}
.cart-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}
.cart-item-name {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  margin-bottom: 3px;
  color: #111827;
}
.cart-item-size {
  font-size: 11px;
  color: #6b7280;
  margin-bottom: 10px;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  width: fit-content;
  overflow: hidden;
}
.cart-item-qty button {
  width: 28px;
  height: 28px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #374151;
  transition: background 0.12s;
}
.cart-item-qty button:hover { background: #f3f4f6; }
.cart-item-qty span {
  font-size: 13px;
  font-weight: 700;
  min-width: 20px;
  text-align: center;
  color: #111827;
}
.cart-item-price {
  font-size: 13px;
  font-weight: 800;
  color: #111827;
  white-space: nowrap;
}
.cart-item-remove {
  font-size: 11px;
  color: #9ca3af;
  margin-top: 8px;
  text-decoration: underline;
  cursor: pointer;
  display: block;
  text-align: right;
  transition: color 0.12s;
}
.cart-item-remove:hover { color: #ef4444; }

/* ── CART FOOTER ── */
.cart-footer {
  padding: 16px 20px 20px;
  border-top: 1px solid #e5e7eb;
  flex-shrink: 0;
  background: #fff;
}

/* Shipping bar */
.cart-shipping-bar {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 10px 14px;
  margin-bottom: 14px;
}
.cart-shipping-text {
  font-size: 11.5px;
  font-weight: 600;
  color: #166534;
  margin-bottom: 8px;
  text-align: center;
}
.cart-shipping-track {
  height: 5px;
  background: #dcfce7;
  border-radius: 99px;
  overflow: hidden;
}
.cart-shipping-fill {
  height: 100%;
  background: #16a34a;
  border-radius: 99px;
  transition: width 0.4s ease;
  width: 0%;
}

/* Subtotal */
.cart-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
  color: #111827;
}
.cart-taxes-note {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin-bottom: 14px;
}

/* Checkout button */
.btn-checkout {
  width: 100%;
  padding: 15px;
  background: var(--header-green);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 8px;
  transition: opacity 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-checkout:hover { opacity: 0.9; }

/* ===== CHECKOUT ===== */
.checkout-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
}
.checkout-overlay.open { opacity: 1; pointer-events: auto; }

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: #fff;
  overflow-y: auto;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.checkout-modal.open { transform: translateY(0); }

/* ── Header ── */
.checkout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  background: var(--header-green);
  position: sticky;
  top: 0;
  z-index: 10;
  flex-shrink: 0;
}
.checkout-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  width: 100px;
  transition: color 0.15s;
}
.checkout-back svg { width: 16px; height: 16px; }
.checkout-back:hover { color: #fff; }
.checkout-logo { height: 44px; width: auto; filter: brightness(0) invert(1); }
.checkout-secure {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.65);
  width: 100px;
  justify-content: flex-end;
}
.checkout-secure svg { width: 13px; height: 13px; }

/* ── Single-page checkout body ── */
.checkout-body {
  flex: 1;
  background: #eef0f3;
  overflow-y: auto;
  padding: 24px 16px 64px;
}
.checkout-page {
  max-width: 580px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ── Cards ── */
.chk-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s;
}
.chk-card:focus-within {
  box-shadow: 0 4px 16px rgba(0,0,0,0.1), 0 0 0 1px rgba(12,53,35,0.12);
}
.chk-card-header {
  background: var(--header-green);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 11px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.chk-step-num {
  width: 22px;
  height: 22px;
  min-width: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.35);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}
.chk-card-header > span:not(.chk-header-count) { flex: 1; }
.chk-hdr-icon {
  width: 17px;
  height: 17px;
  color: rgba(255,255,255,0.55);
  flex-shrink: 0;
}
.chk-header-count {
  background: rgba(255,255,255,0.18);
  font-size: 10.5px;
  font-weight: 600;
  padding: 2px 9px;
  border-radius: 99px;
  letter-spacing: 0;
}
.chk-card-body {
  padding: 16px 16px 14px;
}

/* ── Summary items ── */
.checkout-summary-items { display: flex; flex-direction: column; gap: 11px; margin-bottom: 12px; }
.checkout-summary-item { display: flex; align-items: center; gap: 11px; }
.checkout-summary-item-img {
  position: relative;
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}
.checkout-summary-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  padding: 4px;
}
.checkout-summary-item-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--header-green);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.checkout-summary-item-info { flex: 1; min-width: 0; }
.checkout-summary-item-name {
  font-size: 13px;
  font-weight: 600;
  color: #111;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.3;
}
.checkout-summary-item-size { font-size: 11px; color: #9ca3af; margin-top: 2px; }
.checkout-summary-item-price { font-size: 13px; font-weight: 700; color: #111; white-space: nowrap; }

/* ── Summary totals ── */
.chk-summary-lines {
  border-top: 1px solid #f0f0f0;
  padding-top: 11px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.chk-summary-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #555;
}
.chk-shipping-val { color: #16a34a; font-weight: 700; }
.chk-summary-total {
  font-size: 16px;
  font-weight: 800;
  color: #111;
  margin-top: 5px;
  padding-top: 9px;
  border-top: 1px solid #e8e8e8;
}
.summary-free-ship {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #dcfce7;
  color: #15803d;
  font-size: 10.5px;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 99px;
}

/* ── Input fields ── */
.chk-simple-field { margin-bottom: 12px; }
.chk-simple-field:last-child { margin-bottom: 0; }
.chk-simple-field label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  color: #6b7280;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.chk-simple-field .req { color: #ef4444; }

/* icon-prefixed input wrapper */
.chk-input-wrap { position: relative; }
.chk-input-icon {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: #9ca3af;
  pointer-events: none;
  flex-shrink: 0;
}
.chk-input-wrap input { padding-left: 36px !important; }

.chk-simple-field input,
.chk-select-wrap select {
  width: 100%;
  padding: 10px 13px;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 14px;
  color: #111;
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
  line-height: 1.2;
  appearance: none;
}
.chk-simple-field input:focus,
.chk-select-wrap select:focus {
  outline: none;
  border-color: var(--header-green);
  box-shadow: 0 0 0 3px rgba(12,53,35,0.1);
}
@keyframes chkShake {
  0%,100% { transform: translateX(0); }
  20%,60%  { transform: translateX(-4px); }
  40%,80%  { transform: translateX(4px); }
}
.chk-simple-field input.error,
.chk-select-wrap select.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 2px rgba(239,68,68,0.12);
  animation: chkShake 0.35s ease;
}

/* select wrapper */
.chk-select-wrap { position: relative; }
.chk-select-wrap select { padding-right: 30px; cursor: pointer; }
.chk-select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: #9ca3af;
  pointer-events: none;
}

.chk-field-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  margin-bottom: 12px;
}
.chk-field-row2 .chk-simple-field { margin-bottom: 0; }

/* ── Payment options ── */
.chk-pay-options {
  display: flex;
  flex-direction: column;
  border: 1.5px solid #e5e7eb;
  border-radius: 9px;
  overflow: hidden;
  margin-bottom: 12px;
}
.chk-pay-opt {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 14px 15px;
  cursor: pointer;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.12s;
}
.chk-pay-opt:last-child { border-bottom: none; }
.chk-pay-opt--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
  background: #f9fafb;
}
.chk-pay-unavailable {
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  padding: 3px 9px;
  border-radius: 99px;
  white-space: nowrap;
  flex-shrink: 0;
}
.chk-pay-opt input[type=radio] { display: none; }
.chk-pay-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #d1d5db;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.15s;
}
.chk-pay-radio::after {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--header-green);
  opacity: 0;
  transition: opacity 0.15s, transform 0.15s;
  transform: scale(0.5);
}
.chk-pay-opt.selected { background: #f0fdf4; }
.chk-pay-opt.selected .chk-pay-radio { border-color: var(--header-green); }
.chk-pay-opt.selected .chk-pay-radio::after { opacity: 1; transform: scale(1); }
.chk-pay-info { flex: 1; min-width: 0; }
.chk-pay-name { display: block; font-size: 14px; font-weight: 600; color: #111; }
.chk-pay-sub { display: block; font-size: 11px; color: #9ca3af; margin-top: 1px; }
.chk-pay-badges { display: flex; gap: 4px; flex-shrink: 0; }
.chk-pay-badge {
  font-size: 8.5px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 3px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #374151;
  letter-spacing: 0.04em;
}
.chk-pay-badge.spei { background: var(--header-green); color: #fff; border-color: transparent; }
.chk-pay-badge.visa { background: #1a1f71; color: #fff; border-color: transparent; }
.chk-pay-badge.mc   { background: #eb001b; color: #fff; border-color: transparent; }
.chk-pay-badge.amex { background: #2e77bc; color: #fff; border-color: transparent; }

/* ── SPEI note ── */
.chk-pay-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 11px 13px;
  font-size: 12.5px;
  color: #166534;
  line-height: 1.55;
  margin-bottom: 4px;
}
.chk-pay-note svg { color: #16a34a; }
.chk-pay-note.hidden { display: none; }

/* ── Card form ── */
.chk-card-form {
  margin-top: 12px;
  padding: 14px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}
.chk-card-form.hidden { display: none; }
.chk-card-brand {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 9px;
  font-weight: 900;
  color: #fff;
  padding: 2px 7px;
  border-radius: 3px;
  background: #374151;
  letter-spacing: 0.04em;
  pointer-events: none;
}

/* ── Confirm button ── */
.chk-confirm-btn {
  width: 100%;
  padding: 16px 20px;
  background: var(--header-green);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: filter 0.15s, transform 0.12s, box-shadow 0.15s;
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(12,53,35,0.3);
}
.chk-confirm-btn:hover {
  filter: brightness(1.12);
  box-shadow: 0 6px 28px rgba(12,53,35,0.38);
}
.chk-confirm-btn:active { transform: scale(0.985); }
.chk-confirm-btn > span:first-of-type { flex: 1; text-align: center; }
.chk-confirm-amt {
  background: rgba(255,255,255,0.18);
  font-size: 13px;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 99px;
  white-space: nowrap;
  letter-spacing: 0;
}

/* ── Trust badges ── */
.chk-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 4px;
}
.chk-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: #fff;
  border-radius: 9px;
  padding: 12px 8px;
  font-size: 10.5px;
  font-weight: 500;
  color: #6b7280;
  text-align: center;
  border: 1px solid #e8e8e8;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.chk-trust-badge svg {
  width: 20px;
  height: 20px;
  color: var(--header-green);
}

/* ── Success screen ── */
.checkout-success {
  position: absolute;
  inset: 0;
  background: #eef0f3;
  z-index: 10;
  overflow-y: auto;
  padding: 20px 14px 52px;
}
.checkout-success.hidden { display: none; }
.spei-success-page {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* top card */
.spei-top-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 20px 22px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);
}
.spei-check-icon {
  width: 66px; height: 66px;
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
  color: #16a34a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 6px 20px rgba(22,163,74,0.18);
}
.spei-check-icon svg { width: 30px; height: 30px; }
.spei-top-card h2 {
  font-size: 22px; font-weight: 800; color: #111;
  margin-bottom: 6px; letter-spacing: -0.01em;
}
.spei-top-card > p {
  font-size: 14px; color: #6b7280; margin-bottom: 18px;
}
.spei-top-card > p strong { color: #111; font-weight: 700; }
.spei-total-box {
  background: #f5f6f8;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 14px 18px;
}
.spei-total-label {
  display: block;
  font-size: 10px; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: #9ca3af; margin-bottom: 5px;
}
.spei-total-amount {
  display: block;
  font-size: 34px; font-weight: 900;
  color: var(--header-green);
  letter-spacing: -0.02em;
}

/* bank card */
.spei-bank-card {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);
}
.spei-bank-header {
  background: var(--header-green);
  color: #fff;
  padding: 13px 16px;
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 700;
}
.spei-bank-header svg { width: 20px; height: 20px; flex-shrink: 0; }
.spei-bank-body { background: #fff; }
.spei-data-row {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border-bottom: 1px solid #f3f3f3;
}
.spei-data-row:last-child { border-bottom: none; }
.spei-data-label {
  display: block; font-size: 10px; font-weight: 800;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: #9ca3af; margin-bottom: 3px;
}
.spei-data-value {
  display: block; font-size: 15px; font-weight: 700; color: #111;
}
.spei-copy-btn {
  width: 38px; height: 38px; min-width: 38px;
  border: 1.5px solid #e5e7eb; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: #f9fafb; color: #9ca3af;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  cursor: pointer;
}
.spei-copy-btn svg { width: 16px; height: 16px; }
.spei-copy-btn:hover { background: #f0fdf4; border-color: var(--header-green); color: var(--header-green); }
.spei-copy-btn.copied { background: #dcfce7; border-color: #16a34a; color: #16a34a; }

/* instructions card */
.spei-instructions-card {
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);
}
.spei-instr-header {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 16px;
  border-bottom: 1px solid #f3f3f3;
  font-size: 14px; font-weight: 700; color: #111;
}
.spei-warn-dot {
  width: 24px; height: 24px; min-width: 24px;
  background: #f59e0b; color: #fff;
  border-radius: 50%;
  font-size: 14px; font-weight: 900;
  display: flex; align-items: center; justify-content: center;
}
.spei-steps {
  list-style: none;
  padding: 4px 16px 8px;
  margin: 0;
  counter-reset: spei-step;
}
.spei-steps li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid #f5f5f5;
  font-size: 13.5px; color: #374151; line-height: 1.5;
  counter-increment: spei-step;
}
.spei-steps li:last-child { border-bottom: none; }
.spei-steps li::before {
  content: counter(spei-step);
  width: 22px; height: 22px; min-width: 22px;
  border-radius: 50%;
  background: #f3f4f6; border: 1px solid #e5e7eb;
  font-size: 11px; font-weight: 700; color: #6b7280;
  display: flex; align-items: center; justify-content: center;
  margin-top: 1px; flex-shrink: 0;
}

/* action buttons */
.spei-btn-primary {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  width: 100%; padding: 16px;
  background: var(--header-green); color: #fff;
  font-size: 15px; font-weight: 700;
  border-radius: 11px;
  box-shadow: 0 4px 20px rgba(12,53,35,0.3);
  text-decoration: none;
  transition: filter 0.15s, transform 0.12s;
}
.spei-btn-primary:hover { filter: brightness(1.12); }
.spei-btn-primary:active { transform: scale(0.985); }
.spei-btn-primary svg { width: 18px; height: 18px; flex-shrink: 0; }
.spei-btn-secondary {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px;
  background: #fff; color: #374151;
  font-size: 14px; font-weight: 600;
  border-radius: 11px;
  border: 1.5px solid #e5e7eb;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  cursor: pointer;
  transition: background 0.13s;
}
.spei-btn-secondary:hover { background: #f9fafb; }
.spei-btn-secondary svg { width: 16px; height: 16px; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .checkout-body { padding: 14px 10px 60px; }
  .chk-card-body { padding: 14px 13px 12px; }
  .chk-field-row2 { grid-template-columns: 1fr; }
  .chk-trust-badges { gap: 6px; }
  .chk-trust-badge { font-size: 10px; padding: 10px 6px; }
  .checkout-header { padding: 0 14px; }
  .checkout-secure span { display: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .header-nav { gap: 22px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
}

@media (max-width: 900px) {
  .container { padding: 0 20px; }
  .header-main { padding: 14px 20px 10px; }
  .header-utility { padding: 6px 16px; }
  .search-bar { padding: 12px 20px; }
  .utility-left { display: none; }
  .header-logo img { height: 52px; }
  .header-tagline { display: none; }
  .header-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--header-green);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    z-index: 99;
  }
  .header-nav.open { display: flex; }
  .header-nav a {
    width: 100%;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: var(--white);
  }
  .header-nav a::after { display: none; }
  .menu-toggle { display: flex; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .gender-grid { grid-template-columns: 1fr 1fr; }
  .gender-grid .gender-card:last-child { grid-column: 1 / -1; aspect-ratio: 16/7; }
  .modal-content { grid-template-columns: 1fr; }
  .modal-media { min-height: 260px; }
  .cart-drawer { width: 100%; max-width: 420px; }
}

@media (max-width: 640px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .category-grid { gap: 12px; }
  .gender-grid { grid-template-columns: 1fr; }
  .gender-grid .gender-card:last-child { grid-column: unset; aspect-ratio: 4/3; }
  .footer-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; padding: 14px; }
  .section-header { flex-direction: column; gap: 6px; }
  .header-utility { display: none; }
  .products-section,
  .featured-categories,
  .gender-section,
  .newsletter { padding: 48px 0; }
  .gender-section { padding-bottom: 48px; }
  .footer-grid { padding-bottom: 32px; }
  .hero-content { bottom: 8%; left: 5%; right: 5%; }
}
