:root { /* Тут мы определяем ссыылки на цвета*/
         /*   --primary-green: #28a745;
            --secondary-green: #20c997;
            --light-green: #d4edda;
            --dark-green: #1e7e34;*/
            --primary-green: #5c8c45;
            --primary-light-green: #a1c293;
            --secondary-green: #47806f;
            --light-green: #c1e0c8;
            --dark-green: #2d5737;
            --orange: #fd5e14;
            --natur-red: #d83823;
            --natur-dark-red: #a82b1a;
        }
        
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

.hero-action{
    color: var(--primary-green);
}

/* Навигация */
.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 500;
}

.badge-cart {
    background-color: var(--orange);
}

/* Герой секция */
.hero-section {
    background: linear-gradient(#5c8c45d9, #5c8c45e6), url('https://images.unsplash.com/photo-1540420828642-fca2c5c18abb?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2069&q=80') center/cover no-repeat;
    color: #f6e2ab;
    padding: 120px 0;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

/* Секции */
.section-title {
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-green);
}

/* Карточки продуктов */
.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #f6e2ab;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px #0000001a;
}

.product-img {
    height: 200px;
    object-fit: cover;
}

.product-price {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.3rem;
}

.product-old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 0.9rem;
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}

/* Преимущества */
.benefit-icon {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 20px;
}

/* Карусель отзывов */
.testimonial-card {
    border-radius: 12px;
    border: 1px solid #f6e2ab;
    padding: 25px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--light-green);
}

/* Акция */
.discount-banner {
    background: linear-gradient(to right, var(--primary-green), var(--secondary-green));
    color: #f6e2ab;
    border-radius: 12px;
    overflow: hidden;
}

/* Футер */
.footer {
    background-color: #2c3e50;
    color: #f6e2ab;
}

.footer a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s;
}

.footer a:hover {
    color: #f6e2ab;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #ffffff1a;
    border-radius: 50%;
    margin-right: 10px;
    transition: background-color 0.3s;
}

.social-icon:hover {
    background-color: var(--primary-green);
}

/* Кнопки */
.btn-primary-custom {
    background-color: var(--natur-red);
    border-color: var(--natur-red);
    color: #f6e2ab;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
}

.btn-primary-custom:hover {
    background-color: var(--natur-dark-red);
    border-color: var(--natur-dark-red);
}

.btn-outline-custom {
    border-color: var(--primary-green);
    color: var(--primary-green);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 50px;
}

.btn-outline-custom:hover {
    background-color: var(--primary-green);
    color: #f6e2ab;
}