/* ============================================================
   lisichki.net — Main Stylesheet
   ============================================================ */

/* --- Variables --- */
:root {
  --primary:        #2e7d32;
  --primary-dark:   #1b5e20;
  --primary-mid:    #388e3c;
  --primary-light:  #e8f5e9;
  --primary-border: #c8e6c9;
  --accent:         #66bb6a;
  --white:          #ffffff;
  --bg:             #f9fdf9;
  --text:           #1c2b1e;
  --text-light:     #5c7560;
  --border:         #ddeedd;
  --shadow-sm:      0 2px 8px rgba(30, 80, 30, 0.10);
  --shadow:         0 4px 20px rgba(30, 80, 30, 0.14);
  --radius:         8px;
  --radius-lg:      14px;
  --max-w:          1200px;
  --transition:     0.22s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 18px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); text-decoration: underline; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary-dark);
}
h1 { font-size: 2.3rem; }
h2 { font-size: 1.85rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }
p  { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--text); }

.lead {
  font-size: 1.15rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* --- Layout Helpers --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 { margin-bottom: 12px; }
.section-title p { color: var(--text-light); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

.text-center { text-align: center; }
.text-green { color: var(--primary); }
.bg-light { background: var(--bg); }
.bg-green { background: var(--primary-dark); color: var(--white); }
.bg-green h2, .bg-green h3 { color: var(--white); }
.bg-green p, .bg-green li { color: rgba(255,255,255,0.88); }

/* --- Top Bar --- */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.top-bar a { color: var(--white); font-weight: 600; }
.top-bar a:hover { text-decoration: underline; }

/* --- Header --- */
.site-header {
  background: var(--white);
  border-bottom: 2px solid var(--primary-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  gap: 24px;
}
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 56px;
  width: auto;
  mix-blend-mode: multiply;
}
.logo-text { display: none; }

.logo-text-link {
  flex-shrink: 0;
  text-decoration: none;
}
.logo-wordmark {
  font-family: 'Segoe UI', Arial, sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #2d7a2d;
  line-height: 1;
}
@media (max-width: 768px) {
  .logo-wordmark { font-size: 1.1rem; }
  .header-call-btn { font-size: 0.75rem; padding: 7px 9px; gap: 4px; }
  .header-call-btn span { display: none; }
  .header-inner { padding: 12px 16px; gap: 10px; }
}

/* --- Navigation --- */
.main-nav { flex: 1; }
.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.nav-list > li { position: relative; }

.nav-list a {
  display: block;
  padding: 8px 14px;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-list a:hover,
.nav-list a.active {
  background: var(--primary-light);
  color: var(--primary-dark);
  text-decoration: none;
}

/* Dropdown */
.dropdown {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.12s, visibility 0.12s;
  transition-delay: 0.28s;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px 0;
  z-index: 200;
}
.nav-list li:hover > .dropdown {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transition-delay: 0s;
}
.nav-list li > a + .dropdown::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.dropdown a {
  border-radius: 0;
  padding: 10px 20px;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  border-left: 3px solid transparent;
}
.dropdown a:hover {
  background: var(--primary-light);
  border-left-color: var(--primary);
  color: var(--primary-dark);
}
.dropdown-section { padding: 6px 0 2px; }
.dropdown-section-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  padding: 4px 20px 2px;
}
.dropdown hr { border: none; border-top: 1px solid var(--border); margin: 6px 0; }

.header-cta {
  flex-shrink: 0;
}
.header-call-btn {
  display: none;
  align-items: center;
  gap: 6px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-call-btn span { font-size: 0.82rem; }

/* Mobile Nav */
.burger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-white {
  background: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}
.btn-white:hover { background: var(--primary-light); border-color: var(--primary-light); color: var(--primary-dark); }

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

.btn-lg { padding: 16px 36px; font-size: 1.1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.9rem; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--primary-dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.38;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(27,94,32,0.92) 0%, rgba(27,94,32,0.6) 55%, rgba(27,94,32,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 640px;
  padding: 64px 0;
}
.hero-content h1 { color: var(--white); font-size: 2.6rem; margin-bottom: 16px; }
.hero-content p { font-size: 1.1rem; margin-bottom: 32px; opacity: 0.92; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

/* Product hero (shorter) */
.hero-product { min-height: 380px; }
.hero-product .hero-content { padding: 48px 0; }
.hero-product .hero-content h1 { font-size: 2.1rem; }

/* --- Trust Blocks --- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow var(--transition);
}
.trust-item:hover { box-shadow: var(--shadow); }
.trust-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  line-height: 1;
}
.trust-item h3 { font-size: 1.1rem; margin-bottom: 8px; }
.trust-item p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* --- Product Grid --- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.product-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
  text-decoration: none;
}
.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--primary-light);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.05); }
.product-card-body { padding: 20px; }
.product-card-body h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--primary-dark); }
.product-card-body p { font-size: 0.88rem; color: var(--text-light); margin: 0 0 14px; }
.product-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.product-variants {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.product-variants a {
  font-size: 0.83rem;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid var(--primary-border);
  padding: 3px 10px;
  border-radius: 16px;
  transition: all var(--transition);
}
.product-variants a:hover {
  background: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-color: var(--primary);
}

/* Category card (bigger, for home) */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}
.cat-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); text-decoration: none; }
.cat-card > a { display: block; width: 100%; height: 100%; }
.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(27,94,32,0.92) 0%, transparent 100%);
  padding: 40px 20px 20px;
  color: var(--white);
}
.cat-card-label h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 6px; }
.cat-card-label h3 a { color: var(--white); text-decoration: none; }
.cat-card-label h3 a:hover { text-decoration: underline; }
.cat-card-label p { font-size: 0.82rem; color: rgba(255,255,255,0.8); margin: 0; }
.cat-card-label p a { color: rgba(255,255,255,0.85); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; }
.cat-card-label p a:hover { color: #fff; border-bottom-color: #fff; }

/* --- Photo Gallery / Slider --- */
.gallery { position: relative; overflow: hidden; border-radius: var(--radius-lg); }
.gallery-track {
  display: flex;
  transition: transform 0.4s ease;
}
.gallery-slide {
  min-width: 100%;
  aspect-ratio: 16/9;
  background: var(--primary-light);
}
.gallery-slide img { width: 100%; height: 100%; object-fit: cover; }
.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.2rem;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  z-index: 5;
}
.gallery-btn:hover { background: var(--white); box-shadow: var(--shadow); }
.gallery-btn-prev { left: 16px; }
.gallery-btn-next { right: 16px; }
.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}
.gallery-dot {
  width: 10px;
  height: 10px;
  background: var(--primary-border);
  border-radius: 50%;
  border: none;
  transition: background var(--transition);
  cursor: pointer;
}
.gallery-dot.active { background: var(--primary); }

/* --- Description Block --- */
.product-description { max-width: 860px; }
.product-description h2 { margin-bottom: 24px; }
.product-description ul { list-style: disc; padding-left: 24px; }
.product-description li { margin-bottom: 8px; }

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.feature-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.feature-item h4 { font-size: 1rem; margin-bottom: 4px; }
.feature-item p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* --- Price CTA Block --- */
.price-block {
  background: var(--primary-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.price-block h2 { color: var(--white); margin-bottom: 8px; }
.price-block p { color: rgba(255,255,255,0.85); margin: 0; font-size: 1.05rem; }
.price-block-text { flex: 1; min-width: 240px; }

/* --- Reviews Slider --- */
.reviews-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.reviews-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}
.reviews-track::-webkit-scrollbar { display: none; }
.reviews-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  padding: 0;
}
.reviews-btn:hover { background: var(--primary-light); border-color: var(--primary); }
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  flex: 0 0 300px;
  width: 300px;
  scroll-snap-align: start;
  box-sizing: border-box;
}
.review-stars {
  color: #f5a623;
  font-size: 1.1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--primary-dark);
  font-weight: 700;
  flex-shrink: 0;
}
.review-name { font-weight: 700; font-size: 0.95rem; }
.review-location { font-size: 0.82rem; color: var(--text-light); }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--transition);
}
.faq-q:hover { color: var(--primary-dark); }
.faq-q .faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--primary);
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--primary);
  color: var(--white);
}
.faq-a {
  display: none;
  padding: 0 4px 22px;
  color: var(--text-light);
  font-size: 0.97rem;
  line-height: 1.75;
}
.faq-item.open .faq-a { display: block; }

/* --- Forms --- */
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 7px;
  font-size: 0.94rem;
  color: var(--text);
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  font-size: 1rem;
  font-family: inherit;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.14);
}
.form-control::placeholder { color: #aabcaa; }
textarea.form-control { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

/* Modal Form */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 5000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--primary-light); color: var(--primary-dark); }
.modal-box h3 { margin-bottom: 6px; }
.modal-box p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 24px; }

.form-msg {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  margin-top: 16px;
  display: none;
}
.form-msg.success { background: #e8f5e9; color: #1b5e20; border: 1px solid #c8e6c9; display: block; }
.form-msg.error   { background: #ffebee; color: #b71c1c; border: 1px solid #ffcdd2; display: block; }

/* --- About Section --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img { width: 100%; border-radius: var(--radius-lg); }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong { font-size: 1.8rem; line-height: 1; }
.about-badge span { font-size: 0.78rem; line-height: 1.2; opacity: 0.9; }

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.stat-item { text-align: center; padding: 20px; background: var(--primary-light); border-radius: var(--radius); }
.stat-num { font-size: 2rem; font-weight: 700; color: var(--primary-dark); font-family: Georgia, serif; line-height: 1; }
.stat-label { font-size: 0.84rem; color: var(--text-light); margin-top: 4px; }

/* --- Staff --- */
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.staff-card {
  text-align: center;
}
.staff-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  margin: 0 auto 18px;
  border: 4px solid var(--primary-border);
}
.staff-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.staff-card p { font-size: 0.9rem; color: var(--text-light); margin: 0; }

/* --- Delivery Block --- */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.delivery-item {
  text-align: center;
  padding: 28px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.delivery-item .icon { font-size: 2.2rem; margin-bottom: 14px; }
.delivery-item h4 { font-size: 1rem; margin-bottom: 6px; }
.delivery-item p { font-size: 0.87rem; color: var(--text-light); margin: 0; }

/* --- Contact Block --- */
.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-list { list-style: none; }
.contact-info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
}
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list .ci-icon { font-size: 1.3rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-list .ci-label { font-size: 0.8rem; color: var(--text-light); display: block; }
.contact-info-list .ci-value { font-weight: 600; }
.contact-info-list a { color: var(--text); }
.contact-info-list a:hover { color: var(--primary); text-decoration: none; }

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.87rem;
  color: var(--text-light);
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  list-style: none;
}
.breadcrumb li::after { content: '›'; margin-left: 6px; color: var(--primary-border); }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--primary); }

/* --- Blog --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); text-decoration: none; }
.blog-card-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--primary-light);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-date { font-size: 0.82rem; color: var(--text-light); margin-bottom: 8px; }
.blog-card-body h3 { font-size: 1.08rem; margin-bottom: 10px; color: var(--primary-dark); line-height: 1.3; }
.blog-card-body p { font-size: 0.9rem; color: var(--text-light); flex: 1; margin-bottom: 16px; }
.blog-card-body .read-more {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Blog single */
.blog-article { max-width: 820px; }
.blog-article h1 { font-size: 2rem; margin-bottom: 16px; }
.blog-article .meta { color: var(--text-light); font-size: 0.88rem; margin-bottom: 32px; display: flex; gap: 20px; flex-wrap: wrap; }
.blog-article img { border-radius: var(--radius); margin: 28px 0; }
.blog-article h2 { font-size: 1.5rem; margin: 36px 0 16px; }
.blog-article h3 { font-size: 1.2rem; margin: 28px 0 12px; }
.blog-article ul, .blog-article ol { padding-left: 26px; margin-bottom: 18px; }
.blog-article ul { list-style: disc; }
.blog-article ol { list-style: decimal; }
.blog-article li { margin-bottom: 8px; }
.blog-article blockquote {
  border-left: 4px solid var(--primary);
  padding: 16px 24px;
  background: var(--primary-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--text);
}
.cta-inline {
  background: var(--primary-dark);
  color: var(--white);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  margin: 36px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-inline p { color: rgba(255,255,255,0.88); margin: 6px 0 0; font-size: 0.95rem; }
.cta-inline h4 { color: var(--white); margin: 0; font-size: 1.1rem; }

/* --- Footer --- */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.82);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand .logo img { mix-blend-mode: normal; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-brand p { font-size: 0.88rem; margin-top: 14px; line-height: 1.65; }
.footer-col h4 { color: var(--white); font-size: 0.95rem; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.75); font-size: 0.9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
}
.footer-bottom a { color: rgba(255,255,255,0.6); }
.footer-bottom a:hover { color: var(--white); text-decoration: none; }

/* Phone badge in footer */
.footer-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
}
.footer-phone a {
  color: var(--white) !important;
  font-size: 1.1rem;
  font-weight: 700;
}

/* --- Legal Page --- */
.legal-content h2 { font-size: 1.4rem; margin: 32px 0 12px; }
.legal-content p, .legal-content li { font-size: 0.97rem; }
.legal-content ul { list-style: disc; padding-left: 24px; }
.legal-content li { margin-bottom: 6px; }
.stamp-img { max-width: 200px; margin: 24px 0; border: 1px solid var(--border); border-radius: var(--radius); padding: 12px; }

/* --- Notification Bar --- */
.notify-bar {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.92rem;
  position: relative;
}
.notify-bar a { color: var(--white); font-weight: 700; text-decoration: underline; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { padding: 20px 14px; }
  .trust-icon { font-size: 1.8rem; margin-bottom: 8px; }
  .trust-item h3 { font-size: 0.95rem; }
  .trust-item p { font-size: 0.82rem; }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  html { font-size: 17px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .review-card { flex: 0 0 260px; width: 260px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-badge { right: 16px; bottom: -16px; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .delivery-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .staff-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .price-block { padding: 30px 28px; }
}

@media (max-width: 768px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }
  .section { padding: 52px 0; }
  .hero { min-height: 420px; }
  .hero-content { padding: 48px 0; }
  .hero-content h1 { font-size: 2rem; }
  .hero-product { min-height: 300px; }
  .hero-product .hero-content h1 { font-size: 1.75rem; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }

  .header-call-btn { display: flex; }

  /* Mobile nav */
  .main-nav { display: none; position: fixed; inset: 0; top: 0; background: var(--white); z-index: 999; padding: 80px 24px 40px; overflow-y: auto; flex-direction: column; }
  .main-nav.open { display: flex; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-list > li { border-bottom: 1px solid var(--border); }
  .nav-list a { padding: 14px 8px; font-size: 1.05rem; border-radius: 0; }
  .dropdown { display: block !important; visibility: visible !important; opacity: 1 !important; pointer-events: auto !important; position: static; box-shadow: none; border: none; border-radius: 0; padding: 0 0 8px 16px; transition: none !important; }
  .dropdown a { font-size: 0.95rem; padding: 9px 20px; }
  .burger { display: flex; }
  .header-cta { display: none; }
  .nav-close { display: flex; position: absolute; top: 12px; right: 12px; width: 44px; height: 44px; font-size: 1.6rem; border-radius: 50%; border: 2px solid var(--border); background: var(--white); cursor: pointer; align-items: center; justify-content: center; color: var(--text); }

  .cat-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-wrap { padding: 24px; }
  .modal-box { padding: 28px 22px; }
  .price-block { flex-direction: column; text-align: center; padding: 28px 22px; }
}

@media (max-width: 520px) {
  .cat-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .reviews-btn { width: 32px; height: 32px; font-size: 1.2rem; flex-shrink: 0; }
  .reviews-track { gap: 12px; }
  .review-card { flex: 0 0 calc(100% - 4px); width: calc(100% - 4px); }
  .blog-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .trust-item { padding: 16px 10px; }
  .delivery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .staff-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; text-align: center; }
}

/* Phone picker */
.phone-picker-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 2000;
  align-items: flex-end;
  justify-content: center;
}
.phone-picker-overlay.open { display: flex; }
.phone-picker-sheet {
  background: var(--white);
  width: 100%;
  max-width: 480px;
  border-radius: 20px 20px 0 0;
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: slideUp 0.22s ease;
}
@keyframes slideUp {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.phone-picker-title {
  font-size: 0.9rem;
  color: var(--text-light);
  text-align: center;
  margin: 0 0 4px;
}
.phone-picker-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--primary-dark);
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s;
}
.phone-picker-btn:hover { background: var(--primary-light); border-color: var(--primary); }
.phone-picker-cancel {
  margin-top: 4px;
  padding: 14px;
  border: none;
  background: none;
  color: var(--text-light);
  font-size: 1rem;
  cursor: pointer;
  border-radius: var(--radius);
}
.phone-picker-cancel:hover { background: #f5f5f5; }

/* Print */
@media print {
  .site-header, .site-footer, .modal-overlay, .burger { display: none !important; }
}
