/* ============================================================
   YASS.DOLLS — Style v5 (electric pop, light)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,700;0,900;1,700;1,900&family=Playfair+Display:ital,wght@0,700;0,900;1,700&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
  /* MORADOS DOMINANTES (Sustituyen al Magenta) */
  --magenta:        #9c27b0; /* Morado real vibrante */
  --magenta-dark:   #6a1b9a; /* Morado obispo (más oscuro) */
  --magenta-glow:   #e1bee7; /* Brillo lila claro */
  --magenta-pale:   #f3e5f5; /* Lavanda blanquecino */
  --magenta-light:  #f8f1f9; /* Fondo con matiz violeta */

  /* ACENTOS EN AZUL VIOLÁCEO (Sustituyen al Gold) */
  --gold:           #5e35b1; /* Azul violeta profundo (más morado que azul) */
  --gold-pale:      #ede7f6; /* Lavanda muy suave */

  /* NEUTROS Y FONDOS */
  --white:          #ffffff;
  --cream:          #fafafa; 
  --ink:            #21002d; /* Negro con matiz de berenjena muy oscuro */
  --ink-soft:       #4a148c; /* Morado sombra */
  --muted:          #7b1fa2; /* Morado medio para textos secundarios */

  /* INTERFAZ (Basada en la nueva saturación de morados) */
  --border:         rgba(156, 39, 176, 0.12);
  --border-strong:  rgba(156, 39, 176, 0.25);
  --shadow-card:    0 8px 32px rgba(74, 20, 140, 0.08);
  --shadow-hover:   0 20px 52px rgba(74, 20, 140, 0.15);
  --radius:         16px;
  --ease:           cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Space Grotesk', sans-serif;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
}

h1,h2,h3,h4 { font-family: 'Playfair Display', serif; }

/* ══════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 72px;
  background: var(--white);
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 5%; z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(233,30,140,.08);
}

.navbar::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, transparent, var(--magenta), var(--gold), var(--magenta), transparent);
  opacity: .7;
}

.profile { display: flex; align-items: center; gap: 12px; text-decoration: none; }

.profile img {
  width: 42px; height: 42px; border-radius: 50%;
  border: 2px solid var(--magenta);
  object-fit: cover;
  box-shadow: 0 0 0 3px var(--magenta-pale);
}

.profile h3 {
  font-family: 'Fraunces', serif;
  font-style: italic; font-weight: 900; font-size: 24px;
  background: linear-gradient(135deg, var(--magenta-dark) 0%, var(--magenta) 60%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }

.nav-links li a {
  color: var(--ink-soft); text-decoration: none;
  font-size: 14px; font-weight: 500; padding: 7px 14px;
  border-radius: 30px; letter-spacing: .3px;
  transition: background .2s, color .2s;
}

.nav-links li a:hover,
.nav-links li a.active {
  background: var(--magenta-pale); color: var(--magenta-dark);
}

.cart-link-container { display: flex; align-items: center; }

.cart-button {
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-dark) 100%);
  color: var(--white) !important;
  padding: 9px 20px 9px 16px; border-radius: 50px;
  font-size: 14px; font-weight: 600; text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  transition: transform .2s var(--ease), box-shadow .2s;
  box-shadow: 0 4px 18px rgba(156,39,176,.35);
  position: relative; overflow: hidden;
}
.cart-button::after {
  content: ''; position: absolute; top: -50%; left: -60%;
  width: 50%; height: 200%; background: rgba(255,255,255,.12);
  transform: skewX(-20deg); transition: left .45s ease;
}
.cart-button:hover::after { left: 120%; }
.cart-button:hover { transform: translateY(-2px) scale(1.03); box-shadow: 0 8px 28px rgba(156,39,176,.5); }

#cart-count {
  background: rgba(255,255,255,.25);
  color: var(--white);
  border-radius: 50%; width: 22px; height: 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  border: 1.5px solid rgba(255,255,255,.4);
}

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 6px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--magenta); border-radius: 2px;
  transition: all .3s var(--ease);
}

/* ══════════════════════════════════════════════════════════
   HERO
   ══════════════════════════════════════════════════════════ */
.home-section {
  min-height: 100vh;
  background: linear-gradient(150deg, #fff0f8 0%, #ffe8f5 40%, #fff9e6 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  position: relative; overflow: hidden;
}

/* big decorative text behind */
.home-section::before {
  content: 'YASS';
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(140px, 24vw, 300px);
  color: rgba(233,30,140,.05);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap; pointer-events: none; user-select: none;
}

.home-section::after {
  content: '✦   ✦   ✦   ✦   ✦';
  position: absolute; top: 19%; left: 50%;
  transform: translateX(-50%);
  font-size: 10px; letter-spacing: 22px;
  color: rgba(233,30,140,.2); pointer-events: none;
  animation: sparkle 3s ease-in-out infinite;
}
@keyframes sparkle { 0%,100%{opacity:.2} 50%{opacity:.6} }

.hero-eyebrow {
  display: inline-block;
  background: var(--magenta-pale);
  color: var(--magenta-dark);
  font-size: 11px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  padding: 6px 20px; border-radius: 30px;
  border: 1px solid var(--border-strong);
  margin-bottom: 24px;
  font-family: 'Space Grotesk', sans-serif;
}

.home-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 7.5vw, 88px);
  font-weight: 900; color: var(--ink);
  line-height: 1.1; max-width: 820px; margin-bottom: 20px;
}

.home-section h2 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-dark) 50%, var(--gold) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: clamp(14px, 2vw, 17px);
  color: var(--muted); margin-bottom: 44px;
  max-width: 420px; line-height: 1.7; font-weight: 400;
}

.hero-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-dark) 100%);
  color: var(--white) !important;
  text-decoration: none; font-weight: 600; font-size: 15px;
  padding: 15px 36px; border-radius: 50px;
  box-shadow: 0 8px 32px rgba(233,30,140,.35);
  transition: transform .25s var(--ease), box-shadow .25s;
  letter-spacing: .4px; font-family: 'Space Grotesk', sans-serif;
  position: relative; overflow: hidden;
}
.hero-cta::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--magenta) 100%);
  opacity: 0; transition: opacity .3s;
}
.hero-cta span, .hero-cta-arrow { position: relative; z-index: 1; }
.hero-cta:hover::before { opacity: 1; }
.hero-cta:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(233,30,140,.45); }
.hero-cta-arrow { transition: transform .25s; }
.hero-cta:hover .hero-cta-arrow { transform: translateX(4px); }

.hero-stats {
  display: flex; gap: 52px;
  margin-top: 70px; padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat { text-align: center; }
.hero-stat strong {
  display: block; font-family: 'Playfair Display', serif;
  font-size: 32px; font-weight: 900;
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; line-height: 1;
}
.hero-stat span {
  display: block; margin-top: 6px;
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--muted); font-weight: 500;
}

.scroll-hint {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--muted); font-size: 10px;
  letter-spacing: 2px; text-transform: uppercase;
  animation: scrollBounce 2.2s infinite;
}
.scroll-hint::after {
  content: ''; width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--magenta), transparent);
}
@keyframes scrollBounce {
  0%,100%{transform:translateX(-50%) translateY(0)}
  50%{transform:translateX(-50%) translateY(7px)}
}

/* ══════════════════════════════════════════════════════════
   DOLLS
   ══════════════════════════════════════════════════════════ */
#dolls { background: var(--white); padding: 80px 0 40px; }

.dolls-section-header { text-align: center; padding: 0 20px 40px; }
.dolls-section-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 48px); font-weight: 900;
  color: var(--ink); margin-bottom: 8px;
}
.dolls-section-header p { font-size: 14px; color: var(--muted); letter-spacing: .3px; }

.dolls-submenu {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 8px; padding: 0 20px 48px;
}
.dolls-submenu a {
  text-decoration: none; color: var(--magenta-dark); font-weight: 500; font-size: 13px;
  padding: 9px 20px; border-radius: 30px;
  border: 1.5px solid var(--border-strong); background: var(--white);
  transition: all .2s var(--ease); letter-spacing: .3px;
}
.dolls-submenu a:hover {
  background: var(--magenta); color: var(--white); border-color: var(--magenta);
  transform: translateY(-2px); box-shadow: 0 6px 20px rgba(233,30,140,.3);
}

/* Artist sections */
.ariana-section  { background: #fff0f8; padding: 64px 5%; }
.olivia-section  { background: #f5f0ff; padding: 64px 5%; }
.sabrina-section { background: #f0faff; padding: 64px 5%; }
.taylor-section  { background: #fff8f0; padding: 64px 5%; }
.others-section  { background: #fdf0f9; padding: 64px 5%; }

.mini-feed { max-width: 1300px; margin: 0 auto; }

.artist-header {
  display: flex; align-items: baseline; gap: 16px;
  margin-bottom: 32px; padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
}
.artist-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700; font-style: italic; line-height: 1;
}
.artist-count {
  font-size: 12px; font-weight: 500; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--muted); margin-left: auto;
}

.ariana-section  .artist-header h3 { color: #c2006b; }
.olivia-section  .artist-header h3 { color: #6200c2; }
.sabrina-section .artist-header h3 { color: #006fb5; }
.taylor-section  .artist-header h3 { color: #b54000; }
.others-section  .artist-header h3 { color: var(--magenta-dark); }

/* Cards */
.photos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

.doll-card {
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); box-shadow: var(--shadow-card);
  border: 1px solid rgba(233,30,140,.08);
  transition: transform .35s var(--ease), box-shadow .35s, border-color .35s;
  cursor: pointer; display: flex; flex-direction: column;
}
.doll-card:hover {
  transform: translateY(-8px); box-shadow: var(--shadow-hover);
  border-color: var(--border-strong);
}

.doll-card-image { position: relative; height: 300px; overflow: hidden; }
.doll-card-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: top center;
  display: block; transition: transform .5s var(--ease);
}
.doll-card:hover .doll-card-image img { transform: scale(1.07); }

.doll-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(173,0,94,.65) 0%, transparent 55%);
  opacity: 0; transition: opacity .3s var(--ease);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 18px;
}
.doll-card:hover .doll-overlay { opacity: 1; }

.add-to-cart-btn {
  background: var(--white); color: var(--magenta-dark);
  border: none; padding: 10px 24px; border-radius: 30px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: .4px; cursor: pointer;
  transform: translateY(10px);
  transition: transform .3s var(--ease), background .2s, color .2s;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.doll-card:hover .add-to-cart-btn { transform: translateY(0); }
.add-to-cart-btn:hover { background: var(--magenta); color: var(--white); }

.doll-info {
  padding: 14px 16px 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  background: var(--white);
}
.doll-info-name { font-size: 13px; font-weight: 500; color: var(--ink-soft); line-height: 1.3; flex: 1; }
.doll-info-price {
  font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700;
  color: var(--magenta); white-space: nowrap;
}

.doll-name { display: none; }

/* ══════════════════════════════════════════════════════════
   REACTIONS
   ══════════════════════════════════════════════════════════ */
.reactions-section {
  padding: 80px 5%;
  background: linear-gradient(135deg, var(--magenta-dark) 0%, var(--magenta) 60%, #ff6ec7 100%);
  text-align: center;
}
.reactions-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 5vw, 52px); font-weight: 900; font-style: italic;
  color: var(--white); margin-bottom: 10px;
}
.reactions-eyebrow {
  display: block; font-size: 11px; color: rgba(255,255,255,.6);
  letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 44px; font-weight: 500;
}
.reactions-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.reaction-item {
  background: rgba(255,255,255,.12); border-radius: var(--radius);
  overflow: hidden; border: 1px solid rgba(255,255,255,.2);
  backdrop-filter: blur(6px);
  transition: transform .3s var(--ease), box-shadow .3s;
}
.reaction-item:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.reaction-item iframe { width: 100%; height: 380px; border: none; display: block; }
.reaction-item p { padding: 14px 16px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.8); margin: 0; }

/* ══════════════════════════════════════════════════════════
   COMMISSIONS
   ══════════════════════════════════════════════════════════ */
#order { background: var(--cream); padding: 100px 20px; text-align: center; }

.content { max-width: 560px; margin: 0 auto; }

#order h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 5vw, 54px); font-weight: 900; color: var(--ink); margin-bottom: 14px;
}
#order h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--magenta), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
#order .content > p { font-size: 15px; color: var(--muted); margin-bottom: 32px; line-height: 1.7; }

.order-instructions {
  font-size: 13px; line-height: 1.7; color: var(--ink-soft);
  background: var(--magenta-light); border-left: 3px solid var(--magenta);
  padding: 16px 20px; border-radius: 12px; margin-bottom: 28px; text-align: left;
}

.commission-form {
  background: var(--white); padding: 36px 36px 28px;
  border-radius: 20px; box-shadow: var(--shadow-card);
  border: 1px solid var(--border); text-align: left;
}
.commission-form .form-group { margin-bottom: 18px; }
.commission-form label {
  display: block; font-size: 11px; font-weight: 600;
  color: var(--magenta-dark); margin-bottom: 8px;
  letter-spacing: 1px; text-transform: uppercase;
}
.commission-form input,
.commission-form textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif; font-size: 14px;
  color: var(--ink); background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
}
.commission-form input:focus,
.commission-form textarea:focus {
  outline: none; border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(233,30,140,.1); background: var(--white);
}

/* ── CTA ──────────────────────────────────────────────────── */
.btn-pay {
  display: inline-block; width: 100%;
  background: linear-gradient(135deg, var(--magenta) 0%, var(--magenta-dark) 100%);
  color: var(--white) !important; text-align: center;
  padding: 15px 28px; border-radius: 50px;
  text-decoration: none; margin-top: 8px;
  font-weight: 600; font-size: 15px; cursor: pointer; border: none;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: .5px;
  transition: transform .25s var(--ease), box-shadow .25s;
  box-shadow: 0 6px 24px rgba(233,30,140,.3);
  position: relative; overflow: hidden;
}
.btn-pay::after {
  content: ''; position: absolute; top: -50%; left: -60%;
  width: 50%; height: 200%; background: rgba(255,255,255,.15);
  transform: skewX(-20deg); transition: left .5s ease;
}
.btn-pay:hover::after { left: 120%; }
.btn-pay:hover { transform: translateY(-3px); box-shadow: 0 12px 36px rgba(233,30,140,.45); }
.btn-pay:active { transform: translateY(1px); }

.paypal-button, .revolut-button {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 13px 20px; border-radius: 50px; text-decoration: none;
  font-weight: 600; font-size: 14px; margin-bottom: 10px;
  transition: transform .2s var(--ease), box-shadow .2s;
  font-family: 'Space Grotesk', sans-serif;
}
.paypal-button { background: #003087; color: var(--white) !important; box-shadow: 0 4px 14px rgba(0,48,135,.25); }
.revolut-button { background: var(--white); color: var(--ink) !important; border: 1.5px solid #ddd; box-shadow: 0 4px 14px rgba(0,0,0,.07); }
.paypal-button:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,48,135,.35); }
.revolut-button:hover { transform: translateY(-2px); border-color: var(--magenta); }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer {
  background: var(--ink); color: rgba(255,255,255,.6);
  text-align: center; padding: 56px 20px 32px;
}
.social-prompt p {
  font-family: 'Playfair Display', serif; font-style: italic;
  font-size: clamp(18px, 2.5vw, 24px); color: var(--white); margin-bottom: 20px;
}
.social-icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 36px; }
.social-icons a img {
  width: 26px; height: 26px;
  transition: filter .2s, transform .2s;
}
.social-icons a:hover img { transform: scale(1.15); }
.footer-divider { width: 40px; height: 1px; background: rgba(233,30,140,.3); margin: 0 auto 16px; }
.footer-info p { font-size: 12px; margin: 3px 0; opacity: .35; }

/* ══════════════════════════════════════════════════════════
   FADE-IN
   ══════════════════════════════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--ease), transform .65s var(--ease); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.photos-grid .doll-card:nth-child(2) { transition-delay: .07s; }
.photos-grid .doll-card:nth-child(3) { transition-delay: .14s; }
.photos-grid .doll-card:nth-child(4) { transition-delay: .21s; }
.photos-grid .doll-card:nth-child(5) { transition-delay: .28s; }
.photos-grid .doll-card:nth-child(6) { transition-delay: .35s; }

/* ══════════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) { .reactions-grid { grid-template-columns: repeat(2,1fr); } }

@media (max-width: 768px) {
  .navbar { height: auto; padding: 14px 5%; flex-wrap: wrap; }
  .menu-toggle { display: flex; }
  .nav-links {
    display: none; flex-direction: column; width: 100%;
    gap: 2px; padding: 10px 0 14px;
    border-top: 1px solid var(--border); margin-top: 10px;
  }
  .nav-links.open { display: flex; }
  .nav-links li a { font-size: 16px; padding: 10px 12px; width: 100%; display: block; }
  .home-section { min-height: auto; padding: 120px 20px 60px; }
  .hero-stats { gap: 28px; flex-wrap: wrap; justify-content: center; }
  .photos-grid { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .reactions-grid { grid-template-columns: 1fr; }
  .commission-form { padding: 24px 18px; }
  .doll-card-image { height: 260px; }
}

@media (max-width: 480px) {
  .photos-grid { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
  .profile h3 { font-size: 17px; }
  .dolls-submenu a { font-size: 12px; padding: 8px 14px; }
}