/* ====== HELEN PERSONALIZADOS — feminine luxury theme ====== */
:root {
  --rose-50:  #fdf6f3;
  --rose-100: #fbe9e3;
  --rose-200: #f5cfc4;
  --rose-300: #eaa899;
  --rose-400: #db8270;
  --rose-500: #c25e4d;

  --blush:    #f7d9d0;
  --cream:    #fbf5ef;
  --ivory:    #fffaf6;
  --gold:     #c9a96a;
  --gold-dk:  #a88a4f;
  --lavender: #e9e3f0;

  --ink:      #3a2a2a;
  --ink-soft: #6b5252;
  --muted:    #9a8a82;
  --line:     #f0e4dd;

  --shadow-sm: 0 4px 14px rgba(180, 110, 90, .08);
  --shadow-md: 0 14px 40px rgba(180, 110, 90, .14);
  --shadow-lg: 0 30px 80px rgba(180, 110, 90, .18);

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
  --font-sans:   'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }

.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ====== TOPBAR ====== */
.topbar {
  background: linear-gradient(90deg, var(--rose-300), var(--gold), var(--rose-300));
  color: white;
  text-align: center;
  font-size: 13px;
  letter-spacing: .5px;
  padding: 9px 20px;
  font-weight: 400;
}

/* ====== HEADER ====== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 250, 246, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px; gap: 20px;
}
.logo { display: flex; align-items: baseline; gap: 6px; }
.logo-script {
  font-family: var(--font-script);
  font-size: 34px;
  color: var(--rose-400);
  font-weight: 700;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--gold-dk);
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
}
.nav { display: flex; gap: 36px; }
.nav a {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
  position: relative;
}
.nav a:hover { color: var(--rose-400); }
.nav a::after {
  content: ''; position: absolute; left: 50%; bottom: -6px;
  width: 0; height: 1px; background: var(--rose-400);
  transition: all .3s; transform: translateX(-50%);
}
.nav a:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  border: 1px solid var(--line);
  background: white;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s;
}
.lang-switch:hover { border-color: var(--rose-300); }

.cart-btn {
  position: relative;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: white;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: all .2s;
}
.cart-btn:hover { background: var(--rose-50); color: var(--rose-400); border-color: var(--rose-200); }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  background: var(--rose-400);
  color: white;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  display: grid; place-items: center;
  padding: 0 5px;
}

/* ====== HERO ====== */
.hero { position: relative; padding: 80px 0 100px; overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 10%, var(--blush) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 90%, var(--lavender) 0%, transparent 50%),
    linear-gradient(180deg, var(--ivory), var(--cream));
  z-index: -1;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--rose-400);
  margin-bottom: 12px;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--rose-400), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 300;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-image {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 520px;
  margin: 0 auto;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: white;
  padding: 8px;
  transition: transform .6s ease;
}
.hero-card img { border-radius: 22px; aspect-ratio: 1/1; object-fit: cover; }
.hero-card-1 { width: 60%; top: 0; left: 8%; transform: rotate(-4deg); }
.hero-card-2 { width: 50%; bottom: 8%; right: 0; transform: rotate(5deg); }
.hero-card-3 { width: 38%; bottom: 0; left: 0; transform: rotate(-8deg); z-index: 2; }
.hero-card:hover { transform: rotate(0deg) scale(1.03); }
.hero-bloom {
  position: absolute; inset: -10%;
  background: radial-gradient(circle at center, var(--blush) 0%, transparent 60%);
  z-index: -1;
  filter: blur(40px);
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: all .3s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: linear-gradient(135deg, var(--rose-400), var(--rose-500));
  color: white;
  box-shadow: 0 10px 30px rgba(219, 130, 112, .35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(219, 130, 112, .5);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: white; }
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #1ea952);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, .3);
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(37, 211, 102, .45); }
.btn-block { width: 100%; }

/* ====== FEATURES ====== */
.features { padding: 60px 0; background: white; border-block: 1px solid var(--line); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.feature { text-align: center; padding: 20px; }
.feature-icon {
  font-size: 38px;
  margin-bottom: 14px;
  filter: drop-shadow(0 6px 14px rgba(219, 130, 112, .25));
}
.feature h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}
.feature p { font-size: 14px; color: var(--ink-soft); }

/* ====== SECTIONS ====== */
.section-head { text-align: center; margin-bottom: 56px; max-width: 640px; margin-inline: auto; }
.section-eyebrow {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--rose-400);
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 52px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub { color: var(--ink-soft); font-size: 16px; }

/* ====== PRODUCTS ====== */
.products { padding: 100px 0; background: var(--ivory); }
.filter-bar {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-bottom: 48px;
}
.filter {
  padding: 10px 22px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
  transition: all .25s;
}
.filter:hover { border-color: var(--rose-300); color: var(--rose-400); }
.filter.active {
  background: var(--rose-400);
  color: white;
  border-color: var(--rose-400);
  box-shadow: 0 6px 18px rgba(219, 130, 112, .3);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  cursor: pointer;
  position: relative;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.product-media {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--cream);
}
.product-media img,
.product-media video {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s;
}
.product-card:hover .product-media img,
.product-card:hover .product-media video { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(255, 255, 255, .95);
  color: var(--rose-500);
  font-size: 11px; font-weight: 500;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 999px;
  backdrop-filter: blur(8px);
}
.product-video-icon {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0, 0, 0, .55);
  color: white;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: grid; place-items: center;
  backdrop-filter: blur(8px);
  font-size: 13px;
}
.product-info { padding: 22px 22px 26px; }
.product-cat {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--gold-dk); font-weight: 500; margin-bottom: 6px;
}
.product-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.25;
}
.product-price {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px; margin-top: 14px;
}
.price-value {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
  color: var(--rose-500);
}
.price-old { font-size: 14px; color: var(--muted); text-decoration: line-through; }
.product-cta {
  margin-top: 16px;
  width: 100%;
  padding: 12px;
  background: var(--ink);
  color: white;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s;
}
.product-card:hover .product-cta {
  background: linear-gradient(135deg, var(--rose-400), var(--rose-500));
}

/* ====== ABOUT ====== */
.about { padding: 110px 0; background: linear-gradient(180deg, white, var(--cream)); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img { position: relative; }
.about-img img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -30px; right: -30px;
  background: white;
  padding: 22px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 6px solid var(--cream);
}
.about-badge-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 700;
  color: var(--rose-400);
  line-height: 1;
}
.about-badge-text {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.about-text .section-eyebrow,
.about-text .section-title { text-align: left; margin-inline: 0; }
.about-text p { color: var(--ink-soft); margin-bottom: 18px; }
.about-text .btn { margin-top: 12px; }

/* ====== TESTIMONIALS ====== */
.testimonials { padding: 100px 0; background: white; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review {
  background: var(--ivory);
  padding: 36px 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  position: relative;
}
.review::before {
  content: '“';
  position: absolute;
  top: -10px; left: 24px;
  font-family: var(--font-serif);
  font-size: 100px;
  color: var(--rose-200);
  line-height: 1;
}
.review-stars { color: var(--gold); margin-bottom: 14px; letter-spacing: 3px; }
.review p {
  font-family: var(--font-serif);
  font-size: 18px;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 22px;
  line-height: 1.5;
}
.review-author strong {
  display: block;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 2px;
}
.review-author span { color: var(--muted); font-size: 13px; }

/* ====== CTA FINAL ====== */
.cta-final {
  padding: 100px 0;
  background:
    radial-gradient(ellipse at top right, var(--blush), transparent 60%),
    radial-gradient(ellipse at bottom left, var(--lavender), transparent 60%),
    var(--cream);
  text-align: center;
}
.cta-final h2 {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 14px;
}
.cta-final p { color: var(--ink-soft); margin-bottom: 32px; font-size: 17px; }

/* ====== FOOTER ====== */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 70px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer h4 {
  font-family: var(--font-serif);
  color: white;
  font-weight: 500;
  font-size: 18px;
  margin-bottom: 16px;
}
.footer a {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  padding: 5px 0;
  transition: color .2s;
}
.footer a:hover { color: var(--rose-300); }
.footer-text { color: rgba(255,255,255,.6); font-size: 14px; margin-top: 12px; max-width: 280px; }
.footer-bottom {
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.1);
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}

/* ====== MODAL ====== */
.modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 20px;
}
.modal.open { display: flex; animation: fadeIn .3s; }
.modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(58, 42, 42, .55);
  backdrop-filter: blur(6px);
}
.modal-card {
  position: relative;
  background: white;
  border-radius: var(--radius-lg);
  max-width: 1000px;
  width: 100%;
  max-height: 92vh;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  animation: slideUp .4s cubic-bezier(.2,.8,.2,1);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: white;
  font-size: 24px;
  color: var(--ink);
  z-index: 5;
  box-shadow: var(--shadow-sm);
  transition: all .2s;
}
.modal-close:hover { background: var(--rose-100); transform: rotate(90deg); }
.modal-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  max-height: 92vh;
  overflow: hidden;
}
.modal-gallery {
  background: var(--cream);
  padding: 24px;
  display: flex; flex-direction: column;
  overflow: hidden;
}
.gallery-main {
  aspect-ratio: 1/1;
  border-radius: var(--radius);
  overflow: hidden;
  background: white;
  margin-bottom: 14px;
  position: relative;
}
.gallery-main img,
.gallery-main video {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.gallery-thumbs::-webkit-scrollbar { height: 6px; }
.gallery-thumbs::-webkit-scrollbar-thumb { background: var(--rose-200); border-radius: 99px; }
.thumb {
  flex: 0 0 72px;
  width: 72px; height: 72px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .2s;
  position: relative;
  background: white;
}
.thumb.active { border-color: var(--rose-400); }
.thumb img,
.thumb video { width: 100%; height: 100%; object-fit: cover; }
.thumb-video-mark {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  background: rgba(0,0,0,.3);
  color: white; font-size: 16px;
}

.modal-info {
  padding: 40px 36px;
  overflow-y: auto;
}
.modal-cat {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dk);
  font-weight: 500;
  margin-bottom: 8px;
}
.modal-title {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.2;
}
.modal-price {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--rose-500);
  font-weight: 600;
  margin-bottom: 16px;
}
.modal-desc { color: var(--ink-soft); margin-bottom: 28px; font-size: 15px; }

.modal-form { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field span {
  font-size: 13px;
  letter-spacing: .5px;
  font-weight: 500;
  color: var(--ink);
}
.field span small { color: var(--muted); font-weight: 300; font-size: 12px; }
.field input,
.field textarea {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-size: 14px;
  background: var(--cream);
  color: var(--ink);
  transition: all .2s;
  resize: vertical;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose-300);
  background: white;
  box-shadow: 0 0 0 4px var(--rose-50);
}
.qty-control {
  display: flex; align-items: center; gap: 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 4px;
  width: fit-content;
}
.qty-btn {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: white;
  font-size: 18px;
  color: var(--rose-400);
  font-weight: 600;
  transition: all .2s;
}
.qty-btn:hover { background: var(--rose-100); }
.qty-control input {
  width: 60px; text-align: center;
  border: none; background: transparent;
  font-size: 16px; font-weight: 500;
  -moz-appearance: textfield;
}
.qty-control input::-webkit-outer-spin-button,
.qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* ====== CART DRAWER ====== */
.cart-drawer {
  position: fixed; inset: 0;
  z-index: 110;
  pointer-events: none;
}
.cart-drawer.open { pointer-events: auto; }
.cart-backdrop {
  position: absolute; inset: 0;
  background: rgba(58,42,42,.4);
  opacity: 0;
  transition: opacity .3s;
}
.cart-drawer.open .cart-backdrop { opacity: 1; }
.cart-panel {
  position: absolute; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 440px;
  background: var(--ivory);
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,.15);
}
.cart-drawer.open .cart-panel { transform: translateX(0); }
.cart-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--line);
}
.cart-head h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 600;
}
.cart-close {
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 24px;
  color: var(--ink-soft);
  transition: all .2s;
}
.cart-close:hover { background: var(--rose-100); color: var(--rose-500); }
.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
}
.cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-img {
  width: 70px; height: 70px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--cream);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info h4 {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--ink);
}
.cart-item-info p { font-size: 12px; color: var(--ink-soft); margin-bottom: 4px; line-height: 1.4; }
.cart-item-info .qty-tag {
  display: inline-block;
  background: var(--rose-100);
  color: var(--rose-500);
  font-size: 11px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 99px;
}
.cart-item-side {
  display: flex; flex-direction: column;
  align-items: flex-end; justify-content: space-between;
}
.cart-item-price {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
  color: var(--rose-500);
}
.cart-item-remove {
  font-size: 11px;
  color: var(--muted);
  text-decoration: underline;
  letter-spacing: .5px;
}
.cart-item-remove:hover { color: var(--rose-500); }
.cart-empty {
  text-align: center; padding: 60px 20px;
  color: var(--muted);
}
.cart-empty-icon { font-size: 48px; margin-bottom: 14px; opacity: .5; }
.cart-foot {
  padding: 24px;
  border-top: 1px solid var(--line);
  background: white;
}
.cart-total {
  display: flex; justify-content: space-between; align-items: baseline;
  margin-bottom: 16px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.cart-total strong {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--rose-500);
  font-weight: 600;
}
.cart-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
}

/* ====== TOAST ====== */
.toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--ink);
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: var(--shadow-md);
  z-index: 200;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ====== ANIMATIONS ====== */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn .6s ease both; }

/* ====== RESPONSIVE ====== */
@media (max-width: 960px) {
  .nav { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .hero-image { max-width: 380px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 50px; }
  .about-badge { right: 20px; bottom: -20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .modal-grid { grid-template-columns: 1fr; max-height: 92vh; overflow-y: auto; }
  .modal-info { padding: 24px; }
  .modal-title { font-size: 26px; }
}
@media (max-width: 560px) {
  .topbar { font-size: 11px; padding: 7px 14px; }
  .header-inner { padding: 14px 16px; gap: 8px; }
  .logo-script { font-size: 28px; }
  .logo-sub { font-size: 11px; letter-spacing: 2px; }
  .lang-switch { padding: 6px 8px; font-size: 12px; }
  .hero { padding: 50px 0 70px; }
  .hero-cta .btn { padding: 13px 22px; font-size: 12px; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .feature { padding: 10px; }
  .filter { padding: 8px 14px; font-size: 11px; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-panel { max-width: 100%; }
}
