
    :root {
      --green: #0F5C4C;
      --green-dark: #0A3F35;
      --green-light: #1A7A65;
      --gold: #E8A838;
      --gold-hover: #D4952A;
      --cream: #F8F6F1;
      --cream-dark: #F0EDE5;
      --text: #1A1A1A;
      --text-muted: #5A5A5A;
      --white: #FFFFFF;
      --radius: 16px;
      --radius-sm: 10px;
      --shadow: 0 4px 24px rgba(15, 92, 76, 0.08);
      --shadow-hover: 0 12px 40px rgba(15, 92, 76, 0.14);
      --transition: 0.25s ease;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', system-ui, -apple-system, sans-serif;
      background: var(--cream);
      color: var(--text);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

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

    a {
      text-decoration: none;
      color: inherit;
      transition: var(--transition);
    }

    ul {
      list-style: none;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ========== HEADER ========== */
    .header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(248, 246, 241, 0.92);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(15, 92, 76, 0.08);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 72px;
      gap: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }

    .logo-icon {
      width: 40px;
      height: 40px;
      background: var(--green);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-icon svg {
      width: 22px;
      height: 22px;
      fill: var(--gold);
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-text strong {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.5px;
      color: var(--green);
    }

    .logo-text span {
      font-size: 11px;
      color: var(--text-muted);
      letter-spacing: 0.3px;
    }

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

    .nav a {
      font-size: 14.5px;
      font-weight: 500;
      color: var(--text);
      position: relative;
    }

    .nav a:hover,
    .nav a.active {
      color: var(--green);
    }

    .nav a.active::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--green);
      border-radius: 2px;
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .phone {
      display: flex;
      align-items: center;
      gap: 8px;
      font-weight: 600;
      font-size: 14.5px;
      color: var(--green);
    }

    .phone svg {
      width: 18px;
      height: 18px;
      stroke: var(--green);
      fill: none;
      stroke-width: 2;
    }

    .lang {
      display: flex;
      gap: 4px;
      font-size: 13px;
      font-weight: 500;
    }

    .lang a {
      padding: 4px 8px;
      border-radius: 6px;
      color: var(--text-muted);
    }

    .lang a.active {
      background: var(--green);
      color: var(--white);
    }

    .burger {
      display: none;
      width: 40px;
      height: 40px;
      border: none;
      background: transparent;
      cursor: pointer;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
    }

    .burger span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--green);
      border-radius: 2px;
      transition: var(--transition);
    }

    /* ========== HERO ========== */
    .hero {
      position: relative;
      min-height: 620px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 55%, #1A7A65 100%);
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse 80% 60% at 75% 50%, rgba(232, 168, 56, 0.15) 0%, transparent 60%),
        url('https://images.unsplash.com/photo-1619566636858-adf3ef4644b9?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
      opacity: 0.35;
      mix-blend-mode: luminosity;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 560px;
      padding: 80px 0;
      color: var(--white);
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.2);
      padding: 6px 14px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      margin-bottom: 24px;
      backdrop-filter: blur(8px);
    }

    .hero-badge svg {
      width: 16px;
      height: 16px;
      fill: var(--gold);
    }

    .hero h1 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(36px, 5vw, 52px);
      font-weight: 700;
      line-height: 1.15;
      margin-bottom: 20px;
      letter-spacing: -0.5px;
    }

    .hero h1 span {
      color: var(--gold);
    }

    .hero p {
      font-size: 17px;
      opacity: 0.9;
      margin-bottom: 36px;
      max-width: 440px;
      line-height: 1.65;
    }

    .hero-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: var(--transition);
    }

    .btn-primary {
      background: var(--gold);
      color: var(--text);
    }

    .btn-primary:hover {
      background: var(--gold-hover);
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(232, 168, 56, 0.35);
    }

    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,0.4);
    }

    .btn-outline:hover {
      background: rgba(255,255,255,0.1);
      border-color: rgba(255,255,255,0.7);
    }

    .btn svg {
      width: 18px;
      height: 18px;
    }

    .hero-products {
      position: absolute;
      right: 5%;
      bottom: 0;
      width: 48%;
      max-width: 580px;
      z-index: 1;
      pointer-events: none;
    }

    .hero-products img {
      width: 100%;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.25));
    }

    /* ========== CATEGORIES ========== */
    .section {
      padding: 80px 0;
    }

    .section-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 40px;
      gap: 24px;
    }

    .section-title {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(28px, 3.5vw, 36px);
      font-weight: 700;
      color: var(--green-dark);
      letter-spacing: -0.3px;
    }

    .section-link {
      font-size: 14.5px;
      font-weight: 600;
      color: var(--green);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .section-link:hover {
      color: var(--green-light);
    }

    .section-link svg {
      width: 16px;
      height: 16px;
      transition: transform var(--transition);
    }

    .section-link:hover svg {
      transform: translateX(4px);
    }

    .categories-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .category-card {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      aspect-ratio: 1 / 1.1;
      background: var(--white);
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .category-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-hover);
    }

    .category-card img {
      width: 100%;
      height: 70%;
      object-fit: cover;
    }

    .category-card-body {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 20px;
      background: linear-gradient(to top, rgba(15,92,76,0.95) 0%, rgba(15,92,76,0.85) 60%, transparent 100%);
      color: var(--white);
    }

    .category-card-body h3 {
      font-size: 18px;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .category-card-body span {
      font-size: 13px;
      opacity: 0.8;
    }

    .category-card-icon {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      background: rgba(255,255,255,0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      transform: scale(0.8);
      transition: var(--transition);
    }

    .category-card:hover .category-card-icon {
      opacity: 1;
      transform: scale(1);
    }

    .category-card-icon svg {
      width: 16px;
      height: 16px;
      stroke: var(--green);
      fill: none;
      stroke-width: 2.5;
    }

    /* ========== FEATURES / ADVANTAGES ========== */
    .features {
      background: var(--white);
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 24px;
    }

    .feature-card {
      text-align: center;
      padding: 28px 16px;
      border-radius: var(--radius);
      transition: var(--transition);
    }

    .feature-card:hover {
      background: var(--cream);
    }

    .feature-icon {
      width: 56px;
      height: 56px;
      margin: 0 auto 16px;
      background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 6px 16px rgba(15, 92, 76, 0.2);
    }

    .feature-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--white);
      fill: none;
      stroke-width: 1.8;
    }

    .feature-card h3 {
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 6px;
      color: var(--green-dark);
    }

    .feature-card p {
      font-size: 13px;
      color: var(--text-muted);
      line-height: 1.5;
    }

    /* ========== ABOUT ========== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }

    .about-image {
      position: relative;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow-hover);
    }

    .about-image img {
      width: 100%;
      height: 420px;
      object-fit: cover;
    }

    .about-image-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: var(--white);
      padding: 14px 20px;
      border-radius: 12px;
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .about-image-badge strong {
      font-size: 22px;
      color: var(--green);
      display: block;
      line-height: 1.1;
    }

    .about-image-badge span {
      font-size: 12px;
      color: var(--text-muted);
    }

    .about-content h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: clamp(28px, 3.5vw, 36px);
      font-weight: 700;
      color: var(--green-dark);
      margin-bottom: 20px;
      letter-spacing: -0.3px;
    }

    .about-content p {
      color: var(--text-muted);
      margin-bottom: 16px;
      font-size: 15.5px;
    }

    .about-list {
      margin: 24px 0 32px;
    }

    .about-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 8px 0;
      font-size: 15px;
      font-weight: 500;
    }

    .about-list li svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      stroke: var(--green);
      fill: none;
      stroke-width: 2.5;
    }

    /* ========== CTA BANNER ========== */
    .cta-banner {
      background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
      border-radius: 20px;
      padding: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 40px;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '';
      position: absolute;
      right: -40px;
      top: -40px;
      width: 280px;
      height: 280px;
      background: radial-gradient(circle, rgba(232,168,56,0.2) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-banner h2 {
      font-family: 'Playfair Display', Georgia, serif;
      font-size: 28px;
      font-weight: 700;
      margin-bottom: 8px;
    }

    .cta-banner p {
      opacity: 0.85;
      font-size: 15px;
      max-width: 420px;
    }

    .cta-form {
      display: flex;
      gap: 12px;
      flex-shrink: 0;
      position: relative;
      z-index: 1;
    }

    .cta-form input {
      padding: 14px 18px;
      border-radius: 12px;
      border: none;
      font-size: 14.5px;
      font-family: inherit;
      min-width: 180px;
      outline: none;
    }

    .cta-form input::placeholder {
      color: #999;
    }

    /* ========== NEWS ========== */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }

    .news-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: var(--transition);
    }

    .news-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .news-card img {
      width: 100%;
      height: 160px;
      object-fit: cover;
    }

    .news-card-body {
      padding: 20px;
    }

    .news-card-body time {
      font-size: 12px;
      color: var(--text-muted);
      display: block;
      margin-bottom: 8px;
    }

    .news-card-body h3 {
      font-size: 15px;
      font-weight: 600;
      line-height: 1.4;
      color: var(--green-dark);
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--green-dark);
      color: rgba(255,255,255,0.8);
      padding: 64px 0 0;
      margin-top: 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
      gap: 40px;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-brand .logo-text strong {
      color: var(--white);
    }

    .footer-brand .logo-text span {
      color: rgba(255,255,255,0.6);
    }

    .footer-brand p {
      margin-top: 16px;
      font-size: 14px;
      line-height: 1.6;
      max-width: 280px;
    }

    .footer-social {
      display: flex;
      gap: 10px;
      margin-top: 20px;
    }

    .footer-social a {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    .footer-social a:hover {
      background: var(--gold);
      color: var(--text);
    }

    .footer-social svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    .footer h4 {
      font-size: 14px;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 18px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .footer-links li {
      margin-bottom: 10px;
    }

    .footer-links a {
      font-size: 14px;
      color: rgba(255,255,255,0.7);
    }

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

    .footer-form input,
    .footer-form textarea {
      width: 100%;
      padding: 12px 14px;
      border-radius: 8px;
      border: 1px solid rgba(255,255,255,0.15);
      background: rgba(255,255,255,0.06);
      color: var(--white);
      font-size: 14px;
      font-family: inherit;
      margin-bottom: 10px;
      outline: none;
      transition: var(--transition);
    }

    .footer-form input::placeholder,
    .footer-form textarea::placeholder {
      color: rgba(255,255,255,0.4);
    }

    .footer-form input:focus,
    .footer-form textarea:focus {
      border-color: var(--gold);
      background: rgba(255,255,255,0.1);
    }

    .footer-form textarea {
      resize: vertical;
      min-height: 70px;
    }

    .footer-form .btn {
      width: 100%;
      margin-top: 4px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 0;
      font-size: 13px;
      color: rgba(255,255,255,0.5);
    }

    /* ========== RESPONSIVE ========== */
    @media (max-width: 1024px) {
      .categories-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .features-grid {
        grid-template-columns: repeat(3, 1fr);
      }
      .news-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
      .hero-products {
        display: none;
      }
      .hero {
        min-height: 520px;
      }
    }

    @media (max-width: 768px) {
      .nav {
        display: none;
      }
      .burger {
        display: flex;
      }
      .phone span {
        display: none;
      }
      .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
      .about-image img {
        height: 280px;
      }
      .features-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 24px;
      }
      .cta-form {
        flex-direction: column;
        width: 100%;
      }
      .cta-form input {
        min-width: 0;
        width: 100%;
      }
      .section {
        padding: 56px 0;
      }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 480px) {
      .categories-grid {
        grid-template-columns: 1fr;
      }
      .features-grid {
        grid-template-columns: 1fr;
      }
      .news-grid {
        grid-template-columns: 1fr;
      }
      .hero-btns {
        flex-direction: column;
      }
      .btn {
        width: 100%;
      }
    }
  

/* ========== PAGE HERO / BREADCRUMBS ========== */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  color: var(--white);
  padding: 48px 0 40px;
}
.page-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 8px;
}
.page-hero p { opacity: .85; max-width: 560px; }
.breadcrumbs {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 12px;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.breadcrumbs a { color: rgba(255,255,255,.85); }
.breadcrumbs a:hover { color: var(--gold); }
.inner-page { padding: 48px 0 80px; }

/* ========== CATALOG LAYOUT ========== */
.catalog-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.catalog-sidebar {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 16px;
  position: sticky;
  top: 88px;
}
.catalog-sidebar h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--text-muted);
  margin: 16px 8px 10px;
}
.catalog-sidebar h3:first-child { margin-top: 4px; }
.cat-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text);
}
.cat-nav a:hover, .cat-nav a.current {
  background: var(--cream);
  color: var(--green);
}
.cat-nav .count {
  font-size: 12px;
  color: var(--text-muted);
  background: var(--cream-dark);
  padding: 1px 7px;
  border-radius: 20px;
}
.cat-nav .children { margin-left: 10px; border-left: 1px solid rgba(15,92,76,.12); padding-left: 6px; }
.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.catalog-search {
  display: flex;
  flex: 1;
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.catalog-search input {
  flex: 1;
  border: 0;
  padding: 12px 16px;
  font: inherit;
  outline: none;
  background: transparent;
}
.catalog-search button {
  border: 0;
  background: var(--green);
  color: #fff;
  padding: 0 16px;
  cursor: pointer;
  font-weight: 600;
}
.catalog-sort select {
  padding: 12px 14px;
  border: 0;
  border-radius: 12px;
  background: var(--white);
  box-shadow: var(--shadow);
  font: inherit;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.product-card .thumb {
  height: 180px;
  background: var(--cream-dark);
  position: relative;
  overflow: hidden;
}
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card .badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--text);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 6px;
}
.product-card .body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; }
.product-card .cat {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 4px;
}
.product-card h3 { font-size: 16px; line-height: 1.35; color: var(--green-dark); margin-bottom: 8px; }
.product-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 10px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: auto;
}
.product-meta strong { color: var(--text); font-weight: 600; display: block; }
.product-card .cta {
  margin-top: 14px;
  display: flex;
  gap: 8px;
}
.product-card .cta .btn { flex: 1; padding: 10px 12px; font-size: 13.5px; border-radius: 10px; }
.btn-ghost {
  background: var(--cream);
  color: var(--green-dark);
}

/* product single */
.product-single {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-gallery {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.product-gallery img { width: 100%; height: 460px; object-fit: cover; }
.product-info h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 38px);
  color: var(--green-dark);
  margin-bottom: 8px;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0 28px;
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.spec-table th, .spec-table td {
  text-align: left;
  padding: 12px 16px;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 14.5px;
}
.spec-table th { width: 42%; color: var(--text-muted); font-weight: 500; background: var(--cream); }
.inquiry-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.inquiry-box h3 { margin-bottom: 12px; color: var(--green-dark); }
.inquiry-box input, .inquiry-box textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e6e2d8;
  border-radius: 10px;
  font: inherit;
  margin-bottom: 10px;
}
.inquiry-box textarea { min-height: 90px; resize: vertical; }
.pagination {
  display: flex; gap: 8px; justify-content: center; margin-top: 36px; flex-wrap: wrap;
}
.pagination a, .pagination span {
  min-width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: 14px; font-weight: 600;
}
.pagination .current { background: var(--green); color: #fff; }

.site-search-empty, .not-found {
  text-align: center; padding: 80px 0;
}
.mobile-filter-toggle { display: none; }

@media (max-width: 1024px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { position: static; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .product-single { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .products-grid { grid-template-columns: 1fr; }
  .mobile-filter-toggle { display: inline-flex; margin-bottom: 12px; }
  .catalog-sidebar { display: none; }
  .catalog-sidebar.is-open { display: block; }
}

.nav ul { display: flex; align-items: center; gap: 32px; list-style: none; margin: 0; padding: 0; }
.header .custom-logo-link img { width: 40px; height: 40px; object-fit: contain; }
.form-status { margin-top: 10px; font-size: 14px; color: var(--gold); }
@media (max-width: 768px) {
  .nav.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--cream);
    padding: 20px 24px 28px;
    gap: 16px;
    border-bottom: 1px solid rgba(15,92,76,.08);
  }
  .nav.is-open ul { flex-direction: column; align-items: flex-start; gap: 12px; }
  .page-hero + .inner-page .container[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
}

.logo-img {
  height: 42px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.logo-img--light {
  filter: brightness(0) invert(1);
  height: 36px;
}
.logo-text span {
  max-width: 140px;
  line-height: 1.25;
}
.soc-ico {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}
.contact-cards {
  display: grid;
  gap: 16px;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .logo-img { height: 32px; }
}

.nav-link,
.nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.nav-ico {
  flex-shrink: 0;
  display: block;
}
.nav a.active .nav-ico,
.nav-link.active .nav-ico {
  color: var(--green);
}
.nav a:hover .nav-ico {
  color: var(--green-light);
}
.soc-ico .nav-ico {
  color: #fff;
}

/* Agroshop 2026.1 — professional typography and Instagram-story hero */
body {
  font-family: 'Onest', 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: -0.01em;
}

h1, h2, h3, .section-title, .page-hero h1, .product-info h1 {
  font-family: 'Manrope', 'Onest', system-ui, sans-serif;
  letter-spacing: -0.035em;
}

.header {
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(15, 92, 76, .08);
}

.nav a {
  font-family: 'Manrope', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.015em;
}

.story-slider {
  position: relative;
  min-height: clamp(590px, 72vh, 780px);
  overflow: hidden;
  isolation: isolate;
  background: #123b32;
}

.story-slides,
.story-slide,
.story-overlay {
  position: absolute;
  inset: 0;
}

.story-slide {
  opacity: 0;
  transform: scale(1.035);
  background-position: center;
  background-size: cover;
  transition: opacity .8s ease, transform 6s linear;
  will-change: opacity, transform;
}

.story-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.story-overlay {
  z-index: 1;
  background: linear-gradient(90deg, rgba(5, 31, 25, .86) 0%, rgba(5, 31, 25, .64) 43%, rgba(5, 31, 25, .14) 76%, rgba(5, 31, 25, .08) 100%);
}

.story-slider > .container {
  position: relative;
  z-index: 2;
}

.story-progress {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding-top: 20px;
}

.story-progress-item {
  height: 4px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, .34);
  cursor: pointer;
}

.story-progress-item span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: #fff;
}

.story-progress-item.is-complete span { width: 100%; }
.story-progress-item.is-active span { animation: agroshop-story-progress 5.5s linear forwards; }

@keyframes agroshop-story-progress { from { width: 0; } to { width: 100%; } }

.story-slider .hero-content {
  position: relative;
  z-index: 2;
  padding-top: clamp(82px, 10vh, 120px);
  padding-bottom: clamp(90px, 12vh, 140px);
}

.story-slider .hero h1,
.story-slider h1 {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.055em;
  text-wrap: balance;
}

.story-slider .hero-badge {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .11);
  backdrop-filter: blur(12px);
}

.story-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  color: #fff;
  background: rgba(7, 42, 34, .28);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.story-arrow:hover { background: rgba(7, 42, 34, .58); transform: scale(1.04); }
.story-prev { left: 24px; }
.story-next { right: 24px; }

.product-card .thumb img,
.product-gallery img,
.category-card img {
  background: #f2f5f2;
}

@media (max-width: 900px) {
  .story-slider { min-height: 690px; }
  .story-overlay { background: linear-gradient(180deg, rgba(5, 31, 25, .42) 0%, rgba(5, 31, 25, .84) 72%, rgba(5, 31, 25, .94) 100%); }
  .story-slide { background-position: 58% center; }
  .story-progress { padding-top: 14px; gap: 5px; }
  .story-slider .hero-content { padding-top: 130px; padding-bottom: 90px; }
  .story-arrow { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .story-slide { transition: opacity .2s ease; transform: none; }
  .story-progress-item.is-active span { animation: none; width: 100%; }
}
.cat-nav a {
  gap: 8px;
}
.cat-nav .nav-ico {
  width: 16px;
  height: 16px;
  color: var(--green);
}
