/* Ritual of Yozakura — синьо-фіолетова палітра (перше фото) */
:root {
  --bg-deep: #1a0b18;
  --bg-plum: #2d0a31;
  --bg-section: linear-gradient(160deg, #1a001a 0%, #351338 45%, #2d0a31 100%);
  --accent-magenta: #d81b9c;
  --accent-magenta-hover: #ff2fc4;
  --accent-soft: #f2c1d1;
  --text-on-dark: #ffffff;
  --text-muted: #c9b8d4;
  --gold-glow: 0 0 28px rgba(216, 27, 156, 0.45);
  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --radius: 12px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-on-dark);
  background: var(--bg-deep);
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--accent-magenta-hover);
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.25;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 48px);
  background: rgba(26, 11, 24, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(216, 27, 156, 0.2);
}

.brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-on-dark);
}

.brand span {
  color: var(--accent-magenta);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
}

.nav-main a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.nav-main a:hover,
.nav-main a[aria-current="page"] {
  color: var(--accent-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(242, 193, 209, 0.25);
  background: rgba(45, 10, 49, 0.6);
  color: var(--text-on-dark);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.btn-icon:hover {
  border-color: var(--accent-magenta);
  box-shadow: var(--gold-glow);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #c74b91, var(--accent-magenta));
  color: #fff;
  box-shadow: var(--gold-glow);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-magenta), var(--accent-magenta-hover));
  box-shadow: 0 0 36px rgba(255, 47, 196, 0.55);
}

.btn-secondary {
  background: transparent;
  color: var(--accent-soft);
  border: 1px solid rgba(242, 193, 209, 0.5);
}

.btn-secondary:hover {
  border-color: var(--accent-magenta);
  color: #fff;
}

/* --- Hero full screen --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-h) + 32px) 24px 48px;
  background: #120610 center / cover no-repeat;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../assets/hero-banner.png");
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(26, 0, 26, 0.75) 0%,
    rgba(26, 0, 51, 0.45) 40%,
    rgba(46, 8, 84, 0.55) 100%
  );
  z-index: -1;
}

.hero-inner {
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 16px;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-soft);
  border: 1px solid rgba(216, 27, 156, 0.4);
  border-radius: 999px;
  background: rgba(26, 11, 24, 0.5);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  margin: 0 0 20px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.6);
}

.hero p {
  margin: 0 0 32px;
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-inline: auto;
}

/* --- Sections --- */
.section {
  padding: clamp(56px, 8vw, 96px) clamp(16px, 5vw, 48px);
  background: var(--bg-section);
}

.section-alt {
  background: linear-gradient(180deg, #1a001a 0%, #261028 50%, #1a0b18 100%);
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  text-align: center;
  margin: 0 0 12px;
}

.section-lead {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 0.98rem;
}

/* --- Editorial / blog block (home) --- */
.editorial-section {
  background: linear-gradient(180deg, #1e0a22 0%, #150818 100%);
  border-top: 1px solid rgba(216, 27, 156, 0.2);
}

.editorial-inner {
  max-width: 640px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.editorial-header {
  text-align: center;
  margin-bottom: clamp(28px, 4vw, 40px);
}

.editorial-title {
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  margin: 0 0 18px;
  line-height: 1.3;
  text-wrap: balance;
}

.editorial-dek {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  text-align: left;
}

.editorial-figure {
  margin: 0 0 clamp(32px, 5vw, 44px);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(216, 27, 156, 0.25);
  background: #0d070c;
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
}

.editorial-figure img {
  width: 100%;
  height: auto;
  display: block;
}

.editorial-figure figcaption {
  padding: 14px 18px 18px;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(201, 184, 212, 0.75);
  background: rgba(26, 11, 24, 0.65);
  border-top: 1px solid rgba(216, 27, 156, 0.12);
}

.editorial-body {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.editorial-body p {
  margin: 0 0 1.25em;
}

.editorial-body strong {
  color: var(--accent-soft);
  font-weight: 600;
}

.editorial-body em {
  color: #e8d4e3;
  font-style: normal;
  font-weight: 500;
}

.editorial-disclaimer {
  margin-top: 1.75em;
  padding: 16px 18px;
  font-size: 0.82rem;
  line-height: 1.5;
  border-radius: 8px;
  border: 1px solid rgba(242, 193, 209, 0.2);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(201, 184, 212, 0.85);
}

/* --- Stories: model personas (demó történetek) --- */
.stories-section {
  overflow: hidden;
}

#modellek-tortenetek {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.stories-section .section-disclaimer-models {
  max-width: 720px;
  margin: -28px auto 36px;
  padding: 0 clamp(16px, 4vw, 48px);
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(201, 184, 212, 0.65);
  text-align: center;
}

.stories-grid {
  display: grid;
  gap: clamp(22px, 3.5vw, 32px);
  max-width: 1180px;
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 48px);
}

@media (min-width: 720px) {
  .stories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1100px) {
  .stories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.story-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(216, 27, 156, 0.22);
  background: rgba(45, 10, 49, 0.28);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.story-card__photo {
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #120510;
}

.story-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-card__body {
  padding: clamp(16px, 3vw, 20px);
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.story-card__name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0;
  color: var(--text-on-dark);
}

.story-card__meta {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent-magenta);
}

.story-card__subhead {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-soft);
}

.story-card__text {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.62;
  color: var(--text-muted);
}

.story-card__body .story-card__text + .story-card__subhead {
  margin-top: 6px;
}

.grid-2 {
  display: grid;
  gap: 48px;
  align-items: center;
  max-width: 1120px;
  margin-inline: auto;
}

@media (min-width: 900px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.highlight-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(216, 27, 156, 0.25);
  background: rgba(45, 10, 49, 0.35);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.highlight-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.highlight-body {
  padding: 28px;
}

.highlight-body h3 {
  margin: 0 0 8px;
  font-size: 1.5rem;
}

.price-tag {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-soft);
  letter-spacing: 0.02em;
}

.price-tag small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* --- Footer --- */
.site-footer {
  padding: 48px clamp(16px, 4vw, 48px) 120px;
  background: #120510;
  border-top: 1px solid rgba(216, 27, 156, 0.15);
}

.footer-grid {
  display: grid;
  gap: 32px;
  max-width: 960px;
  margin-inline: auto;
}

@media (min-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted);
}

.footer-links a:hover {
  color: var(--accent-soft);
}

.footer-copy {
  margin-top: 32px;
  font-size: 0.82rem;
  color: rgba(201, 184, 212, 0.55);
  text-align: center;
}

/* --- Cookie banner --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px clamp(16px, 4vw, 48px);
  background: rgba(18, 5, 16, 0.97);
  border-top: 1px solid rgba(216, 27, 156, 0.35);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.5);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 960px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.cookie-inner p {
  flex: 1 1 280px;
  margin: 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions .btn {
  padding: 10px 20px;
  font-size: 0.85rem;
}

/* --- Product page --- */
.product-article {
  padding-bottom: clamp(56px, 8vw, 96px);
}

.product-layout {
  max-width: 1100px;
  margin-inline: auto;
  padding: calc(var(--header-h) + 32px) clamp(16px, 4vw, 48px) clamp(36px, 5vw, 56px);
  display: grid;
  gap: 40px;
}

@media (min-width: 900px) {
  .product-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.product-gallery-main {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(216, 27, 156, 0.3);
  background: #0d050c;
}

.product-gallery-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.product-article-body {
  max-width: 760px;
  margin: 0 auto clamp(40px, 6vw, 64px);
  padding: 0 clamp(16px, 4vw, 48px);
  font-size: 1rem;
  color: var(--text-muted);
}

.product-article-body p {
  margin: 0 0 1.1em;
}

.product-article-body p:last-child {
  margin-bottom: 0;
}

.product-subgallery {
  max-width: 1100px;
  margin: 0 auto clamp(48px, 7vw, 72px);
  padding: 0 clamp(16px, 4vw, 48px);
  display: grid;
  gap: clamp(20px, 3vw, 28px);
}

@media (min-width: 700px) {
  .product-subgallery {
    grid-template-columns: 1fr 1fr;
  }
}

.product-subgallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(216, 27, 156, 0.28);
  background: rgba(45, 10, 49, 0.25);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.product-subgallery__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.product-subgallery__item figcaption {
  padding: 14px 16px 18px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
  border-top: 1px solid rgba(216, 27, 156, 0.12);
}

.product-benefits {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(36px, 5vw, 48px) clamp(20px, 4vw, 40px);
  border-radius: var(--radius);
  background: rgba(216, 27, 156, 0.07);
  border: 1px solid rgba(216, 27, 156, 0.22);
}

.product-benefits h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  margin: 0 0 12px;
}

.product-benefits__lead {
  margin: 0 0 24px;
  color: var(--text-muted);
  font-size: 0.96rem;
}

.product-benefits__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-benefits__list li {
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.55;
}

.product-benefits__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-magenta);
  box-shadow: 0 0 10px rgba(216, 27, 156, 0.7);
}

.product-benefits__list strong {
  color: var(--accent-soft);
  font-weight: 600;
}

.product-benefits__note {
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(216, 27, 156, 0.15);
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.product-info h1 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 0 0 8px;
}

.product-info#megrendeles {
  scroll-margin-top: calc(var(--header-h) + 16px);
}

.product-meta {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-info .price-tag {
  font-size: 1.75rem;
  margin-bottom: 24px;
  display: block;
}

.product-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.purchase-form {
  margin-top: 8px;
  margin-bottom: 8px;
  padding: clamp(22px, 4vw, 28px);
  border-radius: var(--radius);
  border: 1px solid rgba(216, 27, 156, 0.28);
  background: rgba(26, 11, 24, 0.45);
}

.purchase-form__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 6px;
}

.purchase-form__hint {
  margin: 0 0 22px;
  font-size: 0.84rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.purchase-form__field {
  margin-bottom: 16px;
}

.purchase-form__field label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-soft);
}

.purchase-form__field input,
.purchase-form__field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(242, 193, 209, 0.35);
  background: rgba(45, 10, 49, 0.45);
  color: var(--text-on-dark);
  font-family: inherit;
  font-size: 0.92rem;
}

.purchase-form__field input:focus,
.purchase-form__field textarea:focus {
  outline: none;
  border-color: var(--accent-magenta);
  box-shadow: 0 0 0 2px rgba(216, 27, 156, 0.22);
}

.purchase-form__field textarea {
  resize: vertical;
  min-height: 88px;
}

.purchase-form__error {
  min-height: 1.15em;
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: #ff8ab5;
}

.purchase-form__submit {
  width: 100%;
  margin-top: 8px;
}

.order-success-screen {
  position: fixed;
  inset: 0;
  z-index: 450;
  display: grid;
  place-items: center;
  padding: clamp(20px, 5vw, 48px);
  background: linear-gradient(145deg, rgba(26, 0, 26, 0.97) 0%, rgba(18, 5, 16, 0.98) 50%, rgba(46, 8, 84, 0.95) 100%);
  backdrop-filter: blur(10px);
  text-align: center;
}

.order-success-screen[hidden] {
  display: none;
}

.order-success-screen__inner {
  max-width: 520px;
  padding: clamp(28px, 5vw, 44px);
  border-radius: var(--radius);
  border: 1px solid rgba(216, 27, 156, 0.4);
  background: rgba(45, 10, 49, 0.55);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55), var(--gold-glow);
}

.order-success-screen__title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 4.5vw, 2.35rem);
  margin: 0 0 20px;
  line-height: 1.25;
  text-wrap: balance;
}

.order-success-screen__text {
  margin: 0 0 28px;
  font-size: clamp(1rem, 2.8vw, 1.15rem);
  line-height: 1.65;
  color: var(--text-muted);
}

.order-success-screen__btn {
  min-width: 200px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.qty-row input {
  width: 56px;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid rgba(242, 193, 209, 0.35);
  background: rgba(45, 10, 49, 0.5);
  color: #fff;
  font-family: inherit;
  text-align: center;
}

.ingredients {
  margin-top: 32px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(216, 27, 156, 0.08);
  border: 1px solid rgba(216, 27, 156, 0.2);
}

.ingredients h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.ingredients ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* --- Cart page --- */
.cart-page {
  max-width: 720px;
  margin-inline: auto;
  padding: calc(var(--header-h) + 32px) clamp(16px, 4vw, 48px) 100px;
}

.cart-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(216, 27, 156, 0.15);
}

.cart-item img {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(216, 27, 156, 0.25);
}

.cart-empty {
  text-align: center;
  color: var(--text-muted);
  padding: 48px 0;
}

.cart-total {
  margin-top: 24px;
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}

/* --- Policy pages --- */
.policy-page {
  max-width: 720px;
  margin-inline: auto;
  padding: calc(var(--header-h) + 40px) clamp(16px, 4vw, 48px) 100px;
}

.policy-page h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}

.policy-page h2 {
  font-size: 1.15rem;
  margin-top: 28px;
}

.policy-page p,
.policy-page li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.policy-page ul {
  padding-left: 1.2rem;
}

/* --- Callback modal (Hungarian phone) --- */
.callback-modal {
  position: fixed;
  inset: 0;
  z-index: 350;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.callback-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.callback-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 3, 10, 0.82);
  backdrop-filter: blur(6px);
}

.callback-modal__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: clamp(22px, 4vw, 30px);
  border-radius: var(--radius);
  border: 1px solid rgba(216, 27, 156, 0.35);
  background: linear-gradient(165deg, #2d0a31 0%, #1a0b18 100%);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65), var(--gold-glow);
}

.callback-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
}

.callback-modal__title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  margin: 0 40px 8px 0;
  line-height: 1.25;
}

.callback-modal__hint {
  margin: 0 0 22px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.45;
}

.callback-modal__group {
  margin-bottom: 16px;
}

.callback-modal__group label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-soft);
}

.callback-modal__group input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid rgba(242, 193, 209, 0.35);
  background: rgba(26, 11, 24, 0.85);
  color: var(--text-on-dark);
  font-family: inherit;
  font-size: 0.95rem;
}

.callback-modal__group input:focus {
  outline: none;
  border-color: var(--accent-magenta);
  box-shadow: 0 0 0 2px rgba(216, 27, 156, 0.25);
}

.callback-modal__error {
  min-height: 1.25em;
  margin: 4px 0 0;
  font-size: 0.78rem;
  color: #ff8ab5;
}

.callback-modal__actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.callback-modal__actions .btn {
  flex: 1;
  min-width: 130px;
}

.callback-modal__success {
  text-align: center;
  padding: 12px 0 4px;
}

.callback-modal__success p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--accent-soft);
}

.callback-modal__success .btn {
  width: 100%;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
