:root {
  --navy: #1f2a44;
  --navy-soft: #2e3b5c;
  --cream: #faf7f2;
  --sand: #f1ebe1;
  --gold: #b8935a;
  --gold-dark: #9a7744;
  --text: #2a2f3a;
  --muted: #6b7180;
  --line: #e4ddd1;
  --white: #ffffff;
  --radius: 14px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--cream); line-height: 1.6; font-size: 16px; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 20px; }
.container--narrow { max-width: 760px; }

h1, h2, h3 { font-family: var(--serif); color: var(--navy); line-height: 1.15; font-weight: 600; }
h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); margin-bottom: 18px; }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 28px; }
h3 { font-size: 1.45rem; margin-bottom: 8px; }
.center { text-align: center; }

.eyebrow { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-dark); font-weight: 700; margin-bottom: 10px; }

/* Бутони */
.btn { display: inline-block; background: var(--navy); color: var(--white); text-decoration: none; padding: 15px 28px; border-radius: 999px; font-weight: 600; border: 2px solid var(--navy); cursor: pointer; font-family: var(--sans); font-size: 1rem; transition: background .2s, transform .2s; text-align: center; }
.btn:hover { background: var(--navy-soft); transform: translateY(-1px); }
.btn--ghost { background: transparent; color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--small { padding: 9px 20px; font-size: .92rem; }
.btn--full { width: 100%; }
.btn--light { background: var(--gold); border-color: var(--gold); color: var(--white); }
.btn--light:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* Топбар и хедър */
.topbar { background: var(--navy); color: #e9e4da; text-align: center; font-size: .85rem; padding: 8px 16px; }
.header { background: rgba(250,247,242,.95); backdrop-filter: blur(8px); position: sticky; top: 0; z-index: 50; border-bottom: 1px solid var(--line); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 20px; }
.logo { display: flex; align-items: center; gap: 8px; font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--navy); text-decoration: none; }
.logo__icon { width: 28px; height: 28px; color: var(--gold); }
.logo--light { color: var(--white); margin-bottom: 8px; }
.nav { display: flex; gap: 28px; }
.nav a { text-decoration: none; color: var(--muted); font-weight: 500; font-size: .95rem; }
.nav a:hover { color: var(--navy); }

/* Hero */
.hero { padding: 56px 0 72px; }
.hero__inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.lead { font-size: 1.15rem; color: var(--muted); margin-bottom: 26px; max-width: 34em; }
.lead strong { color: var(--navy); }
.hero__price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.price { font-family: var(--serif); font-size: 2.6rem; font-weight: 700; color: var(--navy); }
.price__note { color: var(--muted); }
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px; }
.hero__trust { list-style: none; display: flex; flex-wrap: wrap; gap: 8px 22px; font-size: .92rem; color: var(--muted); }
.hero__trust li::before { content: "✓"; color: var(--gold-dark); font-weight: 700; margin-right: 6px; }
.hero__image img { border-radius: 24px; aspect-ratio: 1/1; object-fit: cover; box-shadow: 0 30px 60px -30px rgba(31,42,68,.4); }

/* Секции */
.section { padding: 84px 0; }
.section--alt { background: var(--sand); }
.section--dark { background: var(--navy); color: #e9e4da; }
.section--dark h2 { color: var(--white); }

/* Ползи */
.benefits { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.benefit { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 24px; }
.benefit__icon { width: 48px; height: 48px; border-radius: 50%; background: var(--sand); color: var(--gold-dark); display: grid; place-items: center; font-weight: 700; font-size: 1.2rem; margin-bottom: 16px; }
.benefit p { color: var(--muted); font-size: .95rem; }

/* Продукт */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.gallery__main img { border-radius: 20px; background: var(--white); aspect-ratio: 1/1; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.thumb { border: 2px solid transparent; border-radius: 10px; overflow: hidden; cursor: pointer; background: var(--white); padding: 0; }
.thumb.is-active { border-color: var(--gold); }
.price--big { font-size: 2.4rem; margin-bottom: 14px; }
.product__info > p { color: var(--muted); margin-bottom: 22px; }
.specs { width: 100%; border-collapse: collapse; margin-bottom: 28px; }
.specs th, .specs td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .95rem; }
.specs th { color: var(--muted); font-weight: 500; width: 38%; }
.specs td { color: var(--navy); font-weight: 600; }

/* Оферти */
.offers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; max-width: 960px; margin: 0 auto; }
.offer { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 26px; text-align: center; position: relative; display: flex; flex-direction: column; }
.offer .btn { margin-top: auto; }
.offer--featured { border: 2px solid var(--gold); box-shadow: 0 20px 40px -24px rgba(184,147,90,.6); transform: translateY(-8px); }
.offer__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: .75rem; font-weight: 700; padding: 4px 14px; border-radius: 999px; letter-spacing: .05em; text-transform: uppercase; }
.offer__desc { color: var(--muted); font-size: .95rem; }
.offer__price { font-family: var(--serif); font-size: 2.3rem; font-weight: 700; color: var(--navy); margin: 14px 0 4px; }
.offer__price s { font-size: 1.3rem; color: var(--muted); font-weight: 500; margin-right: 6px; }
.offer__save { color: var(--gold-dark); font-weight: 600; font-size: .9rem; margin-bottom: 18px; }
.offer:not(.offer--featured) .offer__price { margin-bottom: 22px; }

/* Стъпки */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step { text-align: center; padding: 10px 20px; }
.step span { display: inline-grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--navy); color: var(--white); font-weight: 700; font-size: 1.2rem; margin-bottom: 14px; }
.step p { color: var(--muted); }

/* FAQ */
.faq { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; }
.faq summary { padding: 20px 24px; cursor: pointer; font-weight: 600; color: var(--navy); list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; line-height: 1; color: var(--gold-dark); }
.faq[open] summary::after { content: "−"; }
.faq p { padding: 0 24px 22px; color: var(--muted); }

/* Поръчка */
.order { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: start; }
.order__intro p { margin-bottom: 24px; color: #cfc8bb; }
.order__img { border-radius: 20px; opacity: .95; }
.form { background: var(--white); color: var(--text); border-radius: 20px; padding: 32px; display: grid; gap: 16px; }
.form label { display: grid; gap: 6px; font-size: .9rem; font-weight: 600; color: var(--navy); }
.form input[type=text], .form input[type=tel], .form select, .form textarea, .qty input {
  font-family: var(--sans); font-size: 1rem; padding: 12px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--cream); color: var(--text); width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.form input.is-invalid { border-color: #c0392b; background: #fdf1ef; }
.form__products { border: 0; display: grid; gap: 8px; }
.form__products legend { font-weight: 600; color: var(--navy); font-size: .9rem; margin-bottom: 8px; }
.choice { display: flex !important; grid-template-columns: none; align-items: center; gap: 12px !important; border: 1px solid var(--line); border-radius: 10px; padding: 12px 14px; cursor: pointer; font-weight: 400 !important; color: var(--text) !important; }
.choice:has(input:checked) { border-color: var(--gold); background: #fbf6ee; }
.choice input { accent-color: var(--navy); width: 18px; height: 18px; }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.qty { display: flex; width: 150px; }
.qty button { width: 44px; border: 1px solid var(--line); background: var(--sand); font-size: 1.2rem; cursor: pointer; color: var(--navy); }
.qty button:first-child { border-radius: 10px 0 0 10px; }
.qty button:last-child { border-radius: 0 10px 10px 0; }
.qty input { border-radius: 0; text-align: center; -moz-appearance: textfield; }
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; }
.form__total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--line); padding-top: 16px; }
.form__total strong { font-family: var(--serif); font-size: 2rem; color: var(--navy); }
.form__hint { font-size: .85rem; color: var(--muted); margin-top: -12px; }
.consent { display: flex !important; align-items: flex-start; gap: 10px !important; font-weight: 400 !important; font-size: .85rem !important; color: var(--muted) !important; }
.consent input { margin-top: 3px; accent-color: var(--navy); }
.form__error { color: #c0392b; font-size: .9rem; font-weight: 600; }
.thanks { background: var(--white); color: var(--text); border-radius: 20px; padding: 48px 32px; text-align: center; }
.thanks h2 { color: var(--navy) !important; margin-bottom: 12px; }

/* Футър */
.footer { background: #161e33; color: #a9a497; padding: 56px 0 90px; font-size: .92rem; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; }
.footer strong { color: var(--white); }
.footer a { color: #a9a497; }
.footer__copy { text-align: center; margin-top: 40px; font-size: .8rem; }

/* Лепкав бутон (мобилен) */
.sticky-cta { display: none; }

/* Адаптивност */
@media (max-width: 960px) {
  .hero__inner, .product, .order { grid-template-columns: 1fr; gap: 36px; }
  .hero__image { order: -1; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .nav { display: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .hero { padding: 28px 0 48px; }
  .section { padding: 60px 0; }
  .benefits, .offers, .steps, .form__grid, .footer__inner { grid-template-columns: 1fr; }
  .offer--featured { transform: none; order: -1; }
  .form { padding: 22px; }
  .hero__cta .btn { width: 100%; }
  .sticky-cta { display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; background: var(--white); border-top: 1px solid var(--line); padding: 10px 16px; align-items: center; justify-content: space-between; gap: 12px; box-shadow: 0 -8px 24px -12px rgba(0,0,0,.2); font-size: .9rem; }
  .topbar { font-size: .75rem; }
}
