:root {
  --ink: #21190f;
  --muted: #6d6254;
  --honey: #d99819;
  --honey-light: #ffd879;
  --honey-dark: #a66200;
  --leaf: #246b48;
  --berry: #8f2d21;
  --cream: #fff8e9;
  --paper: #fffdf7;
  --line: #eadfc9;
  --shadow: 0 18px 50px rgba(70, 45, 10, .13);
  --shadow-strong: 0 28px 70px rgba(80, 48, 8, .2);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(255, 216, 121, .52), transparent 30rem),
    radial-gradient(circle at 88% 10%, rgba(217, 152, 25, .2), transparent 22rem),
    radial-gradient(circle at 16% 72%, rgba(36, 107, 72, .12), transparent 28rem),
    linear-gradient(135deg, #fffdf7 0%, #fff4d1 36%, #fff8e9 64%, #f6edd7 100%);
  line-height: 1.55;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .24;
  background-image:
    linear-gradient(30deg, rgba(166,98,0,.18) 12%, transparent 12.5%, transparent 87%, rgba(166,98,0,.18) 87.5%, rgba(166,98,0,.18)),
    linear-gradient(150deg, rgba(166,98,0,.18) 12%, transparent 12.5%, transparent 87%, rgba(166,98,0,.18) 87.5%, rgba(166,98,0,.18)),
    linear-gradient(30deg, rgba(166,98,0,.18) 12%, transparent 12.5%, transparent 87%, rgba(166,98,0,.18) 87.5%, rgba(166,98,0,.18)),
    linear-gradient(150deg, rgba(166,98,0,.18) 12%, transparent 12.5%, transparent 87%, rgba(166,98,0,.18) 87.5%, rgba(166,98,0,.18));
  background-size: 72px 126px;
  background-position: 0 0, 0 0, 36px 63px, 36px 63px;
  mask-image: linear-gradient(180deg, #000, rgba(0,0,0,.55) 52%, transparent 88%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(circle at 78% 34%, rgba(255,255,255,.5), transparent 18rem),
    radial-gradient(circle at 24% 42%, rgba(255,210,84,.22), transparent 20rem);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea, select { font: inherit; }

.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 253, 247, .82);
  border-bottom: 1px solid rgba(234, 223, 201, .85);
  backdrop-filter: blur(16px);
  box-shadow: 0 12px 36px rgba(80, 48, 8, .08);
  isolation: isolate;
}
.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 900; letter-spacing: 0; }
.brand-logo {
  width: auto;
  height: 62px;
  max-width: 160px;
  max-height: none;
  object-fit: contain;
  image-rendering: auto;
  mix-blend-mode: multiply;
}
.brand:hover .brand-logo {
  transform: none;
  filter: none;
}
.site-header .brand-logo,
.nav-mobile-brand img {
  mix-blend-mode: normal;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(145deg, #f4ba37, #b76d09);
  color: #fff8e4;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}
.brand small { display: block; color: var(--muted); font-weight: 700; font-size: 12px; }
.nav { display: flex; align-items: center; gap: 10px; color: #3d3021; font-weight: 800; }
.nav a {
  padding: 9px 10px;
  position: relative;
  border-radius: 999px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.nav a:not(.cart-link):not(.social-link)::after {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--honey), var(--leaf));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.nav a:hover::after { transform: scaleX(1); }
.nav a:hover { color: var(--honey-dark); background: rgba(217, 152, 25, .08); transform: translateY(-1px); }
.cart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2a1a0d, #4b2a0c);
  color: #fff;
  box-shadow: 0 14px 30px rgba(33, 25, 15, .22);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cart-link:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 20px 42px rgba(33,25,15,.28); color: #fff !important; }
.cart-link b {
  min-width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--honey);
  color: var(--ink);
  font-size: 12px;
}
.social-link {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: #1877f2;
  color: #fff !important;
  font-weight: 950;
  box-shadow: 0 12px 24px rgba(24, 119, 242, .22);
}
.social-link:hover { color: #fff !important; background: #0f62ce !important; }
.menu-toggle,
.menu-close {
  display: none;
}
.nav-mobile-brand {
  display: none;
}
.nav-backdrop {
  display: none;
}
.icon-cart {
  width: 18px;
  height: 18px;
  display: inline-block;
  position: relative;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 3px 3px 6px 6px;
}
.icon-cart::before {
  content: "";
  position: absolute;
  left: 3px;
  right: 3px;
  top: -7px;
  height: 8px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-radius: 10px 10px 0 0;
}
.icon-cart.tiny {
  width: 15px;
  height: 15px;
}
.hero {
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: end;
  background-image:
    linear-gradient(90deg, rgba(23,16,6,.88), rgba(23,16,6,.48) 46%, rgba(23,16,6,.08)),
    radial-gradient(circle at 75% 78%, rgba(255, 207, 91, .24), transparent 18rem),
    var(--hero);
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-slider {
  background-image:
    linear-gradient(90deg, rgba(23,16,6,.88), rgba(23,16,6,.48) 46%, rgba(23,16,6,.08)),
    radial-gradient(circle at 75% 78%, rgba(255, 207, 91, .24), transparent 18rem);
}
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 1s ease, transform 7s ease;
}
.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.005);
}

.hero-slider::before {
  z-index: 1;
}
.hero-slider::after {
  z-index: 1;
}
.hero-slider .hero-content {
  z-index: 2;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -8% -22% 42%;
  height: 44%;
  background: radial-gradient(circle, rgba(255,216,121,.34), transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(23,16,6,.28));
  pointer-events: none;
}
.hero-content {
  width: min(680px, 100%);
  padding: 76px 0 68px;
  animation: riseIn .75s ease both;
  position: relative;
  z-index: 1;
  border-radius: 28px;
  padding-left: clamp(18px, 3vw, 34px);
  padding-right: clamp(18px, 3vw, 34px);
  background: linear-gradient(90deg, rgba(24,17,8,.68), rgba(24,17,8,.34) 68%, rgba(24,17,8,.04));
  box-shadow: 0 24px 70px rgba(20, 13, 4, .24);
  backdrop-filter: blur(2px);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffe7a9;
  font-weight: 850;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .8px;
}
.hero h1, .page-hero h1 {
  margin: 14px 0;
  line-height: 1.06;
  letter-spacing: 0;
}
.hero h1 { font-size: clamp(32px, 4.6vw, 56px); max-width: 12.5em; text-wrap: balance; }
.page-hero h1 { font-size: clamp(30px, 4.2vw, 48px); max-width: 13.5em; text-wrap: balance; }
.hero p { font-size: clamp(17px, 1.45vw, 19px); color: #fff6dc; max-width: 590px; text-shadow: 0 2px 16px rgba(0,0,0,.38); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 14px 999px 999px 999px;
  background: linear-gradient(135deg, var(--honey-light), var(--honey) 52%, #b86f09);
  color: #1d150b;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(185, 111, 9, .22);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 7px;
  width: 8px;
  height: 12px;
  border-radius: 999px 999px 999px 3px;
  background: rgba(255,255,255,.42);
  transform: rotate(28deg);
  pointer-events: none;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0 35%, rgba(255,255,255,.45) 48%, transparent 62% 100%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 20px 38px rgba(185, 111, 9, .3); filter: saturate(1.08); }
.btn:hover::before { transform: translateX(120%); }
.btn.secondary { background: rgba(255,255,255,.14); color: #fff; border: 1px solid rgba(255,255,255,.35); }
.btn.dark { background: linear-gradient(135deg, var(--ink), #5b3512); color: #fff; }
.btn.light { background: linear-gradient(135deg, #fff, #fff8e9); color: var(--ink); border: 1px solid var(--line); }
.section { padding: 68px 0; }
.section.alt {
  background:
    linear-gradient(180deg, rgba(255,253,247,.86), rgba(255,248,233,.78)),
    var(--paper);
  border-block: 1px solid rgba(234,223,201,.82);
}
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 26px; }
.section-head h2, .page-title { margin: 0; font-size: clamp(27px, 3.35vw, 42px); line-height: 1.08; text-wrap: balance; }
.section-head p { margin: 8px 0 0; color: var(--muted); max-width: 620px; }
.grid { display: grid; gap: 18px; }
.grid.products { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.categories, .grid.posts { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.28), transparent 28%, rgba(217,152,25,.08));
  opacity: 0;
  transition: opacity .22s ease;
}
.product-card::before,
.category-card::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: 2;
  width: 12px;
  height: 18px;
  border-radius: 999px 999px 999px 3px;
  background: linear-gradient(180deg, rgba(255,224,138,.9), rgba(217,152,25,.65));
  transform: rotate(28deg);
  opacity: .78;
  box-shadow: 0 8px 18px rgba(166,98,0,.18);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); border-color: rgba(217, 152, 25, .48); }
.card:hover::after { opacity: 1; }
.product-card { display: flex; flex-direction: column; min-height: 100%; }
.product-media, .post-media, .gallery-media {
  aspect-ratio: 4 / 3;
  background: #f4ead4;
  overflow: hidden;
  position: relative;
}
.product-media::after,
.post-media::after,
.gallery-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(33,25,15,.18));
  opacity: 0;
  transition: opacity .28s ease;
}
.product-card:hover .product-media::after,
.post-card:hover .post-media::after,
.card:hover .gallery-media::after { opacity: 1; }
.product-media img, .post-media img, .gallery-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.product-card:hover .product-media img,
.post-card:hover .post-media img,
.card:hover .gallery-media img { transform: scale(1.055); }
.product-body, .post-body, .category-card, .content-card { padding: 20px; position: relative; z-index: 1; }
.product-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 14px; font-weight: 750; }
.product-card h3, .post-card h3 { margin: 10px 0 8px; font-size: 22px; line-height: 1.2; }
.product-card h3 a,
.post-card h3 a { transition: color .18s ease; }
.product-card:hover h3 a,
.post-card:hover h3 a { color: var(--honey-dark); }
.product-card p, .post-card p, .category-card p { color: var(--muted); margin: 0; }
.stock-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(36, 107, 72, .1);
  color: var(--leaf);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.stock-badge.limited { background: rgba(217, 152, 25, .16); color: var(--honey-dark); }
.stock-badge.preorder { background: rgba(33, 25, 15, .08); color: var(--ink); }
.stock-badge.out { background: rgba(143, 45, 33, .1); color: var(--berry); }
.price { color: var(--honey-dark); font-size: 24px; font-weight: 950; margin-top: 16px; }
.price small { display: none; }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.stat-card {
  padding: 18px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.stat-card b { display: block; font-size: 32px; line-height: 1; color: var(--honey-dark); }
.showcase-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}
.showcase-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.honey-story {
  position: relative;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 216, 121, .34), transparent 20rem),
    radial-gradient(circle at 82% 75%, rgba(36, 107, 72, .12), transparent 20rem);
}
.story-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 34px;
  align-items: center;
}
.story-copy p { color: var(--muted); font-size: 18px; }
.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.mini-stats b {
  padding: 16px;
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  color: var(--honey-dark);
  font-size: 28px;
  box-shadow: var(--shadow);
}
.mini-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}
.story-collage {
  min-height: 520px;
  position: relative;
}
.story-collage::before {
  content: "";
  position: absolute;
  inset: 12% 8% 8% 18%;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 216, 121, .56), rgba(36, 107, 72, .2));
  filter: blur(1px);
}
.collage-img {
  position: absolute;
  width: 42%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 8px solid #fffdf7;
  box-shadow: var(--shadow-strong);
}
.collage-img-1 { left: 4%; top: 4%; width: 48%; }
.collage-img-2 { right: 4%; top: 12%; }
.collage-img-3 { left: 18%; bottom: 6%; width: 38%; }
.collage-img-4 { right: 11%; bottom: 0; width: 32%; }
.collage-img-5 { left: 43%; top: 42%; width: 30%; }
.product-actions { display: flex; gap: 10px; margin-top: auto; padding: 0 20px 20px; }
.product-actions .btn { flex: 1; border-radius: 8px; }
.product-actions .btn { border-radius: 12px; }
.viber-btn {
  background: linear-gradient(135deg, #7360f2, #5b3cc4 58%, #43208b);
  color: #fff;
  box-shadow: 0 12px 26px rgba(91,60,196,.22);
  border: 1px solid rgba(255,255,255,.34);
  padding: 9px 13px;
  min-height: 40px;
  font-size: 13px;
  line-height: 1.15;
}
.viber-btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(91,60,196,.3);
}
.muted-btn {
  background: #e8ded0;
  color: var(--muted);
  box-shadow: none;
  cursor: not-allowed;
}
.hero-viber {
  border: 1px solid rgba(255,255,255,.32);
}
.category-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background:
    radial-gradient(circle at 100% 0, rgba(255,216,121,.32), transparent 10rem),
    #fff;
}
.category-card b { font-size: 24px; }
.category-card span { color: var(--honey-dark); font-weight: 900; }
.about-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.about-band img { border-radius: 8px; box-shadow: var(--shadow); aspect-ratio: 5 / 4; object-fit: cover; }
.feature-list { display: grid; gap: 12px; margin-top: 22px; }
.feature-list div { padding: 14px 16px; border-left: 4px solid var(--honey); background: rgba(255,255,255,.65); }
.feature-list div {
  border-radius: 0 8px 8px 0;
  box-shadow: 0 10px 30px rgba(70,45,10,.08);
  transition: transform .2s ease, background .2s ease;
}
.feature-list div:hover { transform: translateX(4px); background: #fff; }
.page-hero {
  padding: 58px 0 36px;
  background:
    radial-gradient(circle at 90% 20%, rgba(36, 107, 72, .18), transparent 20rem),
    linear-gradient(135deg, #fff4d7, #f8e3aa);
  border-bottom: 1px solid var(--line);
}
.filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; }
.filters a { padding: 9px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-weight: 800; }
.filters a.active { background: var(--ink); color: #fff; border-color: var(--ink); }
.filters a { transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.filters a:hover { transform: translateY(-2px); box-shadow: 0 12px 26px rgba(80,48,8,.12); border-color: rgba(217,152,25,.55); }
.product-detail {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: 34px;
  align-items: start;
}
.product-detail img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 8px; box-shadow: var(--shadow); }
.detail-panel { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 28px; box-shadow: var(--shadow); }
.detail-panel h1 { margin: 0 0 10px; font-size: clamp(30px, 4vw, 46px); line-height: 1.08; text-wrap: balance; }
.detail-panel .price { font-size: 32px; }
.detail-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
  font-weight: 750;
}
.order-box {
  margin: 22px 0;
  padding: 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,248,233,.95), rgba(255,255,255,.82));
  border: 1px solid var(--line);
}
.order-box .qty-row { margin: 0 0 10px; }
.btn.wide { width: 100%; justify-content: center; }
.buy-points {
  display: grid;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.buy-points li {
  padding-left: 22px;
  position: relative;
}
.buy-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--honey);
}
.qty-row { display: flex; gap: 10px; margin: 24px 0; }
.qty-row input { width: 92px; border: 1px solid var(--line); border-radius: 8px; padding: 12px; }
.cart-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); border-radius: 8px; overflow: hidden; }
.cart-table th, .cart-table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.cart-table th { color: var(--muted); font-size: 13px; text-transform: uppercase; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.field { display: grid; gap: 6px; font-weight: 800; }
.field.full { grid-column: 1 / -1; }
.field input, .field textarea, .field select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  background: #fffdf7;
}
.field textarea { min-height: 110px; resize: vertical; }
.honey-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.notice { padding: 14px 16px; border-radius: 8px; background: #f3ffe9; border: 1px solid #cce9b5; color: #31551e; }
.site-footer { background: #1d160d; color: #f9efd9; padding: 42px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 22px; }
.site-footer a, .site-footer p { color: #d8c9ad; }
.footer-seo-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-seo-links a {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  color: #f9efd9;
  font-size: 14px;
  font-weight: 800;
}
.seo-article {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 26px;
  align-items: start;
}
.seo-article .content-card p,
.seo-article .content-card li {
  color: var(--muted);
  font-size: 17px;
}
.seo-article .content-card h2 {
  margin-top: 24px;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.12;
}
.seo-aside {
  position: sticky;
  top: 108px;
}
.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.seo-keywords span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(217,152,25,.14);
  color: var(--honey-dark);
  font-weight: 850;
  font-size: 13px;
}




/* AJAX cart feedback */
.cart-link b.is-empty {
  display: none;
}
.cart-link b.is-bumping {
  animation: cartBump .42s ease both;
}
.btn.is-loading {
  opacity: .72;
  cursor: wait;
}
.cart-toast {
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(18px, 4vw, 34px);
  z-index: 150;
  transform: translateY(18px) scale(.96);
  opacity: 0;
  pointer-events: none;
  padding: 14px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #21190f, #5b3512);
  color: #fff8e4;
  font-weight: 900;
  box-shadow: 0 24px 54px rgba(33,25,15,.28);
  transition: opacity .22s ease, transform .22s ease;
}
.cart-toast.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}
@keyframes cartBump {
  0% { transform: scale(.7); }
  48% { transform: scale(1.28); }
  100% { transform: scale(1); }
}
@media (max-width: 560px) {
  .cart-toast {
    left: 12px;
    right: 12px;
    bottom: 14px;
    justify-content: center;
    text-align: center;
  }
}

/* Award / press source block */
.award-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(255,216,121,.36), transparent 18rem),
    linear-gradient(180deg, rgba(255,253,247,.94), rgba(255,248,233,.88));
}
.award-card {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(217,152,25,.28);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.82), rgba(255,248,233,.72)),
    radial-gradient(circle at 85% 18%, rgba(217,152,25,.18), transparent 18rem);
  box-shadow: var(--shadow-strong);
  position: relative;
  overflow: hidden;
}
.award-card::before {
  content: "";
  position: absolute;
  inset: -28% auto auto -8%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,216,121,.45), transparent 68%);
  pointer-events: none;
}
.award-media {
  background: linear-gradient(135deg, rgba(255,216,121,.72), rgba(255,248,233,.96));
  padding: 8px;
  border-radius: 22px;
}
.award-media img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 16px;
  cursor: zoom-in;
}
.award-copy {
  position: relative;
  z-index: 1;
}
.award-copy p {
  color: var(--muted);
  font-size: 17px;
}
.source-note {
  padding: 14px 16px;
  border-left: 4px solid var(--honey);
  border-radius: 0 14px 14px 0;
  background: rgba(255,248,233,.86);
  font-size: 15px !important;
}
.source-note a {
  color: var(--honey-dark);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Site image lightbox */
img[data-lightbox-src],
.lightbox-ready {
  cursor: zoom-in;
}
.pi-lightbox {
  position: fixed;
  inset: 0;
  z-index: 140;
  display: grid;
  place-items: center;
  padding: clamp(14px, 4vw, 42px);
  background:
    radial-gradient(circle at 50% 12%, rgba(255,216,121,.18), transparent 22rem),
    rgba(22, 14, 6, .84);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}
.pi-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}
.pi-lightbox-inner {
  width: min(1120px, 100%);
  max-height: 92vh;
  display: grid;
  gap: 12px;
}
.pi-lightbox-frame {
  position: relative;
  border-radius: 26px;
  padding: 10px;
  background:
    linear-gradient(135deg, rgba(255,216,121,.55), rgba(255,255,255,.18)),
    rgba(255,248,233,.1);
  box-shadow: 0 34px 90px rgba(0,0,0,.42);
}
.pi-lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
  background: rgba(255,248,233,.08);
}
.pi-lightbox-caption {
  color: #fff8e4;
  text-align: center;
  font-weight: 800;
  text-shadow: 0 2px 16px rgba(0,0,0,.45);
}
.pi-lightbox-close,
.pi-lightbox-prev,
.pi-lightbox-next {
  position: absolute;
  z-index: 3;
  border: 0;
  border-radius: 999px;
  color: #21190f;
  background: linear-gradient(135deg, #fff8e9, #ffd879);
  box-shadow: 0 14px 34px rgba(0,0,0,.22);
  cursor: pointer;
}
.pi-lightbox-close {
  top: 12px;
  right: 12px;
  width: 44px;
  height: 44px;
  font-size: 28px;
}
.pi-lightbox-prev,
.pi-lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 28px;
}
.pi-lightbox-prev { left: 18px; }
.pi-lightbox-next { right: 18px; }
@media (max-width: 900px) {
  .award-card { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .award-card { border-radius: 20px; }
  .award-media { border-radius: 18px; }
  .award-media img { border-radius: 14px; }
  .pi-lightbox-prev,
  .pi-lightbox-next { width: 42px; height: 42px; font-size: 24px; }
}


/* Modern beekeeper gallery mosaic */
.grid.gallery.gallery-mosaic {
  display: block;
  columns: 4 236px;
  column-gap: clamp(12px, 1.25vw, 18px);
}
.gallery-mosaic-card {
  position: relative;
  display: inline-block;
  width: 100%;
  margin: 0 0 clamp(12px, 1.25vw, 18px);
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  box-shadow: 0 18px 44px rgba(70, 45, 14, .12);
  cursor: zoom-in;
}
.gallery-mosaic-card .gallery-media {
  height: auto;
  aspect-ratio: auto;
  border-radius: inherit;
}
.gallery-mosaic-card .gallery-media img {
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: contain;
}
.gallery-mosaic-card .gallery-media::after {
  opacity: 1;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,255,255,.18), transparent 20%),
    linear-gradient(180deg, transparent 44%, rgba(33,25,15,.58));
}
.gallery-mosaic-card figcaption {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  padding: 0;
  color: #fff8e4;
  text-shadow: 0 2px 16px rgba(0,0,0,.55);
  pointer-events: none;
}
.gallery-mosaic-card figcaption b {
  display: inline;
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(33,25,15,.48);
  backdrop-filter: blur(8px);
  font-size: 12px;
  line-height: 1.18;
}
.gallery-mosaic-card:hover .gallery-media img {
  transform: scale(1.035);
}
@media (max-width: 900px) {
  .grid.gallery.gallery-mosaic { columns: 3 210px; }
}
@media (max-width: 640px) {
  .grid.gallery.gallery-mosaic {
    columns: 2 145px;
    column-gap: 10px;
  }
  .gallery-mosaic-card {
    margin-bottom: 10px;
    border-radius: 13px;
  }
  .gallery-mosaic-card figcaption {
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
  .gallery-mosaic-card figcaption b {
    font-size: 11px;
  }
}

.admin-shell { display: grid; grid-template-columns: 240px minmax(0, 1fr); min-height: 100vh; background: #f7f3ea; }
.admin-side { background: #21190f; color: #fff8e9; padding: 22px; }
.admin-side a { display: block; padding: 10px 0; color: #f0dfbf; font-weight: 800; }
.admin-main { padding: 26px; }
.admin-top { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-bottom: 20px; }
.admin-table { width: 100%; border-collapse: collapse; background: #fff; border: 1px solid var(--line); }
.admin-table th, .admin-table td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; }
.admin-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.login-page { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: linear-gradient(135deg, #fff4d7, #d99819); }
.login-box { width: min(420px, 100%); background: #fff; padding: 28px; border-radius: 8px; box-shadow: var(--shadow); }
.floating-phone {
  position: fixed;
  left: 14px;
  bottom: 14px;
  z-index: 45;
  width: 54px;
  height: 54px;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, rgba(255,255,255,.32), transparent 28%),
    linear-gradient(135deg, #e34a20, #a51e13 58%, #6f150d);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(111,21,13,.3);
  transition: transform .2s ease, box-shadow .2s ease;
}
.floating-phone::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 2px solid rgba(227,74,32,.28);
  animation: phonePulse 1.9s ease-out infinite;
}
.floating-phone:hover { transform: scale(1.07); box-shadow: 0 20px 44px rgba(111,21,13,.42); color: #fff; }
.phone-icon {
  width: auto;
  height: auto;
  display: inline-block;
  border: 0;
  border-radius: 0;
  transform: rotate(-12deg);
  font-size: 25px;
  line-height: 1;
}
.phone-text {
  position: absolute;
  left: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
  white-space: nowrap;
  padding: 9px 12px;
  border-radius: 999px;
  background: #21190f;
  color: #fff8e9;
  font-size: 14px;
  box-shadow: 0 14px 30px rgba(33,25,15,.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}
.floating-phone:hover .phone-text {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 35;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ink), #5b3512);
  color: #fff;
  font-size: 24px;
  font-weight: 950;
  box-shadow: 0 20px 42px rgba(33, 25, 15, .28);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity .2s ease, transform .2s ease;
}
.back-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 34;
  width: min(720px, calc(100% - 32px));
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  background: rgba(255, 253, 247, .96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-strong);
  transform: translateX(-50%);
  backdrop-filter: blur(14px);
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner b { display: block; }
.cookie-banner span { color: var(--muted); }
.flying-bee {
  --bee-top: 28vh;
  --bee-tilt: 9deg;
  position: fixed;
  left: -90px;
  top: var(--bee-top);
  z-index: 28;
  width: 54px;
  height: 38px;
  pointer-events: none;
  opacity: 0;
  transform: rotate(var(--bee-tilt));
}
.flying-bee span {
  position: absolute;
  inset: 11px 3px 5px 8px;
  border-radius: 999px;
  background: repeating-linear-gradient(90deg, #21190f 0 8px, #f0b528 8px 16px);
  box-shadow: 0 10px 24px rgba(33,25,15,.2);
}
.flying-bee span::before,
.flying-bee span::after {
  content: "";
  position: absolute;
  top: -13px;
  width: 22px;
  height: 18px;
  border-radius: 999px 999px 4px 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.9);
  transform-origin: bottom center;
  animation: wing .18s infinite alternate ease-in-out;
}
.flying-bee span::before { left: 6px; transform: rotate(-22deg); }
.flying-bee span::after { right: 4px; transform: rotate(22deg); animation-delay: .06s; }
.flying-bee::after {
  content: "";
  position: absolute;
  right: 0;
  top: 16px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #21190f;
}
.flying-bee.is-flying {
  animation: beeFlight 8.4s cubic-bezier(.34,.02,.2,1) both;
}
.honey-drop-layer {
  position: fixed;
  inset: 0;
  z-index: 95;
  pointer-events: none;
  overflow: visible;
}
.honey-drop {
  --drop-length: 68px;
  --drop-size: 16px;
  --drop-wobble: 0px;
  position: absolute;
  left: var(--drop-left, 50vw);
  top: var(--drop-top, 20vh);
  width: 1px;
  height: 1px;
  opacity: 0;
  filter: drop-shadow(0 8px 14px rgba(166,98,0,.22));
}
.honey-drop::before {
  content: "";
  position: absolute;
  left: 0;
  top: -2px;
  z-index: 3;
  width: calc(var(--drop-size) * 2.15);
  height: calc(var(--drop-size) * .68);
  border-radius: 999px 999px 12px 12px;
  background:
    radial-gradient(circle at 35% 18%, rgba(255,255,255,.45), transparent 24%),
    linear-gradient(180deg, rgba(255,226,141,.96), rgba(217,152,25,.92) 60%, rgba(151,84,0,.9));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.4), 0 4px 10px rgba(166,98,0,.18);
  transform: translateX(-50%) scaleX(.18);
  transform-origin: center bottom;
  opacity: 0;
}
.honey-drop::after {
  display: none;
}
.honey-thread {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: max(2px, calc(var(--drop-size) * .2));
  height: var(--drop-length);
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255,238,178,.72), rgba(217,152,25,.96) 48%, rgba(137,75,0,.72));
  box-shadow: 0 0 10px rgba(255,194,57,.3);
  transform: translateX(-50%) scaleY(.02);
  transform-origin: top center;
  opacity: 0;
}
.honey-bead {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  width: var(--drop-size);
  height: calc(var(--drop-size) * 1.5);
  border-radius: 48% 52% 57% 43% / 44% 44% 74% 74%;
  background:
    radial-gradient(circle at 34% 24%, rgba(255,255,255,.6), transparent 23%),
    linear-gradient(180deg, #ffe28d 0%, #d99819 48%, #955300 100%);
  box-shadow: 0 12px 22px rgba(166,98,0,.34), 0 0 14px rgba(255,194,57,.22), inset 0 -3px 4px rgba(111,63,0,.25);
  transform: translate3d(-50%, -22%, 0) scale(.2, .08);
  transform-origin: 50% 0;
  opacity: 0;
}
.honey-bead::after {
  content: "";
  position: absolute;
  left: 31%;
  top: 21%;
  width: calc(var(--drop-size) * .24);
  height: calc(var(--drop-size) * .34);
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  transform: rotate(18deg);
  opacity: 0;
}
.honey-drop.is-dripping {
  animation: honeyDropVisible var(--drop-speed, 3.2s) linear both;
}
.honey-drop.is-dripping::before {
  animation: honeyPuddle var(--drop-speed, 3.2s) ease-out both;
}
.honey-drop.is-dripping .honey-thread {
  animation: honeyThread var(--drop-speed, 3.2s) cubic-bezier(.28,.72,.2,1) both;
}
.honey-drop.is-dripping .honey-bead {
  animation: honeyBeadFall var(--drop-speed, 3.2s) cubic-bezier(.2,.78,.18,1) both;
}
.honey-drop.is-dripping .honey-bead::after {
  animation: honeyShine var(--drop-speed, 3.2s) ease-out both;
}

@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes wing {
  to { transform: rotate(8deg) translateY(2px) scaleY(.82); }
}
@keyframes phonePulse {
  0% { transform: scale(.82); opacity: .75; }
  80%, 100% { transform: scale(1.34); opacity: 0; }
}
@keyframes beeFlight {
  0% { opacity: 0; transform: translate(-80px, 20px) rotate(var(--bee-tilt)); }
  10% { opacity: 1; }
  35% { transform: translate(32vw, -28px) rotate(calc(var(--bee-tilt) * -1)); }
  62% { transform: translate(68vw, 32px) rotate(var(--bee-tilt)); }
  88% { opacity: 1; }
  100% { opacity: 0; transform: translate(calc(100vw + 120px), -12px) rotate(calc(var(--bee-tilt) * -1)); }
}
@keyframes honeyDropVisible {
  0%, 100% { opacity: 1; }
}
@keyframes honeyPuddle {
  0% { opacity: 0; transform: translateX(-50%) scaleX(.18); }
  12% { opacity: .92; transform: translateX(-50%) scaleX(.68); }
  30% { opacity: .96; transform: translateX(-50%) scaleX(1); }
  46% { opacity: .86; transform: translateX(-50%) scaleX(.9); }
  68% { opacity: .36; transform: translateX(-50%) scaleX(.42); }
  100% { opacity: 0; transform: translateX(-50%) scaleX(.08); }
}
@keyframes honeyThread {
  0%, 16% { opacity: 0; transform: translateX(-50%) scaleY(.02) scaleX(1.2); }
  30% { opacity: .82; transform: translateX(-50%) scaleY(.16) scaleX(1.05); }
  48% { opacity: .9; transform: translateX(-50%) scaleY(.48) scaleX(.78); }
  66% { opacity: .82; transform: translateX(-50%) scaleY(.82) scaleX(.52); }
  82% { opacity: .28; transform: translateX(-50%) scaleY(.98) scaleX(.34); }
  100% { opacity: 0; transform: translateX(-50%) scaleY(1) scaleX(.18); }
}
@keyframes honeyBeadFall {
  0% { opacity: 0; border-radius: 999px; transform: translate3d(-50%, -18%, 0) scale(.18, .08); }
  12% { opacity: .94; transform: translate3d(-50%, -10%, 0) scale(.74, .22); }
  30% { opacity: .98; transform: translate3d(-50%, 0, 0) scale(1.22, .52); }
  46% { transform: translate3d(calc(-50% + var(--drop-wobble) * .08), 11px, 0) scale(.78, 1.74); }
  60% { border-radius: 40% 60% 56% 44% / 24% 24% 84% 84%; transform: translate3d(calc(-50% + var(--drop-wobble) * .22), 26px, 0) scale(.68, 2.15); }
  73% { opacity: .98; transform: translate3d(calc(-50% + var(--drop-wobble) * .55), calc(var(--drop-length) * .55), 0) scale(.86, 1.22); }
  90% { opacity: .88; transform: translate3d(calc(-50% + var(--drop-wobble)), var(--drop-length), 0) scale(.96, 1); }
  100% { opacity: 0; transform: translate3d(calc(-50% + var(--drop-wobble) * 1.1), calc(var(--drop-length) + 18px), 0) scale(.62, .72); }
}
@keyframes honeyShine {
  0%, 14% { opacity: 0; transform: rotate(18deg) scale(.35); }
  30%, 68% { opacity: .58; transform: rotate(18deg) scale(1); }
  100% { opacity: 0; transform: rotate(18deg) scale(.5); }
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .55s ease var(--reveal-delay, 0ms), transform .55s ease var(--reveal-delay, 0ms);
}
.reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .header-inner { min-height: 78px; align-items: center; flex-direction: row; padding: 10px 0; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 60;
    width: min(86vw, 360px);
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 78px 20px 22px;
    background:
      radial-gradient(circle at 86% 8%, rgba(255,216,121,.42), transparent 10rem),
      radial-gradient(circle at 12% 90%, rgba(36,107,72,.14), transparent 11rem),
      linear-gradient(135deg, rgba(255,253,247,.94), rgba(255,248,233,.88));
    border-left: 1px solid var(--line);
    box-shadow: -28px 0 70px rgba(33,25,15,.2);
    backdrop-filter: blur(18px);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .34s cubic-bezier(.22,.9,.2,1);
    overflow-y: auto;
  }
  .nav::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .18;
    background-image:
      linear-gradient(30deg, rgba(166,98,0,.25) 12%, transparent 12.5%, transparent 87%, rgba(166,98,0,.25) 87.5%, rgba(166,98,0,.25)),
      linear-gradient(150deg, rgba(166,98,0,.25) 12%, transparent 12.5%, transparent 87%, rgba(166,98,0,.25) 87.5%, rgba(166,98,0,.25)),
      linear-gradient(30deg, rgba(166,98,0,.25) 12%, transparent 12.5%, transparent 87%, rgba(166,98,0,.25) 87.5%, rgba(166,98,0,.25)),
      linear-gradient(150deg, rgba(166,98,0,.25) 12%, transparent 12.5%, transparent 87%, rgba(166,98,0,.25) 87.5%, rgba(166,98,0,.25));
    background-size: 42px 74px;
    background-position: 0 0, 0 0, 21px 37px, 21px 37px;
    mask-image: linear-gradient(180deg, #000, transparent 86%);
  }
  body.menu-open .nav { transform: translateX(0); visibility: visible; }
  .nav a {
    flex: 0 0 auto;
    padding: 13px 14px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(217,152,25,.22);
    color: var(--ink);
    box-shadow: 0 10px 24px rgba(80,48,8,.08);
    z-index: 1;
  }
  .nav a:hover {
    background: rgba(255,248,233,.96);
    color: var(--honey-dark);
  }
  .nav-mobile-brand {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 10px !important;
    margin: -44px 58px 8px 0;
    background: rgba(255,255,255,.68) !important;
    border-color: rgba(217,152,25,.24) !important;
    box-shadow: 0 16px 34px rgba(80,48,8,.1) !important;
  }
  .nav-mobile-brand::after {
    display: none;
  }
  .nav-mobile-brand img {
    width: auto;
    height: 72px;
    max-width: 100%;
  }
  .nav .cart-link {
    justify-content: center;
    margin-top: 8px;
    background: linear-gradient(135deg, #21190f, #5b3512);
    color: #fff !important;
    border-color: rgba(33,25,15,.2);
  }
  .nav .cart-link span,
  .nav .cart-link b {
    position: relative;
    z-index: 1;
  }
  .nav .cart-link::after {
    display: none;
  }
  .nav .social-link {
    width: 100%;
    height: 46px;
    background: linear-gradient(135deg, #1877f2, #0f62ce) !important;
    color: #fff !important;
    border-color: rgba(24,119,242,.3) !important;
  }
  .nav .social-link::after {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #21190f, #5b3512);
    color: #fff;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 16px 34px rgba(33,25,15,.2);
    cursor: pointer;
  }
  .menu-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
  }
  body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu-close {
    display: grid;
    place-items: center;
    position: absolute;
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
  }
  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgba(33,25,15,.42);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
  }
  .seo-article {
    grid-template-columns: 1fr;
  }
  .seo-aside {
    position: static;
  }
  body.menu-open .nav-backdrop { opacity: 1; pointer-events: auto; }
  body.menu-open { overflow: hidden; }
  .brand-logo { width: auto; height: 54px; max-width: 140px; max-height: none; }
  .hero { min-height: auto; }
  .grid.products, .grid.categories, .grid.posts, .grid.gallery, .about-band, .product-detail, .footer-grid, .stats-row, .story-grid { grid-template-columns: 1fr; }
  .showcase-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .story-collage { min-height: 460px; }
  .form-grid { grid-template-columns: 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .admin-side { position: static; }
  .admin-main { min-width: 0; padding: 16px; overflow-x: hidden; }
  .admin-table { display: block; overflow-x: auto; white-space: nowrap; }
  .floating-phone { left: 12px; bottom: 12px; width: 48px; height: 48px; padding: 0; transform: none; }
  body.cookie-open .floating-phone { bottom: 192px; }
  .floating-phone:hover { transform: scale(1.06); }
  .phone-icon { font-size: 22px; }
  .phone-text, .viber-text { display: none; }
  .cookie-banner { align-items: stretch; flex-direction: column; bottom: 10px; }
  .honey-drop-layer { z-index: 76; }
}

@media (prefers-reduced-motion: reduce) {
  .honey-drop-layer {
    display: none;
  }
}

@media (max-width: 560px) {
  .container { width: min(100% - 22px, 1180px); }
  .hero-content { padding: 42px 18px 36px; border-radius: 22px; }
  .hero h1 { font-size: clamp(30px, 10vw, 40px); line-height: 1.07; }
  .page-hero h1 { font-size: clamp(28px, 9vw, 38px); line-height: 1.08; }
  .hero p { font-size: 16px; }
  .brand-logo { width: auto; height: 48px; max-width: 124px; max-height: none; }
  .header-inner { min-height: 70px; }
  .section { padding: 44px 0; }
  .section-head { display: block; }
  .product-actions { flex-direction: column; }
  .cart-table { display: block; overflow-x: auto; }
  .mini-stats { grid-template-columns: 1fr; }
  .story-collage { min-height: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .story-collage::before { display: none; }
  .collage-img { position: static; width: 100%; border-width: 4px; }
}


/* Admin dashboard improvements */
.admin-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.stat-admin {
  color: inherit;
  min-height: 128px;
}
.stat-admin h2 {
  margin: 0 0 8px;
  font-size: clamp(32px, 4vw, 54px);
  color: var(--honey-dark);
}
.stat-admin.hot {
  border-color: rgba(217, 52, 36, .35);
  background: linear-gradient(135deg, #fff, #fff1ec);
}
.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}
.admin-filters a {
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-weight: 850;
  color: var(--ink);
}
.admin-filters a.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.status-badge {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  background: #f3f0e8;
  color: var(--ink);
}
.status-new { background: #fff0db; color: #a66200; }
.status-confirmed { background: #e8f7ff; color: #096486; }
.status-sent { background: #ecf3ff; color: #254e9c; }
.status-done { background: #eaffea; color: #26722e; }
.status-cancelled { background: #fff0f0; color: #9c1d1d; }
@media (max-width: 900px) {
  .admin-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .admin-stats { grid-template-columns: 1fr; }
}

/* Sales and SEO refinements */
.product-actions { flex-wrap: wrap; }
.product-actions .viber-btn { flex: 0 0 auto; min-width: 138px; }
.order-box .viber-btn.wide { justify-content: center; }
.seo-article .content-card p { font-size: 18px; }
.footer-seo-links { gap: 10px; }
@media (max-width: 760px) {
  .product-actions { gap: 8px; }
  .product-actions .btn { min-height: 42px; padding-left: 10px; padding-right: 10px; font-size: 13px; }
  .product-actions .viber-btn { flex: 0 0 auto; min-width: 138px; }
  .buy-points { padding-left: 18px; }
}

.copyright-warning {
  margin: 26px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(255,216,121,.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255,248,233,.08), rgba(217,152,25,.09));
  color: #f9efd9;
}
.copyright-warning b {
  display: block;
  margin-bottom: 6px;
  color: #ffd879;
  font-size: 14px;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.copyright-warning p {
  margin: 0;
  max-width: 980px;
  font-size: 13px;
  line-height: 1.55;
}
.protected-copy img,
.protected-copy .product-media,
.protected-copy .gallery-media,
.protected-copy .hero {
  -webkit-user-drag: none;
  user-select: none;
}
@media (max-width: 760px) {
  .copyright-warning { padding: 14px; margin-top: 18px; }
  .copyright-warning p { font-size: 12px; }
}

/* Compact Viber order buttons */
.product-actions {
  align-items: center;
}
.product-actions .viber-btn {
  flex: 0 0 auto !important;
  width: auto;
  min-width: 142px;
  max-width: 168px;
  padding: 8px 12px;
  font-size: 12px;
}
.order-box .viber-btn.wide {
  width: auto;
  align-self: flex-start;
  padding: 10px 16px;
  min-height: 42px;
}
@media (max-width: 760px) {
  .product-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .product-actions .btn.light {
    flex: 0 0 74px;
  }
  .product-actions form {
    flex: 1 1 150px;
  }
  .product-actions .viber-btn {
    flex: 0 0 auto !important;
    min-width: 140px;
    max-width: 160px;
    height: 40px;
  }
}


/* Sales conversion blocks */
.compact-section { padding-bottom: 0; }
.quick-order {
  margin: 0 20px 20px;
  border: 1px solid rgba(217,152,25,.28);
  border-radius: 12px;
  background: rgba(255,253,247,.82);
  overflow: hidden;
}
.quick-order summary {
  cursor: pointer;
  list-style: none;
  padding: 11px 13px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 900;
}
.quick-order summary::-webkit-details-marker { display: none; }
.quick-order summary::after { content: "+"; float: right; color: var(--honey-dark); }
.quick-order[open] summary::after { content: "–"; }
.quick-order form { display: grid; gap: 8px; padding: 0 12px 12px; }
.quick-grid { display: grid; grid-template-columns: 66px 1fr 1fr 1fr; gap: 8px; }
.quick-order input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  background: #fff;
  font-size: 13px;
}
.quick-submit { justify-self: start; min-height: 38px; padding: 9px 14px; font-size: 13px; }
.quick-order-detail { margin: 12px 0 0; }
.sales-bundles { background: linear-gradient(180deg, rgba(255,253,247,.96), rgba(255,244,209,.68)); }
.bundle-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.bundle-card { padding: 22px; border: 1px solid rgba(36,107,72,.18); }
.bundle-card b { color: var(--leaf); text-transform: uppercase; font-size: 12px; letter-spacing: .04em; }
.bundle-card h3 { margin: 8px 0; font-size: 27px; }
.bundle-card p { color: var(--muted); }
.bundle-card .btn { margin-top: 16px; }
.bundle-card.featured { background: linear-gradient(135deg, rgba(255,216,121,.26), #fff); box-shadow: var(--shadow-strong); }
.trust-grid, .review-faq-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 24px; align-items: start; }
.trust-copy h2 { font-size: clamp(32px, 4vw, 52px); line-height: 1.05; margin: 8px 0 12px; }
.trust-points { display: grid; gap: 12px; }
.trust-points div { padding: 18px; border-left: 4px solid var(--leaf); border-radius: 0 12px 12px 0; background: rgba(255,255,255,.78); box-shadow: var(--shadow); }
.trust-points b { display: block; font-size: 20px; }
.trust-points span { color: var(--muted); }
.review-list { display: grid; gap: 12px; }
.review-list blockquote { margin: 0; padding: 16px; border-left: 4px solid var(--honey); background: rgba(255,248,233,.82); border-radius: 0 12px 12px 0; color: var(--ink); }
.review-list span { display: block; margin-top: 8px; color: var(--muted); font-size: 13px; font-weight: 800; }
.home-faq details, .product-faq details { border-top: 1px solid var(--line); padding: 12px 0; }
.home-faq summary, .product-faq summary { cursor: pointer; font-weight: 900; color: var(--ink); }
.home-faq p, .product-faq p { margin: 8px 0 0; color: var(--muted); }
@media (max-width: 900px) {
  .bundle-grid, .trust-grid, .review-faq-grid { grid-template-columns: 1fr; }
  .quick-grid { grid-template-columns: 62px 1fr; }
}
@media (max-width: 520px) {
  .quick-order { margin-left: 14px; margin-right: 14px; }
  .quick-grid { grid-template-columns: 58px 1fr; }
  .bundle-card h3 { font-size: 23px; }
}


.seo-order-cta {
  margin-top: 24px;
  padding: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,216,121,.22), rgba(36,107,72,.08));
  border: 1px solid rgba(36,107,72,.18);
}
.seo-order-cta h2 { margin-top: 0; }
.seo-faq { margin-top: 22px; }
.seo-product-strip { margin-top: 34px; }
.seo-product-strip .section-head { margin-bottom: 18px; }


/* Footer accordions and city SEO details */
.footer-link-accordion {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.footer-link-accordion details {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px;
  background: rgba(255,255,255,.045);
  overflow: hidden;
}
.footer-link-accordion summary {
  cursor: pointer;
  padding: 12px 13px;
  color: #ffd879;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.footer-link-accordion summary::marker { color: #ffd879; }
.footer-link-accordion a {
  display: block;
  padding: 8px 13px;
  color: #d8c9ad;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer-link-accordion a:hover { color: #fff8e9; background: rgba(255,216,121,.08); }
.city-area-list {
  margin-top: 24px;
  padding: 18px;
  border-radius: 14px;
  border: 1px solid rgba(36,107,72,.18);
  background: rgba(255,253,247,.86);
}
.city-area-list h2 { margin-top: 0 !important; }
.city-area-list div { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.city-area-list span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(36,107,72,.1);
  color: var(--leaf);
  font-weight: 850;
  font-size: 13px;
}
.legal-page { max-width: 980px; }
.legal-page .content-card h2 { margin-top: 24px; }
.legal-note { margin-top: 26px; color: var(--muted); font-size: 14px; }
@media (max-width: 980px) { .footer-link-accordion { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px) { .footer-link-accordion { grid-template-columns: 1fr; gap: 8px; } }


/* Strong sales offers */
.delivery-hero-strip {
  padding: 14px 0;
  background: linear-gradient(135deg, rgba(36,107,72,.96), rgba(217,152,25,.88));
  color: #fff;
  box-shadow: 0 14px 34px rgba(70,45,10,.16);
}
.delivery-strip-inner { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; }
.delivery-strip-inner b { font-size: 18px; }
.delivery-strip-inner span { font-weight: 750; }
.delivery-strip-inner .btn { min-height: 38px; padding: 9px 14px; }
.bundle-price {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 6px 0 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(217,152,25,.15);
  color: var(--honey-dark);
  font-weight: 950;
}
.offer-mini-form, .seo-offer-form {
  display: grid;
  gap: 8px;
  margin-top: 14px;
}
.offer-mini-form input, .seo-offer-form input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 9px 10px;
  background: #fff;
  font-size: 13px;
}
.offer-mini-form .btn, .seo-offer-form .btn { justify-self: start; min-height: 38px; padding: 9px 14px; font-size: 13px; }
.bundle-card .viber-btn { margin-top: 10px; }
.seo-offer-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.seo-offer-form button { grid-column: 1 / -1; }
@media (max-width: 640px) {
  .delivery-strip-inner { align-items: stretch; }
  .delivery-strip-inner .btn { width: 100%; }
  .seo-offer-form { grid-template-columns: 1fr; }
}


/* Story and presentation polish */
.presentation-hero {
  min-height: 620px;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  color: #fff;
  background-image:
    linear-gradient(92deg, rgba(24, 17, 8, .9), rgba(24, 17, 8, .56) 48%, rgba(24, 17, 8, .18)),
    radial-gradient(circle at 78% 70%, rgba(255, 216, 121, .28), transparent 20rem),
    var(--hero);
  background-size: cover;
  background-position: center;
}
.presentation-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(24, 17, 8, .42));
  pointer-events: none;
}
.presentation-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 760px) minmax(220px, 330px);
  gap: 28px;
  align-items: end;
  padding: 90px 0 72px;
}
.presentation-copy h1,
.about-hero h1 {
  margin: 12px 0 18px;
  max-width: 850px;
  font-size: clamp(40px, 6vw, 82px);
  line-height: .95;
  letter-spacing: 0;
}
.presentation-copy p,
.about-hero p {
  max-width: 720px;
  font-size: clamp(17px, 2vw, 22px);
  color: rgba(255,255,255,.88);
}
.presentation-card {
  padding: 24px;
  border-radius: 22px;
  color: var(--ink);
  background: rgba(255, 253, 247, .88);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(14px);
}
.presentation-card b { display: block; font-size: 22px; line-height: 1.15; margin-bottom: 10px; }
.presentation-card span { color: var(--muted); font-weight: 750; }
.story-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  gap: 18px;
}
.story-panel {
  min-height: 210px;
  padding: 30px;
  border: 1px solid rgba(234, 223, 201, .9);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,248,233,.74)),
    radial-gradient(circle at 100% 0, rgba(255,216,121,.2), transparent 15rem);
  box-shadow: var(--shadow);
}
.story-panel h2 { margin: 8px 0 14px; font-size: clamp(28px, 4vw, 48px); line-height: 1.02; }
.story-panel p { color: var(--muted); font-size: 17px; }
.story-panel.accent {
  display: grid;
  align-content: center;
  text-align: center;
  background: linear-gradient(145deg, #fff8e9, #fffdf7);
}
.story-panel.accent b { font-size: clamp(46px, 6vw, 76px); color: var(--honey-dark); line-height: 1; }
.story-panel.accent span { color: var(--leaf); font-weight: 900; }
.heritage-timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.timeline-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 22px;
  background: #fffdf7;
  border: 1px solid rgba(234, 223, 201, .95);
  box-shadow: var(--shadow);
}
.timeline-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background: linear-gradient(180deg, var(--honey), var(--leaf));
}
.timeline-card span {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(217, 152, 25, .14);
  color: var(--honey-dark);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.timeline-card h3 { margin: 14px 0 8px; font-size: 25px; }
.timeline-card p { color: var(--muted); }
.presentation-layout {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 34px;
  align-items: center;
}
.presentation-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.presentation-points div {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 253, 247, .82);
  border: 1px solid rgba(234, 223, 201, .95);
}
.presentation-points b { display: block; font-size: 18px; }
.presentation-points span { color: var(--muted); }
.presentation-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.presentation-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 18px;
  border: 8px solid rgba(255,255,255,.82);
  box-shadow: 0 16px 35px rgba(70,45,10,.14);
}
.presentation-gallery img:nth-child(2),
.presentation-gallery img:nth-child(5) { transform: translateY(18px); }
.presentation-gallery.tight { grid-template-columns: repeat(2, 1fr); }
.presentation-gallery.tight img { height: 220px; }
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  border-radius: 28px;
  color: #fff;
  background:
    radial-gradient(circle at 12% 0, rgba(255,216,121,.34), transparent 18rem),
    linear-gradient(135deg, #2a1a0d, #6e3b05 54%, #246b48);
  box-shadow: var(--shadow-strong);
}
.final-cta h2 { margin: 8px 0 10px; font-size: clamp(28px, 4vw, 48px); line-height: 1.02; }
.final-cta p { max-width: 760px; color: rgba(255,255,255,.86); }
.about-story-band p,
.story-panel p,
.presentation-points span,
.final-cta p { text-wrap: pretty; }
.viber-btn.compact { padding: 10px 15px; font-size: 14px; }

@media (max-width: 900px) {
  .presentation-hero { min-height: auto; }
  .presentation-hero-inner,
  .presentation-layout,
  .story-grid,
  .heritage-timeline {
    grid-template-columns: 1fr;
  }
  .presentation-hero-inner { padding: 70px 0 48px; }
  .presentation-card { max-width: 420px; }
  .presentation-gallery img,
  .presentation-gallery.tight img { height: 150px; }
  .final-cta { align-items: stretch; flex-direction: column; padding: 26px; }
}
@media (max-width: 560px) {
  .presentation-copy h1,
  .about-hero h1 { font-size: 38px; }
  .presentation-gallery { grid-template-columns: repeat(2, 1fr); }
  .presentation-gallery img:nth-child(2),
  .presentation-gallery img:nth-child(5) { transform: none; }
  .story-panel, .timeline-card { padding: 22px; border-radius: 18px; }
}


/* Readability and blog/story fixes */
.section .btn.secondary,
.content-card .btn.secondary,
.story-panel .btn.secondary {
  background: linear-gradient(135deg, #fff, #fff8e9);
  color: var(--ink);
  border: 1px solid var(--line);
}
.hero .btn.secondary,
.presentation-hero .btn.secondary,
.final-cta .btn.secondary { color: #fff; background: rgba(255,255,255,.14); }
.btn.light { color: var(--ink); background: linear-gradient(135deg, #fff, #fff8e9); }
.heritage-story,
.presentation-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.presentation-matrix { grid-template-columns: repeat(4, 1fr); }
.heritage-story article,
.presentation-matrix article {
  padding: 26px;
  border-radius: 22px;
  background: rgba(255,253,247,.86);
  border: 1px solid rgba(234,223,201,.92);
  box-shadow: var(--shadow);
}
.heritage-story span,
.presentation-matrix span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--leaf), var(--honey));
  font-weight: 950;
}
.heritage-story h3,
.presentation-matrix h2 { margin: 16px 0 8px; font-size: 24px; line-height: 1.1; }
.heritage-story p,
.presentation-matrix p { color: var(--muted); margin: 0; }
.partner-card { align-self: end; }
.honey-cta .eyebrow { color: var(--honey-light); }
.blog-featured {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  border-radius: 28px;
  background: #fffdf7;
  border: 1px solid rgba(234,223,201,.92);
  box-shadow: var(--shadow-strong);
}
.blog-featured-media img { width: 100%; height: 100%; min-height: 390px; object-fit: cover; }
.blog-featured-copy { padding: clamp(28px, 4vw, 52px); display: grid; align-content: center; }
.blog-featured-copy h2 { margin: 10px 0 12px; font-size: clamp(30px, 4vw, 54px); line-height: 1.02; }
.blog-featured-copy p { color: var(--muted); font-size: 18px; }
.blog-grid .post-card { overflow: hidden; }
.blog-grid .post-media img { aspect-ratio: 4 / 3; object-fit: cover; }
.blog-grid .post-body h3 { font-size: clamp(20px, 2.2vw, 28px); line-height: 1.12; }
.article-wrap { max-width: 960px; }
.back-link { display: inline-flex; margin-bottom: 18px; color: var(--leaf); font-weight: 900; }
.article-head { margin-bottom: 24px; }
.article-head h1 { margin: 12px 0; font-size: clamp(34px, 5.4vw, 68px); line-height: .98; text-wrap: balance; }
.article-head p { color: var(--muted); font-size: 20px; max-width: 760px; }
.article-figure { margin: 0 0 28px; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); border: 1px solid var(--line); }
.article-figure img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article-body { max-width: 780px; margin: 0 auto; font-size: 19px; line-height: 1.78; }
.article-body p { margin: 0 0 1.25em; text-align: justify; }
.admin-top .actions { margin-top: 0; }
@media (max-width: 980px) {
  .presentation-matrix { grid-template-columns: repeat(2, 1fr); }
  .heritage-story { grid-template-columns: 1fr; }
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-media img { min-height: 260px; }
}
@media (max-width: 560px) {
  .presentation-matrix { grid-template-columns: 1fr; }
  .article-head h1 { font-size: 34px; }
  .article-body { font-size: 17px; line-height: 1.72; }
}


/* Modern footer and editorial blog */
.site-footer {
  position: relative;
  padding: 56px 0 26px;
  background:
    radial-gradient(circle at 12% 0, rgba(255,216,121,.16), transparent 24rem),
    linear-gradient(135deg, #181109 0%, #25180c 45%, #102516 100%);
  border-top: 1px solid rgba(255,216,121,.16);
}
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,216,121,.72), rgba(36,107,72,.78), transparent);
}
.footer-grid {
  align-items: start;
  gap: 24px;
  padding-bottom: 22px;
}
.footer-grid h3,
.footer-link-accordion summary {
  color: #fff8e9;
  letter-spacing: 0;
}
.footer-grid p,
.site-footer a,
.site-footer p { color: rgba(249,239,217,.74); }
.copyright-warning {
  border-color: rgba(255,216,121,.22);
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
}
.footer-link-accordion {
  margin-top: 22px;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,216,121,.16);
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
}
.footer-link-accordion details {
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.08);
}
.footer-link-accordion summary {
  padding: 3px 2px 10px;
  font-weight: 850;
}
.footer-link-accordion a {
  border-radius: 10px;
  padding: 7px 8px;
}
.footer-signature {
  margin-top: 18px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(255,255,255,.11);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: rgba(249,239,217,.66);
  font-size: 13px;
}
.footer-signature a {
  color: #ffd879;
  font-weight: 800;
}
.footer-signature a:hover { color: #fff8e9; }
.blog-intro-section { padding-bottom: 36px; }
.editorial-featured {
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255,253,247,.96), rgba(255,248,233,.9)),
    radial-gradient(circle at 100% 0, rgba(217,152,25,.16), transparent 18rem);
}
.editorial-featured .blog-featured-copy h2 { font-size: clamp(30px, 3.6vw, 52px); }
.blog-list-section { padding-top: 48px; }
.blog-list {
  display: grid;
  gap: 18px;
}
.blog-row {
  display: grid;
  grid-template-columns: minmax(260px, 380px) minmax(0, 1fr);
  gap: 0;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,253,247,.92);
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 16px 40px rgba(70,45,10,.11);
  transition: transform .18s ease, box-shadow .18s ease;
}
.blog-row:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 54px rgba(70,45,10,.16);
}
.blog-row-media {
  min-height: 230px;
  background: #efe3c9;
}
.blog-row-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.blog-row:hover .blog-row-media img { transform: scale(1.035); }
.blog-row-copy {
  padding: clamp(22px, 3vw, 34px);
  display: grid;
  align-content: center;
}
.blog-row-copy h3 {
  margin: 10px 0 10px;
  font-size: clamp(23px, 2.5vw, 34px);
  line-height: 1.08;
  letter-spacing: 0;
}
.blog-row-copy p {
  max-width: 760px;
  color: var(--muted);
  margin: 0 0 14px;
  font-size: 16px;
}
.read-more-link {
  justify-self: start;
  color: var(--leaf);
  font-weight: 950;
  border-bottom: 2px solid rgba(36,107,72,.25);
}
.read-more-link:hover { color: var(--honey-dark); border-color: rgba(217,152,25,.55); }
@media (max-width: 760px) {
  .footer-link-accordion {
    padding: 10px;
    border-radius: 18px;
  }
  .footer-link-accordion details:not([open]) { padding-bottom: 0; }
  .footer-link-accordion summary { padding: 10px 8px; }
  .footer-signature {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .blog-row {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }
  .blog-row-media { min-height: 210px; }
  .blog-row-copy { padding: 22px; }
  .blog-featured-copy h2,
  .blog-row-copy h3 { text-wrap: balance; }
}


/* Final sales polish */
.order-roadmap { padding: 34px 0 10px; }
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.roadmap-grid article {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255,253,247,.86);
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 14px 34px rgba(70,45,10,.1);
}
.roadmap-grid b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--honey), var(--leaf));
  margin-bottom: 12px;
}
.roadmap-grid h3 { margin: 0 0 6px; font-size: 20px; line-height: 1.1; }
.roadmap-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.related-section .section-head { margin-bottom: 18px; }
.related-list {
  display: grid;
  gap: 12px;
}
.related-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 10px;
  border-radius: 18px;
  background: rgba(255,253,247,.92);
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 12px 28px rgba(70,45,10,.08);
}
.related-item img {
  width: 96px;
  height: 74px;
  object-fit: cover;
  border-radius: 12px;
}
.related-item b {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.15;
  margin-bottom: 4px;
}
.related-item small {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
}
.related-item:hover b { color: var(--honey-dark); }
.footer-link-accordion details:first-child {
  max-height: 460px;
  overflow: auto;
  scrollbar-width: thin;
}
@media (max-width: 900px) {
  .roadmap-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 560px) {
  .roadmap-grid { grid-template-columns: 1fr; }
  .order-roadmap { padding-top: 22px; }
  .related-item { grid-template-columns: 82px minmax(0, 1fr); gap: 12px; }
  .related-item img { width: 82px; height: 66px; }
  .related-item b { font-size: 15px; }
}


/* Remaining conversion improvements */
.catalog-assist { padding-top: 28px; padding-bottom: 0; }
.assist-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
  gap: 12px;
  align-items: stretch;
}
.assist-grid article {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,253,247,.88);
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 12px 28px rgba(70,45,10,.08);
}
.assist-grid article b { display: block; font-size: 17px; margin-bottom: 5px; }
.assist-grid article span { color: var(--muted); font-size: 14px; }
.assist-grid > .btn { align-self: center; white-space: nowrap; }
.related-products-section .section-head { margin-bottom: 20px; }
.mobile-product-bar {
  display: none;
}
.home-blog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.home-blog-item {
  min-height: 210px;
  padding: 24px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255,253,247,.92), rgba(255,248,233,.82)),
    radial-gradient(circle at 100% 0, rgba(217,152,25,.14), transparent 14rem);
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 14px 34px rgba(70,45,10,.1);
  display: grid;
  align-content: start;
  transition: transform .18s ease, box-shadow .18s ease;
}
.home-blog-item:hover { transform: translateY(-3px); box-shadow: 0 22px 48px rgba(70,45,10,.16); }
.home-blog-item span { color: var(--honey-dark); font-weight: 950; font-size: 13px; }
.home-blog-item b { margin: 10px 0 8px; font-size: 24px; line-height: 1.08; }
.home-blog-item small { color: var(--muted); font-size: 14px; line-height: 1.5; }
@media (max-width: 980px) {
  .assist-grid { grid-template-columns: 1fr 1fr; }
  .assist-grid > .btn { grid-column: 1 / -1; justify-self: start; }
  .home-blog-list { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  body:has(.mobile-product-bar) { padding-bottom: 78px; }
  .mobile-product-bar {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 60;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 10px;
    border-radius: 18px;
    background: rgba(255,253,247,.94);
    border: 1px solid rgba(234,223,201,.96);
    box-shadow: 0 18px 54px rgba(33,25,15,.26);
    backdrop-filter: blur(14px);
  }
  .mobile-product-bar span { min-width: 0; }
  .mobile-product-bar b {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
  }
  .mobile-product-bar small { color: var(--honey-dark); font-weight: 950; }
  .mobile-product-bar .btn { min-height: 38px; padding: 8px 13px; }
}
@media (max-width: 560px) {
  .assist-grid { grid-template-columns: 1fr; }
  .assist-grid > .btn { width: 100%; }
  .home-blog-item { min-height: 0; padding: 20px; }
  .home-blog-item b { font-size: 21px; }
}


/* Choice helper and occasion conversion blocks */
.quick-choice-section { padding: 30px 0 8px; }
.quick-choice-panel,
.honey-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 0%, rgba(217,152,25,.18), transparent 16rem),
    linear-gradient(135deg, rgba(255,253,247,.96), rgba(255,248,232,.9));
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 18px 52px rgba(70,45,10,.12);
}
.quick-choice-copy h2 { margin: 8px 0 8px; font-size: clamp(30px, 4vw, 54px); line-height: .98; }
.quick-choice-copy p { color: var(--muted); max-width: 680px; }
.quick-choice-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.quick-choice-options a,
.occasion-card,
.choice-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(234,223,201,.96);
  box-shadow: 0 12px 30px rgba(70,45,10,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.quick-choice-options a { padding: 18px; min-height: 108px; display: grid; align-content: end; }
.quick-choice-options a::before,
.occasion-card::before,
.choice-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--honey), var(--leaf));
}
.quick-choice-options b,
.occasion-card b { display: block; color: var(--ink); font-size: 20px; line-height: 1.05; }
.quick-choice-options span,
.occasion-card span { color: var(--muted); font-size: 14px; }
.quick-choice-options a:hover,
.occasion-card:hover,
.choice-card:hover { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(70,45,10,.14); border-color: rgba(36,107,72,.28); }
.choice-hero { background: linear-gradient(135deg, rgba(255,248,232,.98), rgba(246,255,244,.94)); }
.choice-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
}
.choice-note {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 16px 38px rgba(70,45,10,.1);
}
.choice-note b { display: block; font-size: 24px; margin-bottom: 8px; }
.choice-note span { color: var(--muted); line-height: 1.55; }
.choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.choice-card { padding: 24px; display: grid; align-content: start; gap: 12px; }
.choice-card > span { color: var(--honey-dark); font-weight: 950; font-size: 13px; }
.choice-card h2 { margin: 0; font-size: clamp(22px, 2.1vw, 30px); line-height: 1.04; }
.choice-card p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.choice-tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 2px 0 4px; }
.choice-tags b {
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--leaf);
  background: rgba(36,107,72,.08);
  font-size: 12px;
  text-transform: uppercase;
}
.choice-card .btn { justify-self: start; }
.choice-card .compact { min-height: 36px; padding: 8px 13px; font-size: 13px; }
.occasion-section { padding-top: 28px; }
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.occasion-card { min-height: 128px; padding: 18px; display: grid; align-content: end; }
.honey-cta { grid-template-columns: minmax(0, 1fr) auto; }
.honey-cta h2 { margin: 8px 0; font-size: clamp(28px, 3.4vw, 46px); line-height: 1.02; }
.honey-cta p { color: var(--muted); max-width: 760px; }
@media (max-width: 1100px) {
  .choice-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .occasion-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .quick-choice-panel,
  .choice-hero-inner,
  .honey-cta { grid-template-columns: 1fr; }
  .quick-choice-options,
  .choice-grid,
  .occasion-grid { grid-template-columns: 1fr; }
  .quick-choice-panel,
  .honey-cta { border-radius: 22px; padding: 20px; }
  .choice-card { padding: 20px; }
  .choice-card .btn { width: 100%; }
  .honey-cta .btn { justify-self: start; width: 100%; }
}


/* City SEO order strip */
.city-order-section { padding: 28px 0 6px; }
.city-order-panel {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: 22px;
  align-items: center;
  padding: clamp(20px, 3vw, 30px);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(246,255,244,.94), rgba(255,253,247,.96));
  border: 1px solid rgba(36,107,72,.16);
  box-shadow: 0 14px 36px rgba(70,45,10,.08);
}
.city-order-panel h2 { margin: 7px 0 8px; font-size: clamp(27px, 3vw, 42px); line-height: 1.02; }
.city-order-panel p { margin: 0; color: var(--muted); max-width: 660px; }
.city-order-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}
.city-order-links a {
  min-height: 42px;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--leaf);
  font-weight: 950;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(36,107,72,.2);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 8px 20px rgba(70,45,10,.06);
}
.city-order-links a:hover { color: #fff; background: linear-gradient(135deg, var(--leaf), #43a66f); }
@media (max-width: 860px) {
  .city-order-panel { grid-template-columns: 1fr; }
  .city-order-links { justify-content: flex-start; }
}
@media (max-width: 520px) {
  .city-order-links a { flex: 1 1 calc(50% - 10px); text-align: center; }
}


/* Extra sales pages and stronger product actions */
.gift-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}
.gift-hero-inner img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 22px 58px rgba(70,45,10,.16);
  border: 1px solid rgba(234,223,201,.95);
}
.gift-occasion-grid { margin-top: -12px; }
.package-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}
.package-card {
  padding: 24px;
  border-radius: 24px;
  display: grid;
  align-content: start;
  gap: 10px;
  background: linear-gradient(145deg, rgba(255,253,247,.96), rgba(255,248,232,.88));
}
.package-card > b { color: var(--leaf); text-transform: uppercase; font-size: 13px; }
.package-card h2 { margin: 0; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.02; }
.package-card p { color: var(--muted); margin: 0; font-size: 15px; }
.package-card .btn { margin-top: 6px; align-self: end; }
.package-note { max-width: 900px; margin: 0 auto; }
.viber-choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.viber-choice-row .btn,
.product-actions .alt-viber,
.product-actions .viber-btn {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 13px;
}
.product-choice-guide {
  margin: 22px 0;
  display: grid;
  gap: 10px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(246,255,244,.9), rgba(255,253,247,.94));
  border: 1px solid rgba(36,107,72,.18);
}
.product-choice-guide h2 { margin: 0 0 4px; font-size: 22px; }
.product-choice-guide div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding-top: 10px;
  border-top: 1px solid rgba(36,107,72,.14);
}
.product-choice-guide span { color: var(--leaf); font-weight: 950; }
.product-choice-guide b { font-size: 15px; line-height: 1.35; }
.sales-link-strip { padding: 24px 0 8px; }
.sales-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.sales-link-grid a {
  position: relative;
  min-height: 118px;
  padding: 20px 20px 20px 26px;
  border-radius: 22px;
  background: rgba(255,253,247,.9);
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 14px 34px rgba(70,45,10,.09);
  display: grid;
  align-content: end;
  overflow: hidden;
}
.sales-link-grid a::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--honey), var(--leaf));
}
.sales-link-grid b { font-size: 24px; line-height: 1.05; }
.sales-link-grid span { color: var(--muted); font-size: 14px; }
.sales-link-grid a:hover { transform: translateY(-3px); box-shadow: 0 22px 46px rgba(70,45,10,.14); }
@media (max-width: 1180px) {
  .package-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .gift-hero-inner,
  .sales-link-grid { grid-template-columns: 1fr; }
  .package-grid { grid-template-columns: 1fr; }
  .product-choice-guide div { grid-template-columns: 1fr; gap: 3px; }
  .viber-choice-row .btn { flex: 1 1 100%; }
}


/* Visual cleanup after sales additions */
@media (min-width: 981px) {
  .header-inner { min-height: 76px; gap: 16px; }
  .brand-logo { height: 54px; max-width: 138px; }
  .nav { gap: 5px; font-size: 14px; font-weight: 850; }
  .nav a { padding: 8px 9px; }
  .cart-link { padding: 9px 12px; }
  .social-link { width: 34px; height: 34px; }
}
.product-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-items: stretch;
}
.product-actions form { min-width: 0; }
.product-actions .btn {
  width: 100%;
  min-height: 40px;
  padding: 9px 12px;
  font-size: 13px;
}
.product-card .product-media {
  aspect-ratio: 4 / 3;
  background: rgba(255,248,232,.8);
}
.product-card .product-media img,
.hero-slide {
  object-position: center center;
}
.hero-content {
  max-width: 640px;
}
@media (max-width: 760px) {
  .product-actions { grid-template-columns: 1fr; }
  .hero { min-height: 78vh; }
  .hero-content { margin-bottom: 18px; }
}


/* Mobile visibility cleanup */
@media (max-width: 760px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 10px;
    width: auto;
    transform: none;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 16px;
  }
  .cookie-banner b { font-size: 14px; }
  .cookie-banner span { display: block; font-size: 12px; line-height: 1.25; }
  .cookie-banner .btn { min-height: 38px; padding: 8px 12px; white-space: nowrap; flex: 0 0 auto; }
  body.cookie-open .floating-phone { bottom: 92px; }
  .filters {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding: 0 0 8px;
    margin-top: 18px;
    scrollbar-width: thin;
  }
  .filters a { white-space: nowrap; padding: 8px 12px; font-size: 14px; }
  .catalog-assist { padding-top: 18px; }
  .page-hero { padding-bottom: 36px; }
}
@media (max-width: 390px) {
  .cookie-banner { padding: 9px 10px; }
  .cookie-banner span { font-size: 11px; }
  .cookie-banner .btn { min-height: 36px; padding: 7px 10px; }
}

/* Final mobile action cleanup */
.product-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.product-actions .viber-btn {
  background: linear-gradient(135deg, #7c4dff, #6b36c9);
  color: #fff;
}
@media (max-width: 760px) {
  .product-actions {
    grid-template-columns: 1fr 1fr;
  }
  .product-actions .btn {
    min-height: 42px;
    font-size: 13px;
  }
  body.cookie-open .back-top { bottom: 92px; }
}
@media (max-width: 420px) {
  .product-actions {
    grid-template-columns: 1fr;
  }
}


/* Home reorder and calmer real-photo collage */
.honey-story .story-grid {
  grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: center;
}
.honey-story .story-collage {
  min-height: 540px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.honey-story .story-collage::before { display: none; }
.honey-story .collage-img {
  position: static;
  width: 100% !important;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-width: 6px;
  border-radius: 22px;
  transform: none;
  box-shadow: 0 18px 42px rgba(70,45,10,.14);
}
.honey-story .collage-img-1 {
  grid-row: 1 / 3;
  min-height: 540px;
}
.honey-story .collage-img-5 { display: none; }
.city-order-section {
  padding: 34px 0 22px;
}
.city-order-panel {
  box-shadow: 0 12px 30px rgba(70,45,10,.07);
}
@media (max-width: 900px) {
  .honey-story .story-grid { grid-template-columns: 1fr; }
  .honey-story .story-collage {
    min-height: 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }
  .honey-story .collage-img,
  .honey-story .collage-img-1 {
    min-height: 190px;
    aspect-ratio: 4 / 3;
  }
  .honey-story .collage-img-1 { grid-row: auto; }
}
@media (max-width: 560px) {
  .honey-story .story-collage { grid-template-columns: 1fr; gap: 10px; }
  .honey-story .collage-img:nth-of-type(n+4) { display: none; }
}

/* Story section final: photos breathe under the copy */
.honey-story .story-grid {
  grid-template-columns: 1fr;
  gap: 28px;
}
.honey-story .story-copy {
  max-width: 760px;
}
.honey-story .story-collage {
  min-height: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto;
  gap: 14px;
}
.honey-story .collage-img,
.honey-story .collage-img-1 {
  grid-row: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
  height: auto;
}
.honey-story .collage-img-5 { display: none; }
@media (max-width: 900px) {
  .honey-story .story-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .honey-story .story-collage {
    grid-template-columns: 1fr;
  }
}


/* Мед и пчелни продукти showcase */
.med-showcase-hero {
  background:
    radial-gradient(circle at 10% 18%, rgba(255,216,121,.35), transparent 18rem),
    linear-gradient(135deg, rgba(255,248,232,.98), rgba(246,255,244,.9));
}
.med-showcase-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 410px);
  gap: clamp(20px, 4vw, 48px);
  align-items: center;
}
.med-showcase-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.med-showcase-stats b {
  min-width: 132px;
  padding: 14px 16px;
  border-radius: 18px;
  color: var(--honey-dark);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 12px 28px rgba(70,45,10,.08);
  font-size: 26px;
  line-height: 1;
}
.med-showcase-stats span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  margin-top: 7px;
}
.med-showcase-note {
  padding: clamp(22px, 3vw, 30px);
  border-radius: 26px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(234,223,201,.96);
  box-shadow: 0 18px 48px rgba(70,45,10,.11);
}
.med-showcase-note b { display: block; font-size: 26px; margin-bottom: 8px; }
.med-showcase-note p { margin: 0; color: var(--muted); }
.med-category-nav-section { padding: 30px 0 4px; }
.med-category-nav {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.med-category-nav a {
  min-height: 96px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,253,247,.9);
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 10px 24px rgba(70,45,10,.07);
  display: grid;
  align-content: space-between;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.med-category-nav a:hover {
  transform: translateY(-3px);
  border-color: rgba(36,107,72,.28);
  box-shadow: 0 18px 38px rgba(70,45,10,.13);
}
.med-category-nav b { line-height: 1.08; }
.med-category-nav span { color: var(--leaf); font-weight: 900; font-size: 13px; }
.med-product-group { padding-top: 42px; }
.med-product-group:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(255,253,247,.75), rgba(255,248,233,.55));
}
.med-group-head {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(234,223,201,.9);
}
.med-showcase-products { align-items: stretch; }
@media (max-width: 1180px) {
  .med-category-nav { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .med-showcase-hero-inner { grid-template-columns: 1fr; }
  .med-category-nav {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }
  .med-category-nav a { min-width: 180px; }
  .med-group-head { align-items: start; }
  .med-group-head .btn { width: 100%; }
}
@media (max-width: 520px) {
  .med-showcase-stats b { flex: 1 1 calc(50% - 12px); min-width: 0; }
}


/* Refined choice helper page */
.choice-hero-visual .choice-hero-inner {
  grid-template-columns: minmax(0, .95fr) minmax(300px, .75fr);
}
.choice-hero-photo {
  margin: 0;
  border-radius: 28px;
  padding: 8px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 20px 52px rgba(70,45,10,.14);
}
.choice-hero-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
}
.choice-hero-photo figcaption {
  padding: 10px 8px 4px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
.choice-intro-section { padding: 28px 0 0; }
.choice-intro-panel {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
  border-radius: 22px;
  background: rgba(255,253,247,.9);
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 12px 30px rgba(70,45,10,.08);
}
.choice-intro-panel b {
  flex: 0 0 auto;
  color: var(--honey-dark);
  text-transform: uppercase;
  font-size: 13px;
}
.choice-intro-panel p { margin: 0; color: var(--muted); }
.choice-card-section { padding-top: 36px; }
.choice-grid-visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.choice-card-photo {
  padding: 0;
  display: grid;
  grid-template-columns: minmax(180px, .62fr) minmax(0, 1fr);
  gap: 0;
  align-content: stretch;
}
.choice-card-photo::before { width: 0; }
.choice-card-media {
  min-height: 100%;
  background: rgba(255,248,232,.9);
}
.choice-card-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform .45s ease;
}
.choice-card-photo:hover .choice-card-media img { transform: scale(1.035); }
.choice-card-copy {
  padding: 24px;
  display: grid;
  gap: 11px;
}
.choice-card-copy > span {
  color: var(--honey-dark);
  font-weight: 950;
  font-size: 13px;
}
.choice-card-copy h2 { margin: 0; font-size: clamp(23px, 2.2vw, 32px); line-height: 1.04; }
.choice-card-copy p { margin: 0; color: var(--muted); font-size: 15px; line-height: 1.5; }
.choice-hint {
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(36,107,72,.08);
  color: var(--leaf) !important;
  font-weight: 850;
}
.choice-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px; }
.choice-actions .btn { min-height: 38px; padding: 8px 13px; font-size: 13px; }
.choice-final-cta h2 { max-width: 920px; }
@media (max-width: 1080px) {
  .choice-grid-visual { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .choice-hero-visual .choice-hero-inner,
  .choice-card-photo { grid-template-columns: 1fr; }
  .choice-intro-panel { align-items: flex-start; flex-direction: column; gap: 8px; }
  .choice-card-media img { min-height: 220px; aspect-ratio: 4 / 3; }
  .choice-card-copy { padding: 20px; }
  .choice-actions .btn { width: 100%; }
}


/* About page calmer readable layout */
.about-hero h1 {
  font-size: clamp(34px, 4vw, 54px);
  max-width: 11em;
}
.about-hero p {
  max-width: 760px;
  font-size: clamp(17px, 1.45vw, 20px);
}
.about-story-band {
  align-items: center;
}
.about-story-band .page-title {
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
  max-width: 780px;
}
.values-grid {
  align-items: stretch;
  gap: 18px;
}
.values-grid .story-panel {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 10px;
  padding: clamp(22px, 3vw, 30px);
  border-radius: 22px;
  background: rgba(255,253,247,.92);
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 14px 34px rgba(70,45,10,.08);
}
.values-grid .story-panel h2 {
  margin: 0;
  font-size: clamp(23px, 2.2vw, 31px);
  line-height: 1.12;
  text-wrap: balance;
}
.values-grid .story-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
}
.values-grid .story-panel .eyebrow {
  color: var(--honey-dark);
  font-size: 12px;
}
.heritage-story article {
  min-height: 100%;
}
@media (max-width: 760px) {
  .about-hero h1 { font-size: clamp(31px, 9vw, 40px); }
  .about-story-band .page-title { font-size: 29px; }
  .values-grid .story-panel h2 { font-size: 24px; }
}

/* About page readability polish */
.story-hero .container {
  max-width: 900px;
}
.story-hero .eyebrow,
.about-story-band .eyebrow {
  color: #5a300b;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(122, 77, 16, .16);
  box-shadow: 0 10px 24px rgba(61, 35, 5, .08);
}
.story-hero h1 {
  max-width: 820px;
  font-size: clamp(36px, 5vw, 62px);
  line-height: 1.02;
  text-wrap: balance;
}
.story-hero p {
  max-width: 720px;
  color: #4b3218;
  background: rgba(255, 255, 255, .78);
  border-left: 4px solid rgba(158, 103, 24, .42);
  padding: 14px 18px;
  border-radius: 14px;
  line-height: 1.65;
}
.about-story-band .page-title {
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.08;
  max-width: 760px;
}
.about-story-band p {
  max-width: 760px;
  color: #57442b;
  font-size: 17px;
  line-height: 1.78;
}
.values-grid {
  align-items: stretch;
}
@media (max-width: 720px) {
  .story-hero h1 { font-size: clamp(30px, 9vw, 42px); }
  .story-hero p { font-size: 15px; padding: 12px 14px; }
  .about-story-band .page-title { font-size: 28px; }
  .about-story-band p { font-size: 15.5px; line-height: 1.68; }
}

/* About final CTA readable on light honey background */
.about-final-cta {
  color: var(--ink);
  background:
    radial-gradient(circle at 9% 0%, rgba(217,152,25,.18), transparent 16rem),
    linear-gradient(135deg, rgba(255,253,247,.97), rgba(246,255,244,.94));
  border: 1px solid rgba(234,223,201,.95);
}
.about-final-cta .eyebrow {
  color: var(--honey-dark);
  background: rgba(255,255,255,.72);
  border-color: rgba(122,77,16,.16);
}
.about-final-cta h2 {
  color: #2a1a0d;
  text-shadow: none;
}
.about-final-cta p {
  color: #5b4a35;
}
@media (max-width: 720px) {
  .about-final-cta h2 { font-size: 27px; line-height: 1.1; }
}


/* Contact page richer layout */
.contact-hero {
  background:
    linear-gradient(90deg, rgba(255,253,247,.94), rgba(255,248,232,.84)),
    url('img/hero-real-honey.jpg') center/cover no-repeat;
}
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: clamp(18px, 4vw, 44px);
  align-items: end;
}
.contact-hero h1 {
  max-width: 800px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  text-wrap: balance;
}
.contact-hero p {
  max-width: 720px;
  color: #4d3b24;
  font-size: 18px;
  line-height: 1.65;
}
.contact-quick-card {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 18px 45px rgba(70,45,10,.12);
}
.contact-quick-card b { display: block; color: var(--ink); font-size: 24px; margin-bottom: 8px; }
.contact-quick-card span { color: var(--muted); line-height: 1.55; }
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .75fr);
  gap: 18px;
  align-items: start;
}
.contact-main,
.contact-side { display: grid; gap: 18px; }
.contact-card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 3vw, 32px);
  border-radius: 24px;
  background: rgba(255,253,247,.94);
  border: 1px solid rgba(234,223,201,.96);
  box-shadow: 0 16px 42px rgba(70,45,10,.09);
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background: linear-gradient(180deg, var(--honey), var(--leaf));
}
.contact-card h2 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(25px, 2.8vw, 40px);
  line-height: 1.08;
  text-wrap: balance;
}
.contact-card p { color: var(--muted); line-height: 1.65; }
.contact-methods {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.contact-methods a {
  min-height: 96px;
  padding: 16px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(234,223,201,.95);
  box-shadow: 0 10px 24px rgba(70,45,10,.07);
}
.contact-methods b { display: block; color: var(--leaf); font-size: 13px; text-transform: uppercase; margin-bottom: 7px; }
.contact-methods span { display: block; color: var(--ink); font-weight: 800; overflow-wrap: anywhere; }
.contact-form-card form { margin-top: 12px; }
.contact-form-card textarea { min-height: 150px; }
.error-notice { background:#fff2f2; border-color:#efb4b4; color:#8d1d1d; }
.map-card { padding-bottom: 18px; }
.map-frame {
  height: 310px;
  margin: 18px -12px 0;
  border-radius: 22px;
  overflow: hidden;
  border: 8px solid rgba(255,255,255,.82);
  box-shadow: inset 0 0 0 1px rgba(70,45,10,.08), 0 14px 34px rgba(70,45,10,.1);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; filter: saturate(.96) contrast(1.02); }
.delivery-card ul {
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
  list-style: none;
}
.delivery-card li {
  padding: 10px 12px;
  border-radius: 14px;
  color: #4d3b24;
  background: rgba(36,107,72,.08);
  border: 1px solid rgba(36,107,72,.12);
}
@media (max-width: 980px) {
  .contact-hero-grid,
  .contact-layout { grid-template-columns: 1fr; }
  .contact-methods { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .contact-hero h1 { font-size: clamp(32px, 10vw, 44px); }
  .contact-hero p { font-size: 15.5px; }
  .contact-hero-actions { gap: 8px; }
  .contact-card { border-radius: 20px; padding: 20px; }
  .contact-card h2 { font-size: 25px; }
  .map-frame { height: 260px; margin-left: -6px; margin-right: -6px; border-width: 6px; }
}


/* Final contact and offer polish */
.contact-hero .eyebrow {
  color: #fff;
  background: linear-gradient(135deg, #6f3f0b, #246b48);
  border-color: rgba(255,255,255,.35);
  text-shadow: 0 1px 2px rgba(0,0,0,.28);
}
.offer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}
.offer-actions .btn { margin-top: 0; }
.admin-delete-form { margin-top: 12px; }
.admin-delete-form .btn { min-height: 36px; padding: 8px 12px; font-size: 13px; }
@media (max-width: 720px) {
  .offer-actions { flex-direction: column; align-items: stretch; }
  .offer-actions .btn { width: 100%; }
}
