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

/* ============================================
   CTG HOOPS - Main Stylesheet
   Palette: monochrome — Ink #1C1B18 | Paper #FFFFFF | Charcoal #2B2B2B | Dark #1A1A1A
============================================ */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Legacy dark-zone palette — kept only for the hero video overlay and the
     "Ofertas" promo banner/tiles, which stay as deliberate dark accent blocks. */
  --dark:    #1A1A1A;
  --charcoal:#2B2B2B;
  --mid:     #3D3D3D;
  --white:   #FAFAFA;
  --text-muted: #9A9A8A;

  /* Light-theme palette — the page itself (monochrome, no accent hue) */
  --paper:     #FFFFFF;
  --paper-2:   #F5F1E8;
  --ink:       #1C1B18;
  --ink-soft:  #4A463E;
  --muted:     #726C5C;
  --line:      rgba(28,27,24,0.12);
  --line-soft: rgba(28,27,24,0.07);

  --font-heading: 'Roboto', Arial, sans-serif;
  --font-body:    'Inter', 'Segoe UI', sans-serif;
  --font-logo:    'Roboto', Arial, sans-serif;
  --transition: 0.35s ease;
  --radius: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}


/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--paper); }
::-webkit-scrollbar-thumb { background: var(--ink); border-radius: 0; }

/* ============================================
   HEADER & NAV
============================================ */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;

  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  transition: all var(--transition);
}

#header.scrolled {
  box-shadow: 0 8px 30px rgba(28, 27, 24, 0.08);
}

nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-logo span {
  font-family: var(--font-logo);
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: 0.5px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  display: block;
  padding: 0.5rem 0.85rem;
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--ink);
  font-weight: 700;
  background: rgba(28, 27, 24, 0.06);
}

.nav-cta {
  background: var(--ink) !important;
  color: var(--paper) !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.1rem !important;
}

.nav-cta:hover {
  background: var(--ink-soft) !important;
  color: var(--paper) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 0;
  transition: var(--transition);
}

/* ============================================
   SOCIAL RAIL — fixed buttons flush to the right edge
============================================ */
.social-rail {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
}

.social-rail__btn {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  border-radius: 0;
  text-decoration: none;
  transition: background var(--transition);
}

.social-rail__btn:hover {
  background: var(--ink-soft);
}

/* ============================================
   SECTION SHARED STYLES
============================================ */
section {
  min-height: 100vh;
  padding: 100px 2rem 80px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.section-subtitle {
  color: var(--muted);
  font-size: 1rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 2rem;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover {
  background: var(--ink-soft);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(28, 27, 24, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-outline:hover {
  border-color: var(--ink);
  color: var(--ink);
  background: rgba(28,27,24,0.05);
}

/* Hero sits over the video, so its outline button keeps the light treatment */
#inicio .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

#inicio .btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

/* ============================================
   HERO / INICIO
============================================ */
#inicio {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 26, 26, 0.85) 0%,
    rgba(26, 26, 26, 0.55) 50%,
    rgba(26, 26, 26, 0.75) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
  padding-top: 70px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.hero-eyebrow::before { display: none; }
.hero-eyebrow::after  { display: none; }

.hero-eyebrow span {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 5px 12px;
  border-radius: 0;
}

.hero-title {
  font-family: var(--font-body);
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 0.95;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: -2px;
  max-width: 100%;
}

.hero-title em {
  font-style: normal;
  color: transparent;
  -webkit-text-stroke: 2px var(--white);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  max-width: 400px;
  margin-bottom: 3rem;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.3px;
  border-left: 2px solid var(--white);
  padding-left: 1rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.sound-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.sound-btn:hover {
  background: rgba(255,255,255,0.18);
  border-color: var(--white);
  color: var(--white);
  transform: scale(1.08);
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--white), transparent);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  font-weight: 900;
}

.hero-stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================================
   HOMBRES / MUJERES — PRODUCT GRIDS
============================================ */
#hombres { background: var(--paper); }
#mujeres  { background: var(--paper-2); }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}

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

.product-card {
  background: var(--paper-2);
  border-radius: 0;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}

#mujeres .product-card {
  background: var(--paper);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(28,27,24,0.14);
  border-color: rgba(28, 27, 24, 0.28);
}

.product-img {
  position: relative;
  height: 240px;
  background: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}

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

/* Para fotos con el zapato muy pequeño en el frame */
.product-img img.img-zoom {
  transform: scale(4.2);
}

.product-card:hover .product-img img.img-zoom {
  transform: scale(4.35);
}

.product-img img.img-zoom-md {
  transform: scale(2.5);
}

.product-card:hover .product-img img.img-zoom-md {
  transform: scale(2.6);
}

.product-img img.img-shrink {
  transform: scale(0.72) translateY(-8%);
}

.product-card:hover .product-img img.img-shrink {
  transform: scale(0.78) translateY(-8%);
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0;
}

.product-badge.new   { background: var(--ink); }
.product-badge.sale  { background: #e05252; color: #fff; }
.product-badge.kids  { background: #5b9bd5; color: #fff; }


.product-info {
  padding: 1.1rem 1.25rem 1.25rem;
}

.product-brand {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.product-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.product-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ink);
}

.product-price-old {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: line-through;
}

.product-sizes {
  display: flex;
  gap: 6px;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.size-dot {
  font-size: 0.7rem;
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s;
}

.size-dot:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.size-dot.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--paper);
}

.product-buy-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 0.9rem;
  padding: 0.7rem 1rem;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}

.product-buy-btn:hover {
  background: var(--ink-soft);
}

.product-buy-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ============================================
   OFERTAS
============================================ */
#ofertas {
  background: var(--paper);
  overflow: visible;
}

.offers-banner {
  background: linear-gradient(135deg, var(--mid) 0%, #1a1a2e 100%);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0;
  padding: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  overflow: hidden;
}

.offers-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 0;
}

.offer-big-tag {
  font-size: clamp(3rem, 8vw, 6rem);
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.offer-big-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.offer-big-desc {
  color: var(--text-muted);
  max-width: 360px;
}

.countdown {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.countdown-unit {
  text-align: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 0;
  padding: 0.75rem 1rem;
  min-width: 60px;
}

.countdown-num {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--white);
  font-weight: 900;
  display: block;
  line-height: 1;
}

.countdown-label {
  font-size: 0.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 320px));
  gap: 0;
  justify-content: center;
  overflow: visible;
  isolation: isolate;
}

.offer-card {
  position: relative;
  z-index: 1;
  will-change: transform;
  transform: scale(1);
  transition: transform 0.35s ease;
  cursor: pointer;
  height: 100%;
}

.offer-card:hover {
  transform: scale(1.1);
  z-index: 10;
}

.offer-card__inner {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 550px;
  width: 100%;
  padding: 1.25rem 1.25rem 1.5rem;
  border-radius: 0;
}

.offer-card:nth-child(1) .offer-card__inner { background: #2a4f6e; border-radius: 0; }
.offer-card:nth-child(2) .offer-card__inner { background: #3a6a82; border-radius: 0; }
.offer-card:nth-child(3) .offer-card__inner { background: #1e7870; border-radius: 0; }

.offer-card__bg-text {
  position: absolute;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11rem;
  font-weight: 900;
  color: rgba(255,255,255,0.12);
  letter-spacing: 0.05em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  z-index: 0;
  line-height: 1;
}

.offer-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.offer-card__logo {
  width: 72px;
  height: auto;
  object-fit: contain;
}

.offer-card__prices {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.offer-card__price-original {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  font-weight: 500;
  text-decoration: line-through;
}

.offer-card__price {
  color: white;
  font-size: 1rem;
  font-weight: 700;
}

.offer-card__shoe-space {
  height: 280px;
  flex-shrink: 0;
}

.offer-card__shoe {
  position: absolute;
  width: 570px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 35px rgba(0,0,0,0.6));
  transform: translate(-50%, -50%) rotate(-35deg);
  top: 58%;
  left: 50%;
  z-index: 20;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.offer-card:hover .offer-card__shoe {
  transform: translate(-50%, -50%) rotate(-28deg) scale(1.06);
}

.offer-card:nth-child(1) .offer-card__shoe {
  transform: translate(calc(-50% - 100px), -50%) rotate(-35deg);
}

.offer-card:nth-child(1):hover .offer-card__shoe {
  transform: translate(calc(-50% - 100px), -50%) rotate(-28deg) scale(1.06);
}

.offer-card:nth-child(3) .offer-card__shoe {
  width: 600px;
  transform: translate(calc(-50% - 85px), -50%) rotate(-35deg);
}

.offer-card:nth-child(3):hover .offer-card__shoe {
  transform: translate(calc(-50% - 85px), -50%) rotate(-28deg) scale(1.06);
}

.offer-card:nth-child(2) .offer-card__shoe {
  width: 500px;
  transform: translate(calc(-50% - 135px), calc(-50% - 50px)) rotate(-35deg);
}

.offer-card:nth-child(2):hover .offer-card__shoe {
  transform: translate(calc(-50% - 135px), calc(-50% - 50px)) rotate(-28deg) scale(1.06);
}

.offer-card__name {
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0.4rem 0 0.2rem;
  position: relative;
  z-index: 2;
  word-break: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
}

.offer-card__desc {
  color: rgba(255,255,255,0.75);
  font-family: 'Rajdhani', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
  z-index: 2;
  flex: 1;
}

.offer-card__btn {
  display: block;
  text-align: center;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.25) 0%,
    rgba(255,255,255,0.08) 100%
  );
  color: white;
  padding: 0.65rem 1.5rem;
  border-radius: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 1rem;
  position: relative;
  z-index: 30;
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    inset 0 -1px 0 rgba(0,0,0,0.15),
    0 8px 24px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
}

.offer-card__btn:hover {
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.38) 0%,
    rgba(255,255,255,0.15) 100%
  );
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.5),
    inset 0 -1px 0 rgba(0,0,0,0.1),
    0 12px 32px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}

/* ============================================
   CONTACTO
============================================ */
#contacto {
  background: var(--paper-2);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  margin-top: 2rem;
}

.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: rgba(28,27,24,0.05);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 4px;
}

.contact-info-value {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.contact-form {
  background: var(--paper);
  border-radius: 0;
  padding: 2.5rem;
  border: 1px solid var(--line-soft);
  box-shadow: 0 20px 45px rgba(28,27,24,0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(28,27,24,0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(28,27,24,0.1);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group select option { background: var(--paper); color: var(--ink); }

/* ============================================
   VIDEO
============================================ */
#video {
  background: var(--paper);
  text-align: center;
}

.video-player-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  margin-top: 3rem;
  box-shadow: 0 30px 80px rgba(28,27,24,0.18);
  border: 1px solid var(--line-soft);
  aspect-ratio: 16/9;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.video-player-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26,26,26,0.45);
  cursor: pointer;
  transition: background var(--transition);
  z-index: 2;
}

.video-play-btn:hover { background: rgba(26,26,26,0.25); }

.play-circle {
  width: 80px;
  height: 80px;
  border-radius: 0;
  background: rgba(28,27,24,0.85);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  transition: transform var(--transition), background var(--transition);
}

.video-play-btn:hover .play-circle {
  transform: scale(1.1);
  background: var(--ink);
}

.video-features {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.video-feat {
  text-align: center;
}

.video-feat-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--ink);
}

.video-feat-title {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.video-feat-desc {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ============================================
   COMENTARIOS / REVIEWS
============================================ */
#comentarios {
  background: var(--paper-2);
}

.rating-summary {
  display: flex;
  align-items: center;
  gap: 3rem;
  background: var(--paper);
  border-radius: 0;
  padding: 2.5rem;
  margin-bottom: 3rem;
  border: 1px solid var(--line-soft);
  box-shadow: 0 20px 45px rgba(28,27,24,0.05);
  flex-wrap: wrap;
}

.rating-big {
  text-align: center;
  min-width: 120px;
}

.rating-number {
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--ink);
  font-weight: 900;
  line-height: 1;
}

.rating-stars {
  color: var(--ink);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin: 6px 0;
}

.rating-count {
  font-size: 0.8rem;
  color: var(--muted);
}

.rating-bars {
  flex: 1;
  min-width: 200px;
}

.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.rating-bar-label {
  font-size: 0.78rem;
  color: var(--muted);
  min-width: 32px;
}

.rating-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(28,27,24,0.08);
  border-radius: 0;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  background: var(--ink);
  border-radius: 0;
  transition: width 1s ease;
}

.rating-bar-pct {
  font-size: 0.75rem;
  color: var(--muted);
  min-width: 32px;
  text-align: right;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: var(--paper);
  border-radius: 0;
  padding: 1.75rem;
  border: 1px solid var(--line-soft);
  box-shadow: 0 12px 30px rgba(28,27,24,0.05);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.review-card:hover {
  border-color: rgba(28,27,24,0.2);
  transform: translateY(-4px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1rem;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--mid) 0%, var(--dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--paper);
  font-weight: 900;
  flex-shrink: 0;
}

.review-name {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.review-date {
  font-size: 0.75rem;
  color: var(--muted);
}

.review-stars {
  color: var(--ink);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-product {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.review-text {
  color: rgba(28,27,24,0.75);
  font-size: 0.9rem;
  line-height: 1.65;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  color: #2E7D32;
  margin-top: 1rem;
}

/* ============================================
   PRODUCT CARD TOP ACTIONS
============================================ */
.product-actions-top {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.product-wish {
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: rgba(26,26,26,0.7);
  border: 1px solid rgba(232,220,200,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  font-size: 1rem;
}

.product-wish:hover { background: rgba(255,255,255,0.18); }

.product-3d-btn {
  width: 34px;
  height: 34px;
  border-radius: 0;
  background: rgba(26,26,26,0.75);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.product-3d-btn:hover {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
  transform: scale(1.08);
}

/* ============================================
   MODAL 3D — PRODUCT CARD
============================================ */
.modal-3d-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-3d-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.modal-3d-box {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  width: min(900px, 96vw);
  height: min(90vh, 580px);
  background: var(--paper);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,0.45), 0 0 0 1px rgba(28,27,24,0.08);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.4s cubic-bezier(.34,1.4,.64,1);
}

.modal-3d-backdrop.active .modal-3d-box {
  transform: scale(1) translateY(0);
}

.modal-3d-close {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 20;
  width: 30px; height: 30px;
  border-radius: 0;
  background: rgba(28,27,24,0.05);
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  font-size: 0.7rem;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.modal-3d-close:hover { background: rgba(28,27,24,0.1); color: var(--ink); }

/* ── LEFT: Viewer ── */
.modal-left {
  position: relative;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.modal-3d-viewer {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  cursor: grab;
  user-select: none;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-3d-viewer:active { cursor: grabbing; }

.modal-3d-viewer img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.modal-3d-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--paper);
  background: var(--ink);
  padding: 3px 8px;
  border-radius: 0;
  pointer-events: none;
}

.modal-3d-hint-text {
  position: absolute;
  bottom: 30px; left: 12px;
  display: flex; align-items: center; gap: 5px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(0,0,0,0.65);
  pointer-events: none;
}

.modal-3d-progress {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: rgba(0,0,0,0.08);
}
.modal-3d-bar {
  height: 100%; width: 0%;
  background: var(--ink);
  transition: width 0.04s linear;
}

.modal-viewer-controls {
  flex-shrink: 0;
  height: 56px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 0.9rem;
  background: #f0f0f0;
  border-top: 1px solid rgba(0,0,0,0.08);
}

.rotate-slider-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(0,0,0,0.3);
}

#rotateSlider {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  background: linear-gradient(to right, var(--ink) 0%, rgba(0,0,0,0.15) 0%);
  border-radius: 0;
  outline: none;
  cursor: pointer;
}

#rotateSlider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 0;
  background: var(--ink);
  border: 3px solid #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
  cursor: grab;
}

#rotateSlider::-webkit-slider-thumb:active { cursor: grabbing; }

#rotateSlider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 0;
  background: var(--ink);
  border: 3px solid #fff;
  box-shadow: 0 1px 6px rgba(0,0,0,0.2);
  cursor: grab;
}

.btn-autoplay {
  display: flex; align-items: center; gap: 6px;
  background: rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.12);
  color: rgba(0,0,0,0.5);
  border-radius: 0;
  padding: 0.35rem 0.75rem;
  font-size: 0.68rem;
  font-family: var(--font-body);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-autoplay:hover { background: rgba(28,27,24,0.08); border-color: var(--ink); color: var(--ink); }

.ctrl-counter {
  font-size: 0.65rem;
  color: rgba(0,0,0,0.35);
  font-variant-numeric: tabular-nums;
}

/* ── RIGHT: Product Info ── */
.modal-right {
  padding: 2rem 1.75rem;
  overflow-y: auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(28,27,24,0.25) transparent;
}

.modal-product-brand {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.modal-product-name {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--ink);
  line-height: 1.15;
}

.modal-product-name span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
}

.modal-product-rating {
  display: flex; align-items: center; gap: 8px;
}
.modal-stars { color: var(--ink); font-size: 0.85rem; letter-spacing: 2px; }
.modal-reviews-count { font-size: 0.75rem; color: var(--muted); }

.modal-product-price {
  display: flex; align-items: baseline; gap: 10px;
  padding: 0.9rem 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.modal-price-current {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--ink);
  font-weight: 900;
}
.modal-price-tag {
  font-size: 0.7rem;
  color: var(--muted);
}

.modal-section-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.modal-sizes {
  display: flex; flex-wrap: wrap; gap: 7px;
}
.modal-size {
  width: 42px; height: 38px;
  border-radius: 0;
  background: rgba(28,27,24,0.03);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.2s;
}
.modal-size:hover { border-color: var(--ink); color: var(--ink); }
.modal-size.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  font-weight: 700;
}

.modal-actions {
  display: flex; gap: 8px;
}
.modal-btn-cart {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--ink);
  color: var(--paper);
  border: none;
  border-radius: 0;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}
.modal-btn-cart:hover { background: var(--ink-soft); transform: translateY(-1px); }

.modal-btn-wish {
  width: 46px; height: 46px;
  border-radius: 0;
  background: rgba(28,27,24,0.03);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition);
}
.modal-btn-wish:hover { border-color: #e05252; color: #e05252; }

.modal-features {
  display: flex; flex-direction: column; gap: 8px;
  padding: 0.85rem;
  background: rgba(28,27,24,0.025);
  border-radius: 0;
  border: 1px solid var(--line-soft);
}
.modal-feature {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.75rem;
  color: var(--muted);
}
.modal-feature svg { flex-shrink: 0; color: var(--ink); }

.modal-reviews-section { margin-top: 0.25rem; }

.modal-review-item {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line-soft);
}
.modal-review-item:last-child { border-bottom: none; }

.modal-review-top {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 0.4rem;
}
.modal-review-avatar {
  width: 32px; height: 32px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--mid), var(--dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--paper);
  flex-shrink: 0;
}
.modal-review-name { font-size: 0.8rem; color: var(--ink); font-weight: 600; }
.modal-review-stars { color: var(--ink); font-size: 0.7rem; letter-spacing: 1px; }
.modal-review-text { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }

@media (max-width: 650px) {
  .modal-3d-box { grid-template-columns: 1fr; max-height: 95vh; }
  .modal-right  { padding: 1.25rem; }
}

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 1rem 0 1.5rem;
  line-height: 1.7;
  max-width: 260px;
}

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

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 0;
  background: rgba(28,27,24,0.04);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: rgba(28,27,24,0.08);
  border-color: rgba(28,27,24,0.3);
  color: var(--ink);
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 900;
  color: var(--ink);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  letter-spacing: 0.5px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  border-top: 1px solid var(--line-soft);
  padding-top: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-payments {
  display: flex;
  gap: 8px;
}

.pay-badge {
  background: rgba(28,27,24,0.045);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 4px 10px;
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    padding: 1rem;
    border-bottom: 1px solid var(--line-soft);
  }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .offers-banner { flex-direction: column; text-align: center; }
  .rating-summary { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .video-features { gap: 1.5rem; }
}

@media (max-width: 480px) {
  section { padding: 90px 1.25rem 60px; }
  .nav-logo span { display: none; }
  .countdown { gap: 0.5rem; }
  .countdown-unit { min-width: 50px; padding: 0.5rem; }
}
