:root {
  --purple:       #B5179E;
  --purple-dark:  #8f1280;
  --purple-deep:  #1a0a1e;
  --purple-mid:   #2d0a28;
  --purple-light: #fce8f7;
  --purple-soft:  #f0c8ec;
  --accent:       #d44bbf;
  --accent-light: #e88ad8;
  --cream:        #fdfaff;
  --white:        #ffffff;
  --text:         #1a0a1e;
  --text-mid:     #6b2060;
  --text-light:   #b070a8;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --radius:    4px;
  --radius-lg: 12px;
  --shadow:    0 2px 20px rgba(181,23,158,0.08);
  --shadow-lg: 0 8px 40px rgba(181,23,158,0.16);
  --nav-h: 68px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--text); background: var(--cream); line-height: 1.6; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.eyebrow { font-family: var(--font-body); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--purple); margin-bottom: 12px; }
.text-center { text-align: center; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 300; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; }
h3 { font-size: 1.5rem; margin-bottom: 8px; }
em { font-style: italic; color: var(--accent); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; font-family: var(--font-body); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; border-radius: var(--radius); transition: all 0.22s ease; cursor: pointer; white-space: nowrap; }
.btn--primary { background: var(--purple); color: var(--white); border: 1.5px solid var(--purple); }
.btn--primary:hover { background: var(--purple-dark); border-color: var(--purple-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(181,23,158,0.3); }
.btn--ghost { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn--ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn--small { padding: 9px 18px; font-size: 0.75rem; background: var(--purple); color: var(--white); border: 1.5px solid var(--purple); }
.btn--small:hover { background: var(--purple-dark); transform: translateY(-1px); }
.btn--whatsapp { background: #25D366; color: var(--white); border: 1.5px solid #25D366; padding: 12px 24px; font-size: 0.82rem; }
.btn--whatsapp:hover { background: #20bd5a; transform: translateY(-1px); }
.btn--full { width: 100%; justify-content: center; }

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; height: var(--nav-h); background: transparent; transition: background 0.3s, box-shadow 0.3s; }
.nav.scrolled { background: var(--purple-deep); box-shadow: 0 2px 20px rgba(26,10,30,0.3); }
.nav__inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 100%; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; }
.nav__logo img { height: 40px; width: auto; filter: brightness(0) invert(1); transition: opacity 0.2s; }
.nav__logo img:hover { opacity: 0.85; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.85); transition: color 0.2s; }
.nav__links a:hover { color: var(--white); }
.nav__cta { background: var(--purple) !important; color: var(--white) !important; padding: 9px 20px; border-radius: var(--radius); }
.nav__cta:hover { background: var(--purple-dark) !important; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.25s; }

.hero { min-height: 100vh; background: linear-gradient(135deg, var(--purple-deep) 0%, #2d0a28 50%, #5a1050 100%); display: flex; align-items: center; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(255,255,255,0.012) 2px, rgba(255,255,255,0.012) 4px); pointer-events: none; }
.hero__overlay { position: absolute; inset: 0; background: radial-gradient(ellipse at 70% 50%, rgba(181,23,158,0.25) 0%, transparent 60%); }
.hero__content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 0 24px; padding-top: var(--nav-h); animation: fadeUp 0.9s ease both; }
.hero__eyebrow { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 20px; }
.hero__title { color: var(--white); margin-bottom: 24px; max-width: 640px; }
.hero__title em { color: var(--purple-soft); }
.hero__sub { font-size: 1.05rem; color: rgba(255,255,255,0.72); max-width: 500px; line-height: 1.7; margin-bottom: 40px; }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 10px; color: rgba(255,255,255,0.4); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent); animation: scrollPulse 1.8s ease-in-out infinite; }

.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.about__text p { color: var(--text-mid); margin-bottom: 16px; line-height: 1.75; }
.about__badge { display: flex; gap: 14px; align-items: flex-start; margin-top: 28px; padding: 20px; background: var(--purple-light); border-radius: var(--radius-lg); border-left: 3px solid var(--purple); }
.about__badge span { font-size: 1.5rem; flex-shrink: 0; }
.about__badge p { margin: 0; color: var(--text); font-size: 0.92rem; }
.about__values { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.value-card { padding: 24px; border: 1px solid rgba(181,23,158,0.12); border-radius: var(--radius-lg); background: var(--cream); transition: box-shadow 0.2s, transform 0.2s; }
.value-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.value-card__icon { display: block; color: var(--purple); font-size: 1.1rem; margin-bottom: 10px; }
.value-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

.shop { background: var(--cream); }
.shop__intro { color: var(--text-mid); max-width: 480px; margin: 0 auto 56px; }
.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 40px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); transition: transform 0.25s, box-shadow 0.25s; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card__img { position: relative; aspect-ratio: 4/3; background: linear-gradient(135deg, var(--purple-light), var(--purple-soft)); display: flex; align-items: center; justify-content: center; overflow: hidden; }
.product-card__img img { width: 100%; height: 100%; object-fit: cover; }
.product-card__placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; }
.product-card__placeholder span { font-size: 4rem; opacity: 0.4; }
.product-card__badge { position: absolute; top: 14px; left: 14px; background: var(--purple); color: var(--white); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }
.product-card__badge--accent { background: var(--accent); }
.product-card__body { padding: 24px; }
.product-card__body h3 { font-size: 1.25rem; margin-bottom: 8px; }
.product-card__body p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.65; margin-bottom: 20px; }
.product-card__footer { display: flex; align-items: center; justify-content: space-between; }
.product-card__price { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--purple); }
.shop__note { padding: 20px; background: var(--purple-light); border-radius: var(--radius-lg); font-size: 0.92rem; color: var(--text-mid); font-weight: 500; }

.order { background: var(--purple-deep); }
.order__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.order__intro .eyebrow { color: var(--accent-light); }
.order__intro h2 { color: var(--white); }
.order__intro h2 em { color: var(--purple-soft); }
.order__intro > p { color: rgba(255,255,255,0.7); margin-bottom: 28px; line-height: 1.75; }
.order__perks { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.order__perks li { font-size: 0.9rem; color: rgba(255,255,255,0.75); display: flex; gap: 8px; }
.order__whatsapp p { font-size: 0.85rem; color: rgba(255,255,255,0.5); margin-bottom: 12px; }
.order__form-wrap { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.order-form h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--purple-deep); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mid); margin-bottom: 7px; }
.form-group .optional { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--text-light); }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid rgba(181,23,158,0.15); border-radius: var(--radius); font-size: 0.95rem; color: var(--text); background: var(--cream); transition: border-color 0.2s, box-shadow 0.2s; resize: vertical; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(181,23,158,0.12); background: var(--white); }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b2060' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.form-payment-note { font-size: 0.82rem; color: var(--text-mid); margin-bottom: 20px; padding: 12px 14px; background: var(--purple-light); border-radius: var(--radius); }
.form-success { display: none; align-items: center; gap: 12px; margin-top: 16px; padding: 16px; background: #f0faf4; border: 1px solid #a8d5b5; border-radius: var(--radius); color: #1a6b3a; font-size: 0.9rem; }
.form-success span { font-size: 1.4rem; flex-shrink: 0; }
.form-success.visible { display: flex; }

.faq { background: var(--white); }
.faq__inner { max-width: 720px; margin: 0 auto; }
.faq__inner h2 { margin-bottom: 48px; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-bottom: 1px solid rgba(181,23,158,0.1); }
.faq__item:first-child { border-top: 1px solid rgba(181,23,158,0.1); }
.faq__q { width: 100%; text-align: left; padding: 20px 0; font-size: 1rem; font-weight: 500; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.faq__q::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--purple); flex-shrink: 0; transition: transform 0.25s; }
.faq__q[aria-expanded="true"] { color: var(--purple); }
.faq__q[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq__a.open { max-height: 300px; padding-bottom: 20px; }
.faq__a p { color: var(--text-mid); line-height: 1.75; font-size: 0.95rem; }
.faq__a a { color: var(--purple); text-decoration: underline; }

.contact { background: var(--cream); }
.contact__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 72px; align-items: start; }
.contact__info > p { color: var(--text-mid); margin-bottom: 32px; line-height: 1.75; }
.contact__details { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.contact__details li { display: flex; align-items: center; gap: 12px; font-size: 0.95rem; }
.contact__details li span { font-size: 1.1rem; }
.contact__details a { color: var(--text); transition: color 0.2s; }
.contact__details a:hover { color: var(--purple); }
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-form h3 { color: var(--purple-deep); margin-bottom: 24px; }

.footer { background: var(--purple-deep); color: rgba(255,255,255,0.75); }
.footer__inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 48px; padding-top: 60px; padding-bottom: 48px; }
.footer__logo-img { height: 36px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; margin-bottom: 14px; display: block; }
.footer__brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 6px; }
.footer__heading { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent-light); margin-bottom: 16px; }
.footer__links, .footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__links a, .footer__contact a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer__links a:hover, .footer__contact a:hover { color: var(--white); }
.footer__contact p { font-size: 0.85rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 24px; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 90; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.whatsapp-float::before { content: ''; position: absolute; inset: -4px; border-radius: 50%; border: 2px solid rgba(37,211,102,0.3); animation: ripple 2s ease-out infinite; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes scrollPulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 0.8; } }
@keyframes ripple { 0% { opacity: 0.6; transform: scale(1); } 100% { opacity: 0; transform: scale(1.5); } }
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .about__grid, .order__grid, .contact__grid { grid-template-columns: 1fr; gap: 48px; }
  .products { grid-template-columns: 1fr 1fr; }
  .about__values { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav__links { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--purple-deep); flex-direction: column; align-items: flex-start; padding: 24px; gap: 20px; box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }
  .hero__actions { flex-direction: column; }
  .products { grid-template-columns: 1fr; }
  .about__values { grid-template-columns: 1fr; }
  .order__form-wrap { padding: 24px; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
/* DISCOUNT CARD */
.discount-card { display: grid; grid-template-columns: 1fr 1fr; gap: 0; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); margin-bottom: 40px; border: 2px solid var(--purple-light); }
.discount-card__img { aspect-ratio: 4/3; overflow: hidden; }
.discount-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.discount-card__body { padding: 36px; display: flex; flex-direction: column; justify-content: center; gap: 16px; }
.discount-card__tag { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--purple); }
.discount-card__body h3 { font-family: var(--font-display); font-size: 1.6rem; color: var(--text); margin: 0; }
.discount-card__body p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.75; margin: 0; }
.discount-card__pricing { display: flex; align-items: center; gap: 20px; padding: 16px; background: var(--purple-light); border-radius: var(--radius); }
.discount-card__price-block { display: flex; flex-direction: column; gap: 4px; }
.discount-card__label { font-size: 0.72rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
.discount-card__old { font-family: var(--font-display); font-size: 1.2rem; color: var(--text-light); text-decoration: line-through; }
.discount-card__new { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--purple); }
.discount-card__divider { font-size: 1.2rem; color: var(--purple); font-weight: 300; }
@media (max-width: 640px) {
  .discount-card { grid-template-columns: 1fr; }
  .discount-card__body { padding: 24px; }
}