*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html, body { overflow-x: hidden; }

:root {
  --bg: #fff8ef;
  --cream: #fbf3ea;
  --beige: #ead7c5;
  --brown: #3f2418;
  --soft-brown: #75543f;
  --rose: #c35f72;
  --rose-text: #a13d52;
  --tg-text: #1f6664;
  --rose-soft: #f3d0d1;
  --lavender: #d9c8ec;
  --tg: #2f918f;
  --tg-hover: #257977;
  --border: rgba(120, 80, 60, 0.12);
  --shadow-sm: 0 2px 8px rgba(80, 50, 30, 0.06);
  --shadow-md: 0 8px 28px rgba(80, 50, 30, 0.10);
  --shadow-lg: 0 18px 50px rgba(80, 50, 30, 0.16);
  --radius: 18px;
  --radius-lg: 28px;
  --radius-xl: 36px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

html { scroll-behavior: smooth; }

/* === Animations === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
@keyframes shimmer {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 8px 18px rgba(195, 95, 114, 0.25); }
  50%      { box-shadow: 0 12px 28px rgba(195, 95, 114, 0.45); }
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
@keyframes spinSlow {
  from { transform: rotate(0); }
  to   { transform: rotate(360deg); }
}
@keyframes blobMove {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(20px, -15px) scale(1.05); }
  66%      { transform: translate(-15px, 10px) scale(.97); }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"].in-view { transition-delay: .08s; }
.reveal[data-delay="2"].in-view { transition-delay: .16s; }
.reveal[data-delay="3"].in-view { transition-delay: .24s; }
.reveal[data-delay="4"].in-view { transition-delay: .32s; }
.reveal[data-delay="5"].in-view { transition-delay: .40s; }
.reveal[data-delay="6"].in-view { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

:focus-visible { outline: 2px solid var(--rose); outline-offset: 2px; border-radius: inherit; }
.btn:focus-visible, .icon-btn:focus-visible, .fav:focus-visible,
.product-cta:focus-visible, .cat-card:focus-visible,
.product-card a:focus-visible, .main-nav a:focus-visible {
  outline: 3px solid var(--brown);
  outline-offset: 3px;
}

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--brown);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
ul { list-style: none; }

.container {
  width: min(1480px, calc(100% - 80px));
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform .15s ease, background .2s ease, color .2s ease, box-shadow .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 8px 18px rgba(195, 95, 114, 0.25);
}
.btn-primary:hover { background: #b14f63; }

.btn-tg {
  background: var(--tg);
  color: #fff;
  box-shadow: 0 8px 18px rgba(47, 145, 143, 0.22);
}
.btn-tg:hover { background: var(--tg-hover); }

.btn-outline {
  background: #fff;
  color: var(--brown);
  border-color: var(--border);
}
.btn-outline:hover { background: var(--cream); }

.btn-large { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.icon-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--brown);
  transition: background .2s ease;
}
.icon-btn:hover { background: var(--cream); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 239, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 92px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}
.brand-logo {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}
.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -.005em;
}
.brand-tag {
  font-size: 13px;
  color: var(--soft-brown);
  letter-spacing: .02em;
}

.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul {
  display: flex;
  gap: 32px;
}
.main-nav a {
  font-size: 15px;
  color: var(--brown);
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
  transition: color .2s ease;
}
.main-nav a:hover { color: var(--rose); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.header-cta { padding: 14px 24px; font-size: 15px; border-radius: 999px; }

.burger { display: none; flex-direction: column; gap: 4px; }
.burger span {
  width: 22px; height: 2px; background: var(--brown); border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.mobile-menu {
  display: none;
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 16px 24px 24px;
}
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 16px;
}
.mobile-menu a {
  padding: 14px 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--brown);
}
.mobile-menu a:hover { background: var(--cream); }
.mobile-menu .btn { margin-top: 8px; }
.mobile-menu.open { display: block; }

.hero {
  padding: 32px 0 0;
}
.hero-grid {
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, #f6e6d6 50%, #f3e3d2 100%);
  background-size: 200% 200%;
  animation: gradientShift 18s ease-in-out infinite;
  border-radius: 32px;
  border: 1px solid var(--border);
  overflow: hidden;
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 480px;
  box-shadow: var(--shadow-md);
}
.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.hero-grid::before {
  width: 380px; height: 380px;
  top: -120px; left: -80px;
  background: radial-gradient(circle, rgba(243, 208, 209, .65), transparent 70%);
  animation: blobMove 14s ease-in-out infinite;
}
.hero-grid::after {
  width: 420px; height: 420px;
  bottom: -160px; left: 20%;
  background: radial-gradient(circle, rgba(217, 200, 236, .55), transparent 70%);
  animation: blobMove 18s ease-in-out infinite reverse;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 64px 64px 64px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-title { animation: fadeUp .9s cubic-bezier(.2,.8,.2,1) both; }
.hero-sub { animation: fadeUp .9s .12s cubic-bezier(.2,.8,.2,1) both; }
.hero-actions { animation: fadeUp .9s .24s cubic-bezier(.2,.8,.2,1) both; }
.hero-bullets { animation: fadeUp .9s .36s cubic-bezier(.2,.8,.2,1) both; }
.hero-image { animation: fadeIn 1.1s .1s ease both; }
.hero-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(44px, 5.2vw, 76px);
  line-height: 1.02;
  color: var(--brown);
  letter-spacing: -.015em;
}
.hero-title .accent { color: var(--rose); font-style: italic; font-weight: 500; }
.hero-sub {
  margin-top: 22px;
  font-size: 19px;
  line-height: 1.45;
  color: var(--soft-brown);
  max-width: 520px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hero-actions .btn { height: 56px; padding: 0 30px; font-size: 16px; }
.hero-bullets {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.hero-bullets li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
  border-left: 2px solid var(--rose-soft);
}
.hero-bullets strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--brown);
}
.hero-bullets span {
  font-size: 14px;
  color: var(--soft-brown);
}

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 243, 234, 0.85) 0%, rgba(251, 243, 234, 0) 18%);
  z-index: 1;
  pointer-events: none;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  display: block;
}

.section {
  padding: 72px 0;
  position: relative;
}
#categories.section { padding-top: 48px; padding-bottom: 0; }
#products.section { padding-top: 80px; }
.section-soft {
  background: transparent;
}
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.section-head.center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  margin-bottom: 48px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.4vw, 44px);
  font-weight: 600;
  color: var(--brown);
  letter-spacing: -.005em;
}
.section-title.light { color: #fff; }
.section-link {
  font-size: 14px;
  color: var(--rose-text);
  font-weight: 600;
  transition: color .2s ease;
}
.section-link:hover { color: #7d2d40; }
.section-lead {
  font-size: 16px;
  color: var(--soft-brown);
  max-width: 520px;
}
.lead.light { color: rgba(255,255,255,.85); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.cat-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  height: 140px;
  background: var(--cream);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform .25s ease, box-shadow .25s ease;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.cat-img {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.cat-card:hover .cat-img img { transform: scale(1.06); }
.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(63,36,24,.18) 100%);
}
.cat-pill {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(255, 248, 239, 0.96);
  color: var(--brown);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  z-index: 1;
  box-shadow: var(--shadow-sm);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.product-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.product-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--cream);
}
.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.product-card:hover .product-img img { transform: scale(1.04); }
.fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: background .2s ease, color .2s ease;
}
.fav:hover { background: var(--rose); color: #fff; }
.product-body {
  padding: 14px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.product-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.2;
}
.product-sub {
  font-size: 12.5px;
  color: var(--soft-brown);
  min-height: 16px;
}
.product-price {
  margin-top: 8px;
  color: var(--rose-text);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.005em;
}

.benefits {
  background: var(--cream);
  overflow: hidden;
}
.benefits-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.benefits-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
}
.benefits .container { position: relative; z-index: 1; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.benefit {
  background: rgba(255, 248, 239, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: left;
  transition: transform .25s ease, box-shadow .25s ease;
}
.benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--rose-soft);
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.benefit h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}
.benefit p {
  font-size: 14px;
  color: var(--soft-brown);
  line-height: 1.5;
}

.telegram {
  position: relative;
  overflow: hidden;
  color: var(--brown);
  background: linear-gradient(135deg, var(--cream) 0%, #f1e6f3 55%, #f9d9de 100%);
}
.telegram-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.telegram-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .12;
  mix-blend-mode: multiply;
}
.telegram::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 248, 239, .55) 0%, rgba(217, 200, 236, .25) 60%, rgba(243, 208, 209, .35) 100%);
  z-index: 1;
}
.telegram-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.telegram-text { padding: 24px 0; }
.telegram-text .section-title { color: var(--brown); }
.telegram-text .lead {
  margin: 18px 0 28px;
  font-size: 17px;
  max-width: 460px;
  color: var(--soft-brown);
}
.telegram-text .btn-tg {
  background: var(--tg);
  color: #fff;
}
.telegram-text .btn-tg:hover { background: var(--tg-hover); color: #fff; }

.tg-card {
  background: #fff;
  color: var(--brown);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow-lg);
  max-width: 440px;
  margin-left: auto;
  width: 100%;
}
.tg-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.tg-avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  flex-shrink: 0;
}
.tg-avatar img { width: 100%; height: 100%; object-fit: cover; }
.tg-meta { display: flex; flex-direction: column; line-height: 1.25; }
.tg-name { font-family: var(--serif); font-size: 19px; font-weight: 600; }
.tg-sub { font-size: 13px; color: var(--soft-brown); }
.tg-followers { font-size: 12px; color: var(--tg-text); margin-top: 4px; font-weight: 600; }
.tg-msg {
  margin-top: 16px;
  background: var(--cream);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 15px;
}
.tg-msg p + p { margin-top: 4px; }
.tg-msg-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 10px;
  font-size: 12px;
  color: var(--soft-brown);
}
.tg-views {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.trust-strip {
  padding: 48px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-item strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--brown);
}
.trust-item span {
  font-size: 13px;
  color: var(--soft-brown);
}

.site-footer {
  padding: 32px 0 40px;
  background: var(--bg);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--soft-brown);
}
.site-footer a:hover { color: var(--rose); }

@media (max-width: 1399px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .product-img { height: 220px; }
}

@media (max-width: 1199px) {
  .container { width: min(1480px, calc(100% - 48px)); }
  .main-nav ul { gap: 22px; }
  .main-nav a { font-size: 14px; }
  .hero-content { padding: 48px 40px; }
  .hero-title { font-size: clamp(38px, 5vw, 56px); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .main-nav { display: none; }
  .burger { display: flex; }
  .header-cta { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .telegram-grid { grid-template-columns: 1fr; gap: 32px; }
  .tg-card { margin: 0 auto; }
}

@media (max-width: 767px) {
  .container { width: calc(100% - 32px); }
  .header-inner { height: 72px; gap: 8px; }
  .brand-logo { width: 44px; height: 44px; }
  .brand-name { font-size: 18px; }
  .brand-tag { font-size: 11px; }

  .hero { padding: 16px 0; }
  .hero-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
    min-height: 0;
  }
  .hero-content { padding: 32px 24px 28px; }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 15px; }
  .hero-actions { flex-direction: column; gap: 10px; }
  .hero-actions .btn { width: 100%; }
  .hero-bullets { gap: 14px; margin-top: 24px; }
  .hero-bullets li { padding-left: 10px; }
  .hero-bullets strong { font-size: 15px; }
  .hero-bullets span { font-size: 12px; }
  .hero-image {
    order: 2;
    height: 280px;
  }
  .hero-image img { height: 100%; }

  .section { padding: 48px 0; }
  #categories.section { padding-top: 32px; padding-bottom: 0; }
  #products.section { padding-top: 56px; }
  .section-head { margin-bottom: 20px; }
  .section-title { font-size: 28px; }

  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .cat-card { height: 110px; }
  .cat-pill { font-size: 12px; padding: 6px 12px; left: 10px; bottom: 10px; }

  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-img { height: 170px; }
  .product-body { padding: 12px 14px 14px; }
  .product-name { font-size: 16px; }
  .product-sub { font-size: 12px; }
  .product-price { font-size: 16px; }
  .fav { width: 32px; height: 32px; }

  .benefits-grid { grid-template-columns: 1fr; gap: 14px; }
  .benefit { padding: 22px 20px; }
  .benefit h3 { font-size: 19px; }

  .telegram-text { padding: 8px 0 0; }
  .telegram-text .lead { font-size: 15px; }
  .tg-card { padding: 18px; }

  .trust-strip { padding: 32px 0; }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .trust-item strong { font-size: 20px; }

  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  .hero-title { font-size: 32px; }
  .products-grid { grid-template-columns: 1fr; }
}

/* ===========================================================
   HERO TRUST BADGE
=========================================================== */
.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding: 10px 16px 10px 12px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
  align-self: flex-start;
  max-width: 100%;
}
.hero-trust:hover {
  background: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}
.hero-trust-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--tg);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.hero-trust-text { display: flex; flex-direction: column; line-height: 1.2; }
.hero-trust-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
}
.hero-trust-text span {
  font-size: 12px;
  color: var(--soft-brown);
}

/* ===========================================================
   PROMO BANNER
=========================================================== */
.promo-section {
  padding: 8px 0 0;
}
.promo-banner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 40px;
  background: linear-gradient(110deg, var(--cream) 0%, #f7e0e5 45%, #ece2f4 100%);
  border: 1px solid var(--border);
  border-radius: 28px;
  text-decoration: none;
  overflow: hidden;
  min-height: 160px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s ease, transform .25s ease;
}
.promo-banner:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.promo-banner-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .14;
  pointer-events: none;
}
.promo-banner-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.promo-banner-text { position: relative; z-index: 1; }
.promo-banner-cta { position: relative; z-index: 1; }
.promo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 700;
  margin-bottom: 10px;
}
.promo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rose);
  animation: pulseGlow 2.6s ease-in-out infinite;
}
.promo-banner-text h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  color: var(--brown);
  letter-spacing: -.005em;
  margin-bottom: 6px;
}
.promo-banner-text p {
  font-size: 15px;
  color: var(--soft-brown);
  max-width: 560px;
}

/* ===========================================================
   PRODUCT BADGE & CTA
=========================================================== */
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 6px 12px;
  background: var(--bg);
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.product-badge--new { color: var(--tg-text); }
.product-badge--stock { color: #3d6634; }

.product-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 12px;
  padding: 9px 14px;
  background: transparent;
  border: 1px solid rgba(161, 61, 82, 0.35);
  color: var(--rose-text);
  font-size: 13px;
  font-weight: 600;
  border-radius: 999px;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.product-cta:hover {
  background: var(--rose-text);
  color: #fff;
  border-color: var(--rose-text);
}

/* ===========================================================
   HOW TO ORDER
=========================================================== */
.how-to {
  background: var(--cream);
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: how;
}
.how-step {
  position: relative;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.how-num {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  color: var(--rose);
  letter-spacing: .02em;
}
.how-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--rose-soft);
  color: var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}
.how-step h3 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--brown);
}
.how-step p {
  font-size: 14px;
  color: var(--soft-brown);
  line-height: 1.5;
}

/* ===========================================================
   REVIEWS
=========================================================== */
.reviews {
  background: var(--bg);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.review-stars {
  display: inline-flex;
  gap: 2px;
  color: #e0a23a;
}
.review-text {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  color: var(--brown);
}
.review-author {
  margin-top: auto;
  font-size: 13px;
  font-weight: 700;
  color: var(--soft-brown);
  letter-spacing: .02em;
}

/* ===========================================================
   RESPONSIVE — new blocks
=========================================================== */
@media (max-width: 1199px) {
  .how-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .promo-banner {
    grid-template-columns: 1fr;
    padding: 28px 28px;
    text-align: left;
  }
  .promo-banner-text h3 { font-size: 26px; }
}

@media (max-width: 767px) {
  .hero-trust { margin-top: 20px; padding: 8px 14px 8px 10px; }
  .hero-trust-icon { width: 28px; height: 28px; }
  .hero-trust-text strong { font-size: 13px; }
  .hero-trust-text span { font-size: 11px; }

  .promo-section { padding-top: 0; }
  .promo-banner { padding: 22px 20px; min-height: 0; }
  .promo-banner-text h3 { font-size: 22px; }
  .promo-banner-text p { font-size: 14px; }

  .product-badge { font-size: 11px; padding: 5px 10px; top: 10px; left: 10px; }
  .product-cta { font-size: 12px; padding: 8px 12px; }

  .how-grid { grid-template-columns: 1fr; gap: 12px; }
  .how-step { padding: 22px 20px; }
  .how-step h3 { font-size: 18px; }

  .reviews-grid { gap: 12px; }
  .review-card { padding: 22px 20px; }
  .review-text { font-size: 16px; }
}
