/* ═══════════════════════════════════════════
   VALENTINA'S SHOP — styles.css
   ═══════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --pink:        #FFB7C5;
  --pink-light:  #FFD6E7;
  --pink-dark:   #FF8FAB;
  --lilac:       #C8A2E8;
  --lilac-light: #E8D6F8;
  --cream:       #FFF5F8;
  --peach:       #FFE4B5;
  --mint:        #B8E8D0;
  --mint-light:  #D6F4E8;
  --yellow:      #FFE066;
  --text:        #4A3F5C;
  --text-soft:   #7A6B8A;
  --white:       #FFFFFF;
  --shadow:      rgba(74,63,92,0.12);
  --shadow-md:   rgba(74,63,92,0.20);
  --shadow-lg:   rgba(200,162,232,0.30);

  --ff-head: 'Baloo 2', cursive;
  --ff-body: 'Nunito', sans-serif;

  --r:    16px;
  --r-sm: 10px;
  --r-lg: 28px;
  --r-xl: 40px;

  --ease: cubic-bezier(0.34,1.56,0.64,1);
}

/* ── Custom cursor ── */
* { cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24'><text y='20' font-size='18'>🐾</text></svg>") 0 0, auto; }
button, a, [onclick], .filter-btn, .product-card {
  cursor: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24'><text y='20' font-size='20'>🐾</text></svg>") 0 0, pointer;
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink-dark); }

/* ── Reset & base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--text);
  background: var(--cream);
  min-height: 100svh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: var(--ff-body); border: none; background: none; }

h1, h2, h3 { font-family: var(--ff-head); line-height: 1.1; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--text); }
h3 { font-size: 1.15rem; }
p { line-height: 1.65; }

.section-pad { padding: 80px 20px; max-width: 1200px; margin: 0 auto; }

/* ── Pill tag ── */
.pill-tag {
  display: inline-block;
  background: var(--lilac-light);
  color: #6B3FA0;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 99px;
  margin-bottom: 12px;
  letter-spacing: 0.03em;
}

/* ── Section header ── */
.section-head { text-align: center; margin-bottom: 48px; }
.section-head p { color: var(--text-soft); margin-top: 8px; font-size: 1.05rem; }

/* ═══ REVEAL ANIMATION SYSTEM ═══ */
.reveal {
  opacity: 0;
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.fade-up    { transform: translateY(40px); }
.reveal.slide-left { transform: translateX(-60px); }
.reveal.slide-right{ transform: translateX(60px); }
.reveal.scale-in   { transform: scale(0.72); }
.reveal.bounce-in  { transform: scale(0.4); }

.reveal.visible {
  opacity: 1;
  transform: none;
}
.reveal.bounce-in.visible {
  animation: bounceIn 0.75s var(--ease) forwards;
}

/* ═══ KEYFRAMES ═══ */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes bounceIn {
  0%   { opacity:0; transform: scale(0.4); }
  55%  { transform: scale(1.08); }
  75%  { transform: scale(0.94); }
  100% { opacity:1; transform: scale(1); }
}
@keyframes fadeUp {
  from { opacity:0; transform: translateY(30px); }
  to   { opacity:1; transform: none; }
}
@keyframes scalePop {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.18); }
  100% { transform: scale(1); }
}
@keyframes wiggle {
  0%,100% { transform: rotate(0); }
  25%      { transform: rotate(-8deg); }
  75%      { transform: rotate(8deg); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(200,162,232,0.5); }
  50%      { box-shadow: 0 0 0 10px rgba(200,162,232,0); }
}
@keyframes cartBounce {
  0%,100% { transform: scale(1); }
  40%      { transform: scale(1.25) rotate(-5deg); }
  60%      { transform: scale(1.1) rotate(5deg); }
}
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
@keyframes slideOutRight {
  from { transform: translateX(0); }
  to   { transform: translateX(110%); }
}
@keyframes modalIn {
  from { opacity:0; transform: scale(0.85) translateY(20px); }
  to   { opacity:1; transform: scale(1) translateY(0); }
}

/* ═══ NAVBAR ═══ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(255,245,248,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px var(--shadow);
}
.nav-logo {
  font-family: var(--ff-head);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-soft);
  transition: color 0.2s;
  display: none;
}
.nav-link:hover { color: var(--pink-dark); }
.cart-toggle {
  position: relative;
  font-size: 1.5rem;
  padding: 8px;
  border-radius: 50%;
  background: var(--pink-light);
  transition: background 0.2s, transform 0.2s;
  min-width: 44px; min-height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.cart-toggle:hover { background: var(--pink); transform: scale(1.08); }
.cart-toggle.pop { animation: cartBounce 0.4s ease; }
.cart-count {
  position: absolute;
  top: -4px; right: -4px;
  background: var(--lilac);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  min-width: 20px; height: 20px;
  border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  transform-origin: center;
  transition: transform 0.2s var(--ease);
}
.cart-count.bump { animation: scalePop 0.35s var(--ease); }

/* ═══ CART SIDEBAR ═══ */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(74,63,92,0.45);
  z-index: 200;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(380px, 100vw);
  background: var(--white);
  z-index: 201;
  display: flex; flex-direction: column;
  transform: translateX(110%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 30px var(--shadow-md);
}
.cart-sidebar.open { transform: translateX(0); }

.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 2px solid var(--pink-light);
}
.cart-head h2 { font-size: 1.3rem; }
.cart-close-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.cart-close-btn:hover { background: var(--pink-light); transform: rotate(90deg); }

.cart-body { flex: 1; overflow-y: auto; padding: 16px 20px; }

.cart-empty {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; height: 100%; text-align: center;
  gap: 10px; padding: 40px 0;
}
.cart-empty span { font-size: 4rem; animation: float 3s ease-in-out infinite; }
.cart-empty p { color: var(--text-soft); font-size: 1rem; }
.cart-empty .sub { font-size: 0.9rem; }

.cart-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--pink-light);
  animation: fadeUp 0.3s ease;
}
.ci-emoji {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--pink-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
}
.ci-info { flex: 1; }
.ci-name { font-weight: 700; font-size: 0.9rem; margin-bottom: 2px; }
.ci-price { color: var(--lilac); font-weight: 700; font-size: 0.85rem; }
.ci-controls {
  display: flex; align-items: center; gap: 6px;
}
.ci-controls button {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--lilac-light);
  font-size: 1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  color: #6B3FA0;
}
.ci-controls button:hover { background: var(--lilac); color: #fff; }
.ci-controls span { font-weight: 700; font-size: 0.95rem; min-width: 20px; text-align: center; }
.ci-remove {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: #FFE8EC;
  color: var(--pink-dark);
  font-size: 0.8rem;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
.ci-remove:hover { background: var(--pink-dark); color: #fff; transform: rotate(90deg); }

.cart-foot {
  padding: 18px 22px;
  border-top: 2px solid var(--pink-light);
  display: flex; flex-direction: column; gap: 10px;
}
.cart-total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1.1rem;
}
.cart-total-row strong { color: var(--lilac); font-size: 1.3rem; }

.btn-wa {
  width: 100%;
  padding: 14px;
  border-radius: var(--r);
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: #fff;
  font-weight: 700; font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  animation: pulseGlow 2.5s infinite;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

.btn-clear-cart {
  width: 100%;
  padding: 10px;
  border-radius: var(--r);
  background: var(--cream);
  color: var(--text-soft);
  font-size: 0.9rem;
  transition: background 0.2s;
}
.btn-clear-cart:hover { background: #FFE8EC; color: var(--pink-dark); }

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--pink-dark), var(--lilac));
  color: #fff;
  font-family: var(--ff-head);
  font-size: 1.05rem;
  font-weight: 700;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(200,162,232,0.4);
  min-height: 44px;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(200,162,232,0.55);
}
.btn-primary:active { transform: scale(0.97); }

/* ═══ HERO ═══ */
.hero {
  position: relative;
  min-height: 100svh;
  background: linear-gradient(145deg, #FFD6E7 0%, #E8D6F8 50%, #FFD6F4 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 100px 24px 60px;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,183,197,0.3) 2px, transparent 2px);
  background-size: 40px 40px;
  pointer-events: none;
}
.hero-text { position: relative; z-index: 2; }
.hero-text h1 {
  font-size: clamp(2.8rem, 10vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  margin: 12px 0 16px;
  color: var(--text);
}
.grad {
  background: linear-gradient(135deg, var(--pink-dark), var(--lilac));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: var(--text-soft);
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}
.hero-cat-wrap {
  position: relative; z-index: 2;
  width: min(320px, 85vw);
}
.cat-svg {
  width: 100%; height: auto;
  animation: float 4s ease-in-out infinite;
  filter: drop-shadow(0 24px 32px rgba(200,162,232,0.4));
}
.hdeco {
  position: absolute;
  font-size: 1.8rem;
  animation: float 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

/* ═══ ABOUT ═══ */
.about { background: var(--white); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.about-text h2 { margin-bottom: 16px; }
.about-text p { color: var(--text-soft); margin-bottom: 14px; }
.about-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.chip {
  background: var(--pink-light);
  color: var(--text);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 6px 14px;
  border-radius: 99px;
  transition: transform 0.2s;
}
.chip:hover { transform: scale(1.05); }

.about-illo { display: flex; justify-content: center; }
.illo-wrap {
  position: relative;
  width: 220px; height: 220px;
  display: flex; align-items: center; justify-content: center;
}
.illo-main {
  font-size: 8rem;
  animation: float 3.5s ease-in-out infinite;
  display: block;
  filter: drop-shadow(0 12px 20px rgba(200,162,232,0.3));
}
.illo-deco {
  position: absolute;
  font-size: 1.6rem;
  animation: float 3s ease-in-out infinite;
}
.d1 { top: 10%; left: 0%;  animation-delay: 0.3s; }
.d2 { top: 5%;  right: 5%; animation-delay: 0.8s; }
.d3 { bottom: 10%; left: 5%;  animation-delay: 1.1s; }
.d4 { bottom: 5%;  right: 0%; animation-delay: 0.5s; }

/* ═══ CATALOG ═══ */
.catalog { background: var(--cream); }

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 99px;
  border: 2px solid var(--pink-light);
  background: var(--white);
  color: var(--text-soft);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s var(--ease);
  min-height: 44px;
}
.filter-btn:hover { border-color: var(--pink); color: var(--text); transform: translateY(-2px); }
.filter-btn.active {
  background: linear-gradient(135deg, var(--pink-dark), var(--lilac));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 14px rgba(200,162,232,0.4);
  transform: translateY(-2px);
}

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

/* ── Product card ── */
.product-card {
  background: var(--white);
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: 0 4px 16px var(--shadow);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s;
  opacity: 0;
  transform: translateY(35px);
}
.product-card.visible { opacity: 1; transform: none; }
.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px var(--shadow-lg);
}
.product-card:hover .card-emoji { transform: scale(1.15) rotate(-5deg); }

.card-img {
  position: relative;
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
}
.card-bg-aretes    { background: linear-gradient(135deg, #FFD6E7, #FFE4B5); }
.card-bg-maquillaje{ background: linear-gradient(135deg, #E8D6F8, #FFD6E7); }
.card-bg-esmaltes  { background: linear-gradient(135deg, #D6F4E8, #E8D6F8); }
.card-bg-cauchos   { background: linear-gradient(135deg, #FFE4B5, #FFD6E7); }
.card-bg-monederos { background: linear-gradient(135deg, #E8D6F8, #D6F4E8); }

.card-emoji {
  font-size: clamp(2.4rem, 6vw, 3.4rem);
  transition: transform 0.3s var(--ease);
}
.card-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: linear-gradient(135deg, var(--yellow), #FFB800);
  color: #5C4000;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 99px;
  box-shadow: 0 2px 8px rgba(255,184,0,0.3);
}

.card-body { padding: 14px; }
.card-cat-label {
  font-size: 0.78rem;
  color: var(--lilac);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.card-name {
  font-size: 1rem;
  margin: 4px 0 10px;
  color: var(--text);
  font-weight: 700;
}
.card-footer { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.card-price {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--pink-dark);
}
.btn-cart {
  padding: 8px 14px;
  border-radius: 99px;
  background: var(--pink-light);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s;
  min-height: 36px; white-space: nowrap;
}
.btn-cart:hover { background: var(--pink); transform: scale(1.05); }
.btn-cart:active { transform: scale(0.95); }

/* ═══ FEATURED ═══ */
.featured { background: var(--white); }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.featured-card {
  background: linear-gradient(145deg, var(--lilac-light), var(--pink-light));
  border: 2.5px solid var(--pink);
  border-radius: var(--r);
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  opacity: 0; transform: translateY(35px);
  transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s;
  box-shadow: 0 4px 20px var(--shadow-lg);
}
.featured-card.visible { opacity:1; transform:none; }
.featured-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 16px 40px var(--shadow-lg);
}
.featured-card:hover .fc-emoji { animation: wiggle 0.5s ease; }
.fc-emoji { font-size: 3.2rem; }
.fc-star {
  background: linear-gradient(135deg, var(--yellow), #FFB800);
  color: #5C4000;
  font-size: 0.75rem; font-weight: 800;
  padding: 3px 12px; border-radius: 99px;
}
.fc-name { font-weight: 700; font-size: 0.95rem; color: var(--text); }
.fc-price {
  font-family: var(--ff-head);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--pink-dark);
}
.fc-btn {
  width: 100%;
  padding: 10px;
  border-radius: var(--r);
  background: linear-gradient(135deg, var(--pink-dark), var(--lilac));
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.fc-btn:hover { transform: scale(1.04); box-shadow: 0 6px 18px rgba(200,162,232,0.4); }

/* ═══ CONTACT ═══ */
.contact {
  background: linear-gradient(145deg, var(--lilac-light), var(--pink-light));
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
.contact-text h2 { margin-bottom: 12px; }
.contact-text p { color: var(--text-soft); margin-bottom: 4px; }
.contact-btns { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }

.btn-wa-big {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 28px;
  border-radius: var(--r);
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: #fff;
  font-weight: 800; font-size: 1.05rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 6px 22px rgba(37,211,102,0.3);
  min-height: 54px;
}
.btn-wa-big:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,0.4); }

.btn-ig {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px;
  border-radius: var(--r);
  background: linear-gradient(135deg, #F56040, #C13584, #833AB4);
  color: #fff;
  font-weight: 700; font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s;
  min-height: 50px;
}
.btn-ig:hover { transform: translateY(-3px); box-shadow: 0 10px 26px rgba(200,53,132,0.35); }

.contact-hint { font-size: 0.9rem; color: var(--text-soft); margin-top: 8px; }

.contact-illo { text-align: center; }
.contact-cat-big { font-size: 5.5rem; display: block; animation: float 3.5s ease-in-out infinite; }
.contact-illo p { color: var(--text-soft); margin-top: 10px; font-weight: 600; }

/* ═══ FOOTER ═══ */
.footer { background: var(--text); color: rgba(255,245,248,0.8); }
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 48px 24px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.footer-logo {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--pink);
  margin-bottom: 8px;
}
.footer-brand p { font-size: 0.9rem; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 16px;
}
.footer-links a {
  color: rgba(255,245,248,0.7);
  font-size: 0.95rem; font-weight: 600;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--pink); }
.footer-social { display: flex; gap: 16px; }
.footer-social a {
  font-size: 1.8rem;
  transition: transform 0.2s;
  display: block;
}
.footer-social a:hover { transform: scale(1.2) rotate(-5deg); }
.footer-bottom {
  border-top: 1px solid rgba(255,245,248,0.1);
  padding: 20px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
  font-size: 0.85rem; text-align: center;
}
.footer-kitty { font-size: 1.5rem; animation: float 4s ease-in-out infinite; }

/* ═══ MODAL ═══ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(74,63,92,0.55);
  z-index: 300;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white);
  border-radius: var(--r-lg);
  width: 100%; max-width: 440px;
  max-height: 90vh; overflow-y: auto;
  position: relative;
  animation: modalIn 0.35s var(--ease) both;
}
.modal-x {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--cream);
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
  transition: background 0.2s, transform 0.2s;
}
.modal-x:hover { background: var(--pink-light); transform: rotate(90deg); }
.modal-img {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
}
.modal-content { padding: 22px 24px 28px; }
.modal-cat-tag {
  font-size: 0.8rem; font-weight: 700;
  color: var(--lilac); letter-spacing: 0.05em;
  text-transform: uppercase;
}
.modal-content h3 { font-size: 1.4rem; margin: 8px 0 10px; }
.modal-content p { color: var(--text-soft); margin-bottom: 16px; }
.modal-price-el {
  font-family: var(--ff-head);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--pink-dark);
  margin-bottom: 18px;
}
.modal-add-btn { width: 100%; justify-content: center; }

/* ═══ RESPONSIVE ═══ */
@media (min-width: 600px) {
  .nav-link { display: block; }

  .hero {
    flex-direction: row;
    justify-content: center;
    text-align: left;
    gap: 60px;
    padding: 100px 40px 60px;
  }
  .hero-text { flex: 1; max-width: 500px; }
  .hero-sub { margin-left: 0; margin-right: 0; }
  .hero-cat-wrap { flex-shrink: 0; width: 300px; }

  .about-inner { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr 1fr; }
  .contact-btns { flex-direction: row; }

  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .featured-grid { grid-template-columns: repeat(4, 1fr); }

  .footer-inner { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
  .section-pad { padding: 100px 40px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .cat-svg, .hdeco, .illo-main, .illo-deco,
  .footer-kitty, .cart-empty span, .contact-cat-big {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}
