:root {
    --primary: #21a038;
    --primary-dark: #1a8030;
    --primary-light: #e8f5e9;
    --secondary: #ff6b35;
    --secondary-dark: #e55a2b;
    --accent: #ffd166;
    --text: #2d3748;
    --text-light: #718096;
    --text-lighter: #a0aec0;
    --background: #f7fafc;
    --card: #ffffff;
    --border: #e2e8f0;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --gradient-primary: linear-gradient(135deg, #21a038 0%, #1a8030 100%);
    --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
    font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Super Wrapper */
.super-wrapper {
    width: 100%;
}

/* Header - Modern Redesign */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    margin: 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.col-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
}

.col-8 {
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
}

.text-right {
    text-align: right;
}

.mt5 {
    margin-top: 5px;
}

/* Modern Search */
.search-form {
    position: relative;
    display: inline-block;
}

.search-input {
    padding: 10px 45px 10px 16px;
    border: 2px solid var(--border);
    border-radius: 25px;
    width: 240px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--background);
    font-weight: 500;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(33, 160, 56, 0.1);
    width: 280px;
}

.search-btn {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%2321a038'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    transition: var(--transition);
}

.search-btn:hover {
    transform: translateY(-50%) scale(1.1);
}

/* Language Selector */
.langs {
    margin-left: 20px;
}

.lang {
    color: var(--text-light);
    text-decoration: none;
    margin-right: 12px;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    padding: 4px 8px;
    border-radius: 6px;
}

.lang:last-child {
    margin-right: 0;
}

.lang:hover {
    color: var(--primary);
    background: var(--primary-light);
}

/* Phone */
.phone {
    color: var(--text);
    font-weight: 600;
    margin-right: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.phone:before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background: var(--gradient-primary);
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 15.5c-1.2 0-2.4-.2-3.6-.6-.3-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.3-.5-3.5 0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 15.5c-1.2 0-2.4-.2-3.6-.6-.3-.1-.7 0-1 .2l-2.2 2.2c-2.8-1.5-5.2-3.8-6.6-6.6l2.2-2.2c.3-.3.4-.7.2-1-.3-1.1-.5-2.3-.5-3.5 0-.6-.4-1-1-1H4c-.6 0-1 .4-1 1 0 9.4 7.6 17 17 17 .6 0 1-.4 1-1v-3.5c0-.6-.4-1-1-1z'/%3E%3C/svg%3E") no-repeat center;
}

/* Userbar */
.userbar {
    display: inline-flex;
    align-items: center;
    gap: 15px;
}

.userbar-login {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
    padding: 8px 16px;
    border: 2px solid var(--primary);
    border-radius: 25px;
}

.userbar-login:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 160, 56, 0.3);
}

/* ========== АДАПТИВНОЕ МЕНЮ ДЛЯ МОБИЛЬНЫХ ========== */

/* Гамбургер-иконка слева */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-right: 20px;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background: var(--primary);
    border-radius: 3px;
    transition: var(--transition);
}

/* Мобильное меню */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: var(--transition);
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.close-menu {
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav > li {
    border-bottom: 1px solid var(--border);
}

.mobile-nav > li:last-child {
    border-bottom: none;
}

.mobile-nav > li > a {
    display: block;
    padding: 15px 0;
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.mobile-nav > li > a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-submenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 20px;
    display: none;
}

.mobile-submenu.active {
    display: block;
}

.mobile-submenu li {
    border-bottom: 1px solid var(--border-light);
}

.mobile-submenu li:last-child {
    border-bottom: none;
}

.mobile-submenu a {
    display: block;
    padding: 12px 0;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.mobile-submenu a:hover {
    color: var(--primary);
    padding-left: 10px;
}

.mobile-subsubmenu {
    list-style: none;
    margin: 0;
    padding: 0 0 0 15px;
    display: none;
}

.mobile-subsubmenu.active {
    display: block;
}

.mobile-subsubmenu a {
    font-size: 0.9rem;
    padding: 10px 0;
    color: var(--text-lighter);
}

.menu-arrow {
    float: right;
    transition: var(--transition);
}

.menu-arrow.rotated {
    transform: rotate(180deg);
}

/* Modern Navigation */
.tmenu {
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5e5;
    font-family: Arial, sans-serif;
    position: relative;
    z-index: 1500;
    transition: all 0.4s ease;
}

.tmenu .wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.logo-wrap {
    margin-right: 30px;
}

.logo {
    height: 50px;
    width: auto;
    margin-top: 7px;
}

.list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.list > li {
    position: relative;
}

.list > li > a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: normal;
    transition: color 0.3s;
    border-bottom: 2px solid transparent;
}

.list > li > a:hover,
.list > li > a.current {
    color: #2c5e1a;
    border-bottom-color: #2c5e1a;
}

/* Стили подменю как в оригинале */
.submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    display: none;
    z-index: 1000;
}

.list > li:hover .submenu {
    display: block;
}

.submenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.submenu li {
    border-bottom: 1px solid #f0f0f0;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu li a {
    display: block;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s;
}

.submenu li a:hover {
    background-color: #f8f8f8;
    color: #2c5e1a;
}

/* Стили для под-подменю в оригинальном стиле */
.has-subsubmenu {
    position: relative;
}

.has-subsubmenu > a::after {
    content: "›";
    float: right;
    margin-left: 8px;
    font-size: 14px;
    color: #999;
}

.subsubmenu {
    position: absolute;
    top: 0;
    left: 100%;
    background: white;
    min-width: 200px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
    display: none;
    z-index: 1001;
}

.has-subsubmenu:hover .subsubmenu {
    display: block;
}

.subsubmenu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.subsubmenu li {
    border-bottom: 1px solid #f0f0f0;
}

.subsubmenu li:last-child {
    border-bottom: none;
}

.subsubmenu li a {
    display: block;
    padding: 8px 15px;
    color: #666;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
}

.subsubmenu li a:hover {
    background-color: #f8f8f8;
    color: #2c5e1a;
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Убираем стрелочки у обычных пунктов */
.submenu li:not(.has-subsubmenu) > a::after {
    display: none;
}

/* Когда меню фиксируется */
.tmenu-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: slideDown 0.4s ease forwards;
}

/* Анимация появления меню */
@keyframes slideDown {
    from { transform: translateY(-100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Чтобы контент не уезжал под меню */


/* ========== ЕДИНЫЙ СТИЛЬ PAGE-HEADER ДЛЯ ВСЕХ СТРАНИЦ ========== */
.page-header {
    background: #ffffff;
    padding: 2rem 0 1.5rem;
    border-bottom: 1px solid var(--border);
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: relative;
    margin-bottom: 2rem;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #225824;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.breadcrumbs {
    font-size: 0.9rem;
    color: var(--text-light);
}

.breadcrumbs a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumbs a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.breadcrumbs span {
    color: var(--text-light);
}

/* Адаптивность для page-header */
@media (max-width: 768px) {
    .page-header {
        padding: 1.5rem 0 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .page-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 1.25rem 0 1rem;
    }
    
    .page-title {
        font-size: 1.4rem;
    }
    
    .breadcrumbs {
        font-size: 0.85rem;
    }
}

/* Для страницы истории */
.history .page-header {
    margin-bottom: 0;
}

/* Modern Hero Slider */
.hero-slider {
    width: 100%;
    height: 65vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 0 0 30px 30px;
    box-shadow: var(--shadow);
}

.hero-slide {
    position: relative;
    height: 65vh;
    min-height: 500px;
}

.slide-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slide-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 10s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.8);
}

.swiper-slide-active .slide-image-container img {
    transform: scale(1);
    filter: brightness(0.9);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(33, 160, 56, 0.9) 0%, rgba(26, 128, 48, 0.8) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide-content {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 30px;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
}

.swiper-slide-active .slide-content {
    transform: translateY(0);
    opacity: 1;
}

.slide-content h2 {
    font-size: 3rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.slide-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    font-weight: 500;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Modern Buttons */
.btn {
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    font-size: 15px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(33, 160, 56, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(33, 160, 56, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #c07349;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.85rem;
    transition: var(--transition);
    border: none;
    margin-top: auto;
    box-shadow: 0 2px 10px rgba(255, 237, 134, 0.3);
    gap: 6px;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 213, 99, 0.644);
}

.btn-order::before {
    content: '🛒';
    font-size: 0.9rem;
}

/* Modern Products Section */
.products {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.products::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: #225824;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.product-swiper {
    padding: 20px 10px 60px;
}

.product-slide {
    height: auto;
    display: flex;
    padding: 10px;
}

.product-card {
    background: var(--card);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border);
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
    text-align: center;
}

.product-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1.3;
}

.product-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 1.2rem;
}

/* Modern Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary);
    background: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-top: -25px;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 2px solid var(--border);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    border-color: var(--primary);
    box-shadow: 0 6px 20px rgba(33, 160, 56, 0.3);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.7);
    opacity: 1;
    width: 10px;
    height: 10px;
    transition: var(--transition);
}

.swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.3);
}

.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev {
    background: white;
    color: var(--primary);
    top: 50%;
    transform: translateY(-50%);
}

.product-swiper .swiper-pagination {
    bottom: 20px;
}

.product-swiper .swiper-pagination-bullet {
    background: rgba(0, 0, 0, 0.2);
    width: 8px;
    height: 8px;
}

.product-swiper .swiper-pagination-bullet-active {
    background: var(--primary);
    transform: scale(1.4);
}

.swiper-wrapper {
    align-items: stretch;
}

/* Modern News Section - Redesigned */
.news {
    padding: 3rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.news-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.news-card {
    background: var(--card);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 0;
    min-height: 180px;
}

.news-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-date {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date::before {
    content: '📅';
    font-size: 0.9rem;
}

.news-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text);
    font-weight: 700;
    line-height: 1.4;
}

.news-content p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 0.8rem;
}

.news-read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.news-read-more:hover {
    color: var(--primary-dark);
    gap: 8px;
}

.news-read-more::after {
    content: '→';
    transition: var(--transition);
}

.news-image {
    height: 100%;
    overflow: hidden;
    position: relative;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

/* Modern About Section */
.about {
    padding: 4rem 0;
    background: linear-gradient(135deg, #e8f5e9 0%, #ffffff 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-primary);
    opacity: 0.1;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Modern Contact Section */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #1a8030 0%, #21a038 100%);
    color: white;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.contact .section-title {
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: white;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: white;
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* Modern Footer */
footer {
    background: rgb(12, 70, 12);
    color: white;
    padding: 3rem 0 1.5rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    position: relative;
    font-weight: 700;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-column a:hover {
    color: white;
    padding-left: 5px;
}

.footer-column a::before {
    content: '▸';
    font-size: 0.7rem;
    opacity: 0;
    transition: var(--transition);
}

.footer-column a:hover::before {
    opacity: 1;
}

.copyright {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

/* ========== СТИЛИ ДЛЯ СТРАНИЦЫ ИСТОРИИ ========== */

/* История */
.history-list > li {
    margin-bottom: 45px;
}

.history-list > li:last-child {
    margin-bottom: 0;
}

.history-item .left-side {
    float: left;
    width: 220px;
}

.history-item .right-side {
    float: right;
    width: 730px;
    padding-top: 25px;
    border-top: 1px solid #dedede;
}

.history-item .date {
    width: 60px;
    height: 60px;
    line-height: 58px;
    text-align: center;
    border: 1px solid #35662b;
    border-radius: 100%;
    font-size: 18px;
    color: #35662b;
    margin-bottom: 20px;
}

.history-item .title {
    font-size: 20px;
    font-weight: 400;
    line-height: 25px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.history-item .brief {
    font-size: 12px;
    line-height: 16px;
}

.history-item .img {
    float: left;
    width: 240px;
}

.history-item .img img {
    display: block;
    width: 100%;
}

.history-item .text {
    float: right;
    width: 465px;
}

/* Редактор текста */
.text-editor {
    font-size: 14px; 
    line-height: 1.5;
}

.text-editor p {
    margin-bottom: 10px;
}

.text-editor br {
    margin-bottom: 10px;
}

/* Отступы */
.mb10 {margin-bottom: 10px !important;}

/* ========== СТИЛИ ДЛЯ ГЛАВНОЙ СТРАНИЦЫ ========== */
/* Header Fixes */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(76, 175, 80, 0.1);
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

main {
    margin-top: 0;
}

/* Hero Block Styles */
.hero-block {
    position: relative;
    height: 80vh;
    min-height: 600px;
    max-height: 800px;
    overflow: hidden;
    margin-top: 0;
}

.hero-container {
    position: relative;
    height: 100%;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.hero-content-bottom {
    width: 100%;
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.hero-content-bottom h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.1;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    letter-spacing: -0.5px;
}

.hero-text-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-main-text {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

.hero-subtext {
    font-size: 1.3rem;
    line-height: 1.5;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    font-weight: 300;
}

/* Products Section */
.products {
    padding: 4rem 0;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 0;
}

.product-card-static {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(76, 175, 80, 0.1);
    text-align: center;
}

.product-card-static:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.15);
}

/* Наши преимущества - современный зелёно-белый стиль */
.facts-green {
    background: linear-gradient(180deg, #f5fff7 0%, #ffffff 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.facts-header {
    text-align: center;
    margin-bottom: 3rem;
}

.facts-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #225824;
    margin-bottom: 0.5rem;
}

.facts-subtitle {
    font-size: 1.1rem;
    color: #4f4f4f;
    font-weight: 400;
}

.facts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.fact-item {
    background: #fff;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease-out;
}

.fact-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.fact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(46, 125, 50, 0.2);
}

.fact-icon {
    font-size: 2.5rem;
    color: #2e7d32;
    margin-bottom: 1rem;
    transition: transform 0.5s ease;
}

.fact-item:hover .fact-icon {
    transform: rotate(10deg) scale(1.1);
}

.fact-item h3 {
    font-size: 1.3rem;
    color: #225824;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.fact-item p {
    color: #555;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* News Masonry Section */
.news-masonry {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f4f8 0%, #d9e2ec 100%);
}

.news-header {
    text-align: center;
    margin-bottom: 4rem;
}

.news-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: -2rem;
    font-weight: 400;
}

.news-masonry-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: minmax(200px, auto);
    gap: 2rem;
    margin-bottom: 3rem;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Большая карточка - Главная новость */
.news-card-large {
    grid-column: span 4;
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.news-card-large .news-image {
    height: 300px;
    position: relative;
    width: 100%;
}

.news-card-large .news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-card-large .news-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-card-large h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.news-card-large p {
    font-size: 1.1rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Средняя карточка - Вторая новость */
.news-card-medium {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card-medium .news-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-card-medium h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.news-card-medium p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Маленькая карточка - Третья новость с акцентом */
.news-card-small {
    grid-column: span 2;
    grid-row: span 1;
    display: flex;
    align-items: center;
}

.news-card-small .news-content {
    padding: 2rem;
    width: 100%;
}

.news-card-small h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.news-card-small p {
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-light);
}

.news-card-accent {
    background: white;
    color: white;
}

.news-card-accent h3,
.news-card-accent .news-date,
.news-card-accent p {
    color: var(--secondary);
}

.news-image {
    position: relative;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.news-date {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.news-card h3 {
    color: var(--text);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 1rem;
}

.news-card p {
    color: var(--text-light);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.news-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.news-link:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.news-actions {
    text-align: center;
    margin-top: 2rem;
}

/* ========== СТИЛИ ДЛЯ СТРАНИЦЫ РУКОВОДСТВА ========== */

.leader-section {
    background: #ffffff;
    padding: 4rem 0;
}

.leader-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.leader-photo img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    object-fit: cover;
}

.leader-text h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: #225824;
    margin-bottom: 0.3rem;
}

.leader-position {
    color: #666;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.leader-intro {
    font-weight: 600;
    color: #4CAF50;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.leader-text p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.leader-info {
text-align: center;
margin-top: 1rem;
}

.leader-name {
font-size: 1.2rem;
color: #225824;
margin-bottom: 0.3rem;
font-weight: 400; /* Без жирности */
}

.leader-position {
font-size: 0.95rem;
color: #666;
font-weight: 400; /* Без жирности */
line-height: 1.4;
}

/* Убрать старые стили для .leader-text h2 и .leader-position */
.leader-text h2,
.leader-text .leader-position {
display: none;
}

/* Дополнительные стили для страницы "Наша жизнь" */
.our-life-page {
    padding: 0px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    min-height: 100vh;
}

.life-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.intro-section {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 900px;
    margin: 0 auto;
}

.intro-text strong {
    color: var(--text);
    font-weight: 600;
}

.gallery-section {
    margin-bottom: 4rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.gallery-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.05);
}

/* Модальное окно для фото */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal-content {
    position: relative;
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
}

.modal-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 10px;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary);
    transform: scale(1.1);
}

/* ========== АДАПТИВНОСТЬ ========== */

@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .news-card-large {
        grid-column: span 4;
    }
    
    .news-card-medium {
        grid-column: span 2;
    }
    
    .news-card-small {
        grid-column: span 2;
    }
    
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 992px) {
    .col-4, .col-8 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-8 {
        margin-top: 10px;
    }
    
    /* Показываем гамбургер-меню */
    .menu-toggle {
        display: flex;
    }
    
    /* Скрываем обычное меню на мобильных */
    .list {
        display: none;
    }
    
    /* Показываем логотип и гамбургер в одной строке */
    .tmenu .wrapper {
        justify-content: space-between;
    }
    
    .logo-wrap {
        margin-right: 0;
    }
    
    .about-content, 
    .contact-content,
    .leader-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .news-card {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .news-image {
        height: 200px;
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-slider {
        height: 55vh;
        min-height: 400px;
    }
    
    .hero-slide {
        height: 55vh;
        min-height: 400px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .facts-grid {
        grid-template-columns: 1fr;
    }
    
    .news-masonry-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .news-card-large,
    .news-card-medium,
    .news-card-small {
        grid-column: 1;
        grid-row: auto;
    }
    
    .leader-photo img {
        width: 80%;
        margin: 0 auto 2rem;
        display: block;
    }
    
    .leader-text {
        text-align: justify;
    }
}

@media (max-width: 768px) {
    .search-input {
        width: 180px;
    }
    
    .search-input:focus {
        width: 220px;
    }
    
    .phone {
        display: block;
        margin-right: 0;
        margin-bottom: 8px;
    }
    
    .logo {
        height: 40px;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .hero-slider {
        height: 50vh;
        min-height: 350px;
    }
    
    .hero-slide {
        height: 50vh;
        min-height: 350px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-image {
        height: 280px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card {
        margin-bottom: 1.5rem;
    }
    
    .news-card-large .news-content {
        padding: 1.5rem;
    }
    
    .news-card-medium .news-content {
        padding: 1.5rem;
    }
    
    .news-card-small .news-content {
        padding: 1.5rem;
    }
    
    .history-item .left-side,
    .history-item .right-side {
        float: none;
        width: 100%;
    }
    
    .history-item .right-side {
        padding-top: 15px;
    }
    
   
    
    .our-life-page {
        padding: 100px 0 40px;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .page-subtitle {
        font-size: 1.1rem;
    }

    .intro-section {
        padding: 2rem 1.5rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .gallery-image {
        height: 250px;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .slide-content h2 {
        font-size: 1.6rem;
    }
    
    .slide-content p {
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
        margin-top: -20px;
    }
    
    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1rem;
    }
    
    .hero-slider {
        height: 45vh;
        min-height: 300px;
    }
    
    .hero-slide {
        height: 45vh;
        min-height: 300px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .facts-grid,
    .news-masonry-grid {
        grid-template-columns: 1fr;
    }
    
    .news-card-large h3 {
        font-size: 1.3rem;
    }
    
    .news-card-medium h3 {
        font-size: 1.2rem;
    }
    
    .news-card-small h3 {
        font-size: 1.1rem;
    }
    
    .facts-title {
        font-size: 2rem;
    }
    
    .fact-item {
        padding: 1.8rem;
    }
    
    .page-title {
        font-size: 1.8rem;
    }

    .intro-text {
        font-size: 1rem;
    }

    .gallery-image {
        height: 200px;
    }
}

.product-count {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-left: auto;
    padding-left: 0.5rem;
}