:root {
  --cream: #eef1d8;
  --cream-2: #e6e6c6;
  --olive: #7c8c4a;
  --olive-dark: #4a5a22;
  --gold: #c9c94a;
  --mauve: #b28e86;
  --dark: #33361f;
  --gray: #6b6a52;
  --card-bg: #ffffff;
  --radius: 14px;
  --shadow: 0 6px 18px rgba(51, 54, 31, 0.1);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: var(--cream);
  color: var(--dark);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid #dfe0bd;
}
.site-header .top-bar {
  display: flex;
  align-items: center;
  padding: 14px 0;
  gap: 22px;
  flex-wrap: wrap;
}

.logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-family: 'Caveat', 'Segoe UI', cursive;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: .015em;
  white-space: nowrap;
  padding: 6px 6px;
  flex-shrink: 0;
  color: var(--olive-dark);
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}
.logo::before {
  content: "";
  position: absolute;
  inset: -16px -22px;
  background: radial-gradient(circle, rgba(201,201,74,0.4) 0%, rgba(124,140,74,0.22) 45%, transparent 75%);
  filter: blur(8px);
  z-index: -1;
  border-radius: 50%;
}
.logo span {
  color: #b57a4a;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
}

.catalog-pill {
  background: var(--olive-dark);
  color: #fff;
  padding: 10px 22px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .03em;
  flex-shrink: 0;
}
.catalog-pill:hover { background: var(--olive); }

.main-nav { flex: 0 1 auto; min-width: 0; }
.main-nav ul {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.main-nav a {
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .03em;
  color: var(--dark);
  text-transform: uppercase;
}
.main-nav a:hover { color: var(--olive-dark); }
.nav-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 13px;
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  color: #fff;
  transition: transform .15s, box-shadow .15s;
}
.nav-social:hover { transform: translateY(-3px); box-shadow: 0 10px 18px rgba(51,54,31,0.22); }
.nav-social svg { width: 16px; height: 16px; display: block; }
.icon-telegram { background: #29A9EA; }
.icon-whatsapp-brand { background: #25D366; }
.icon-max { background: linear-gradient(135deg, #8C6CFF, #5B3DF5); font-family: 'Segoe UI', Arial, sans-serif; }
.mobile-socials { display: none; align-items: center; gap: 10px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  margin-left: auto;
}
.phone-link { font-weight: 700; white-space: nowrap; color: var(--dark); }
.icon-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 15px;
}
.cart-btn {
  position: relative;
  display: flex; align-items: center; gap: 4px;
  width: 34px; height: 34px;
  justify-content: center;
}
.cart-count {
  position: absolute;
  top: -6px; right: -6px;
  background: var(--olive-dark);
  color: #fff;
  border-radius: 50%;
  min-width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px;
}

.burger {
  display: none;
  background: none; border: none; font-size: 26px; cursor: pointer; color: var(--dark);
}

/* Marquee */
.marquee {
  background: var(--olive-dark);
  color: #eef1d8;
  overflow: hidden;
  white-space: nowrap;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}
.marquee-track {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 22s linear infinite;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 50px 0 110px;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-decor .star-sm {
  position: absolute;
  color: var(--gold);
  opacity: .8;
}
.hero-decor .dot {
  position: absolute;
  border-radius: 50%;
}
.hero-decor .mini-balloon {
  position: absolute;
  animation: bob 5s ease-in-out infinite;
}
.hero-decor .mini-balloon:nth-child(even) { animation-duration: 6.5s; animation-delay: -2s; }
.hero-decor .mini-balloon:nth-child(3n) { animation-duration: 4.2s; animation-delay: -1s; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
.hero-text { flex: 1; min-width: 280px; }
.hero-text h1 {
  font-size: 46px;
  line-height: 1.15;
  margin: 0 0 6px;
  font-weight: 800;
  letter-spacing: .01em;
}
.hero-text .accent {
  display: block;
  font-family: 'Brush Script MT', cursive;
  font-size: 42px;
  color: var(--olive-dark);
  margin-top: 6px;
}
.hero-img {
  flex: 1.3;
  min-width: 300px;
  max-width: 560px;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
}
.hero-img .photo-bg {
  width: 100%;
  display: block;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 68%);
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 68%);
}
.hero-img.framed { max-width: 380px; padding: 10px 8% 20px 0; }
.hero-img.framed::before {
  content: "";
  position: absolute;
  inset: -24px;
  background: radial-gradient(circle, rgba(201,201,74,0.4) 0%, rgba(124,140,74,0.22) 45%, transparent 72%);
  filter: blur(18px);
  z-index: -1;
  border-radius: 50%;
}
.hero-img .photo-framed {
  width: 100%;
  border-radius: 20px;
  border: 6px solid #fff;
  box-shadow: 0 18px 36px rgba(51,54,31,0.28);
  transform: rotate(-3deg);
  transition: transform .2s;
}
.hero-img .photo-framed:hover { transform: rotate(0deg); }
.hero-star {
  position: absolute;
  color: var(--gold);
  font-size: 34px;
}
.hero-wave {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  width: 100%;
  line-height: 0;
  z-index: 1;
}

/* Badges row */
.badges-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 34px 0 10px;
}
.badge {
  text-align: center;
  width: 110px;
}
.badge .circle {
  width: 70px; height: 70px;
  border-radius: 50%;
  border: 2px solid var(--olive);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 10px;
  font-size: 28px;
  background: #fff;
}
.badge span.label {
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
}

.btn {
  display: inline-block;
  background: var(--olive-dark);
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-size: 14px;
  transition: background .15s, transform .15s;
}
.btn:hover { background: var(--olive); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  border: 2px solid var(--olive-dark);
  color: var(--olive-dark);
}
.btn-outline:hover { background: var(--olive-dark); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 8px 16px; font-size: 12px; }

.section { padding: 50px 0; }
.section-title {
  font-size: 26px;
  text-align: center;
  margin: 0 0 30px;
  font-weight: 700;
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 18px;
}
.category-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  transition: transform .15s;
}
.category-card:hover { transform: translateY(-4px); }
.category-card img { aspect-ratio: 1/1; object-fit: cover; }
.category-card .label { padding: 12px; }

/* Product grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 22px;
}
.product-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .15s;
}
.product-card:hover { transform: translateY(-4px); }
.product-card img { aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.product-card .info { padding: 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-card h3 { font-size: 15px; margin: 0; min-height: 40px; }
.product-card .price { font-size: 18px; font-weight: 800; color: var(--olive-dark); margin-top: auto; }
.product-card .actions { display: flex; gap: 8px; text-transform: uppercase; }
.product-card .actions .btn { flex: 1; text-align: center; font-size: 11px; padding: 10px 8px; }

.load-more-wrap { text-align: center; margin-top: 30px; }

/* Filters */
.catalog-layout { display: flex; gap: 30px; align-items: flex-start; }
.catalog-open-wrap { display: none; text-align: center; padding: 4px 0 22px; }
.filters {
  width: 220px; flex-shrink: 0;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  position: sticky; top: 90px;
}
.filters h4 { margin-top: 0; }
.filters a {
  display: block; width: 100%; text-align: left;
  background: none; border: none; padding: 8px 0;
  font-size: 14px; cursor: pointer; color: var(--dark); font-weight: 600;
  text-decoration: none;
}
.filters a.active, .filters a:hover { color: var(--olive-dark); }

/* About */
.about-block { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
.about-block .photo { flex: 1; min-width: 260px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.about-block .text { flex: 1.3; min-width: 280px; }
.about-block .text h2 { margin-top: 0; }

/* Reviews */
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.yandex-reviews-widget { width: 560px; max-width: 100%; height: 800px; overflow: hidden; position: relative; }
.yandex-reviews-widget iframe { width: 100%; height: 100%; }
@media (max-width: 600px) {
  .yandex-reviews-widget { height: 640px; }
}
.review-card { background: var(--card-bg); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; }
.review-card .stars { color: var(--gold); margin-bottom: 8px; }
.review-card .author { font-weight: 700; margin-top: 12px; }

/* Contact */
.contact-section { background: var(--cream-2); }
.contact-layout { display: flex; gap: 40px; flex-wrap: wrap; }
.contact-info { flex: 1; min-width: 260px; }
.contact-socials { display: flex; gap: 12px; margin-top: 18px; }
.contact-form { flex: 1.2; min-width: 280px; background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: 28px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; }
.form-row input, .form-row textarea, .form-row select {
  width: 100%; padding: 12px 14px; border: 1px solid #d9dab3; border-radius: 10px; font-size: 14px; font-family: inherit;
}
.form-note { font-size: 12px; color: var(--gray); margin-top: 10px; }
.form-success { display: none; background: #e9f2df; color: #4a5a22; padding: 12px 16px; border-radius: 10px; margin-top: 14px; font-weight: 600; }

/* Footer */
.site-footer { background: var(--olive-dark); color: #eef1d8; padding: 40px 0 20px; margin-top: 40px; }
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.footer-grid h4 { color: #fff; margin-top: 0; }
.footer-grid a { display: block; margin-bottom: 8px; color: #d3d6ad; font-size: 14px; }
.footer-grid a:hover { color: #fff; }
.footer-bottom { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); font-size: 13px; color: #b7bb8e; }

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th, .cart-table td { padding: 14px 10px; border-bottom: 1px solid #e3e4c2; text-align: left; font-size: 14px; }
.cart-item-name { display: flex; align-items: center; gap: 14px; }
.cart-item-name img { width: 60px; height: 60px; object-fit: cover; border-radius: 10px; }
.qty-control { display: flex; align-items: center; gap: 8px; }
.qty-control button { width: 28px; height: 28px; border-radius: 50%; border: 1px solid #d9dab3; background: #fff; cursor: pointer; font-size: 16px; line-height: 1; }
.remove-btn { color: #a54e3f; background: none; border: none; cursor: pointer; font-size: 13px; }
.cart-empty { text-align: center; padding: 60px 0; color: var(--gray); }
.cart-summary { max-width: 340px; margin-left: auto; background: var(--card-bg); border-radius: var(--radius); box-shadow: var(--shadow); padding: 22px; margin-top: 24px; }
.cart-summary .total-row { display: flex; justify-content: space-between; font-weight: 800; font-size: 18px; margin-bottom: 16px; }

.checkout-form-wrap {
  max-width: 480px;
  margin: 30px auto 0;
  background: var(--card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.delivery-method-options { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 4px; }
.contact-form .check-option {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 14px;
  color: var(--dark);
  cursor: pointer;
  width: auto;
  margin: 0;
}
.contact-form .check-option input[type="radio"],
.contact-form .check-option input[type="checkbox"] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.contact-form .check-option .check-label { line-height: 1.4; }
.contact-form .check-option .check-box {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid #d9dab3;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, border-color .15s;
}
.contact-form .check-option .check-box::after {
  content: '';
  width: 5px;
  height: 9px;
  margin-top: -2px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) scale(0);
  transition: transform .12s;
}
.contact-form .check-option input:checked + .check-box {
  background: var(--olive-dark);
  border-color: var(--olive-dark);
}
.contact-form .check-option input:checked + .check-box::after {
  transform: rotate(45deg) scale(1);
}
.contact-form .check-option input:focus-visible + .check-box {
  outline: 2px solid var(--olive-dark);
  outline-offset: 2px;
}

.page-hero { padding: 36px 0; background: var(--cream-2); text-align: center; }
.page-hero h1 { margin: 0; font-size: 30px; }

.product-detail { display: flex; gap: 40px; flex-wrap: wrap; }
.product-detail .gallery { flex: 1; min-width: 280px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.product-detail .info { flex: 1; min-width: 280px; }
.product-detail .price { font-size: 28px; font-weight: 800; color: var(--olive-dark); margin: 16px 0; }
.qty-add-row { display: flex; gap: 12px; align-items: center; margin: 20px 0; }

.toast {
  position: fixed; bottom: 24px; right: 24px;
  background: var(--olive-dark); color: #fff;
  padding: 14px 20px; border-radius: 12px; font-weight: 600;
  box-shadow: var(--shadow);
  transform: translateY(20px); opacity: 0; pointer-events: none;
  transition: all .25s; z-index: 999;
}
.toast.show { transform: translateY(0); opacity: 1; }

.delivery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.delivery-card { background: var(--card-bg); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px; }
.delivery-card h3 { margin-top: 0; color: var(--olive-dark); }

/* Floating WhatsApp button */
.float-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #4a9d4f;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
  z-index: 200;
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 6px 16px rgba(0,0,0,0.25); }
  50% { box-shadow: 0 6px 22px rgba(74,157,79,0.55); }
}
.float-contact-label {
  position: fixed;
  bottom: 38px; right: 90px;
  background: var(--dark);
  color: #fff;
  padding: 10px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  z-index: 200;
  white-space: nowrap;
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--dark);
  color: #eef1d8;
  padding: 14px 20px;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 300;
}
.cookie-banner button {
  background: var(--olive);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 700;
  cursor: pointer;
  font-size: 12px;
}

@media (max-width: 960px) {
  .main-nav { display: none; }
  .burger { display: block; }
  .header-actions { margin-left: 0; width: 100%; justify-content: center; }
  .catalog-pill { display: none; }
  .mobile-socials { display: flex; }
  .site-header .top-bar { padding: 10px 0; gap: 10px 14px; row-gap: 8px; }
  .main-nav.open {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); padding: 16px 20px; box-shadow: var(--shadow);
  }
  .main-nav.open ul { flex-direction: column; gap: 14px; }
  .filters { display: none; }
  .catalog-open-wrap { display: block; }
  .catalog-layout { flex-direction: column; }
  .float-contact-label { display: none; }

  .hero { padding: 34px 0 80px; text-align: center; }
  .hero-inner { justify-content: center; }
  .hero-text { order: 1; }
  .hero-img { order: 2; max-width: 260px; margin: 0 auto; }
  .hero-text h1 { font-size: 34px; }
  .hero-text .accent { font-size: 32px; }
  .hero-star { display: none; }
}

@media (max-width: 480px) {
  .hero-text h1 { font-size: 26px; }
  .hero-text .accent { font-size: 26px; }
  .badges-row { gap: 20px; }
  .badge { width: 90px; }
}

@media (max-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card .info { padding: 10px; gap: 5px; }
  .product-card h3 { font-size: 12.5px; min-height: 32px; line-height: 1.3; }
  .product-card .price { font-size: 14px; }
  .product-card .actions { flex-direction: column; gap: 6px; }
  .product-card .actions .btn { font-size: 10px; padding: 9px 6px; }
}

.quiz-popup-overlay {
  position: fixed; inset: 0; background: rgba(51,54,31,0.45);
  display: flex; align-items: center; justify-content: center;
  padding: 20px; z-index: 999; opacity: 0; transition: opacity .25s;
}
.quiz-popup-overlay.open { opacity: 1; }
.quiz-popup-box {
  background: var(--card-bg); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 28px 26px; max-width: 420px; width: 100%; position: relative;
  transform: translateY(12px); transition: transform .25s;
}
.quiz-popup-overlay.open .quiz-popup-box { transform: translateY(0); }
.quiz-popup-close {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  border: none; background: rgba(255,255,255,0.85); box-shadow: var(--shadow);
  width: 30px; height: 30px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1; color: var(--dark); cursor: pointer; padding: 0;
}
.quiz-popup-close:hover { background: #fff; }
.quiz-popup-box h3 { margin: 0 0 18px; font-size: 20px; color: var(--dark); padding-right: 20px; }

.quiz-wizard { padding: 0; overflow: hidden; }
.quiz-wizard-header {
  background: var(--cream-2); padding: 18px 44px 16px 20px; display: flex; align-items: flex-start; gap: 10px;
  position: relative;
}
.quiz-wizard-icon { font-size: 18px; line-height: 1.4; }
.quiz-wizard-intro { flex: 1; font-size: 13px; color: var(--dark); line-height: 1.5; font-weight: 600; }
.quiz-wizard-count { font-size: 13px; color: var(--gray); font-weight: 700; white-space: nowrap; }
.quiz-wizard-body { padding: 24px 26px 8px; min-height: 160px; }
.quiz-radio-list { display: flex; flex-direction: column; gap: 14px; }
.quiz-radio-option { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--dark); cursor: pointer; }
.quiz-radio-option input[type="radio"] { width: 18px; height: 18px; accent-color: var(--olive-dark); cursor: pointer; }
.quiz-text-input {
  width: 100%; border: none; border-bottom: 2px solid var(--cream-2); padding: 8px 2px;
  font-size: 15px; color: var(--dark); background: none; font-family: inherit;
}
.quiz-text-input:focus { outline: none; border-bottom-color: var(--olive-dark); }
.quiz-wizard-nav { display: flex; justify-content: space-between; align-items: center; padding: 18px 26px 26px; }
.quiz-nav-btn {
  border: none; border-radius: 24px; padding: 12px 22px; font-weight: 700; font-size: 14px;
  cursor: pointer; background: var(--cream); color: var(--dark); transition: background .15s;
}
.quiz-nav-btn:disabled { opacity: .5; cursor: default; }
.quiz-nav-btn.primary { background: var(--olive-dark); color: #fff; }
.quiz-nav-btn.primary:hover:not(:disabled) { background: var(--olive); }
.quiz-nav-btn:not(.primary):hover:not(:disabled) { background: var(--cream-2); }
.quiz-wizard-success { padding: 26px; text-align: center; }
.quiz-wizard-success h3 { padding-right: 0; }
.quiz-wizard-success p { color: var(--gray); font-size: 14px; margin: 0; }

.category-popup-list { display: flex; flex-direction: column; gap: 4px; max-height: 60vh; overflow-y: auto; }
.category-popup-list a {
  display: block; padding: 13px 4px; font-size: 15px; font-weight: 600; color: var(--dark);
  text-decoration: none; border-bottom: 1px solid var(--cream-2);
}
.category-popup-list a:last-child { border-bottom: none; }
.category-popup-list a.active { color: var(--olive-dark); }
.category-popup-list a.category-popup-home { color: var(--olive-dark); }
