:root {
    --primary-color: #FFC107;
    --warm-brown: #8B5E3C;
    --dark-chocolate: #3E2723;
    --creamy-white: #FAF3E0;
    --text-color: var(--dark-chocolate);
    --light-text-color: #ffffff;
    --header-bg-transparent: rgba(62, 39, 35, 0.7);
    --footer-bg: var(--warm-brown);
    --section-bg: var(--creamy-white);
    --font-main: 'Roboto', sans-serif;
    --font-heading: 'Roboto Slab', serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
}

.site-logo {
    width: 50px;
    filter: brightness(4);
    transition: all 0.2s ease;
}

.site-logo:hover {
    transform: scale(1.2);
}

.container {
    max-width: 1240px;
}

.container {
    margin: 0 auto;
    padding: 0 20px;
}

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

a:hover {
    color: #E0A800;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; text-align: center; margin-top: 40px; }
h3 { font-size: 1.5rem; }

section {
    padding: 60px 0;
}

.section-divider {
    border-bottom: 1px solid rgba(62, 39, 35, 0.2);
    margin: 0 auto 40px;
    width: 80%;
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease;
    background-color: var(--header-bg-transparent);
    padding: 10px 0;
}

.site-header.sticky {
    background-color: var(--dark-chocolate);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 5px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--light-text-color);
    font-weight: bold;
}

.main-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    color: var(--light-text-color);
    font-weight: bold;
    font-size: 1rem;
    padding: 5px 0;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav .current-menu-item a {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.default-menu-item a {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.lang-switcher {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

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

.lang-btn img {
    width: 16px;
    height: 11px;
    border: 1px solid #fff;
}

.lang-btn .current-lang-text {
    font-size: 0.9rem;
    font-weight: bold;
    color: var(--light-text-color);
}
.lang-btn .fa-angle-down {
    font-size: 0.8rem;
    color: var(--light-text-color);
    transition: transform 0.3s ease;
}
.lang-switcher.active .lang-btn .fa-angle-down {
    transform: rotate(180deg);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background-color: var(--dark-chocolate);
    border-radius: 5px;
    list-style: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    min-width: 150px;
    visibility: hidden;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    z-index: 1001;
}

.lang-switcher.active .lang-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.lang-dropdown li {
    margin-left: 0;
}

.lang-dropdown li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 8px 15px !important;
    color: var(--light-text-color) !important;
    font-size: 0.95rem;
    font-weight: normal;
    border-bottom: none !important;
}

.lang-dropdown li a:hover {
    background-color: var(--primary-color);
    color: var(--dark-chocolate) !important;
}

.lang-dropdown li a img {
    width: 16px;
    height: 11px;
    border: 1px solid #fff;
}

.col video {
    border-radius: 25px;
    transition: all 0.2s;
    width: 100%;
}

.col video:hover {
    transform: scale(1.03) translateZ(10px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.freeze-video {
    width: 400px;
    height: auto;
    object-fit: cover;
}

.mobile-menu-icon {
    display: none;
    cursor: pointer;
}

.hamburger {
    padding: 15px;
    display: inline-block;
    cursor: pointer;
    background-color: transparent;
    border: 0;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: block;
    position: relative;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: var(--light-text-color);
    position: absolute;
    transition: transform 0.3s ease;
    border-radius: 4px;
}

.hamburger-inner {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: '';
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
}

.mobile-nav ul {
    list-style: none;
    text-align: center;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    color: var(--light-text-color);
    font-size: 1.2rem;
}

.mobile-nav .lang-btn {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
}

.mobile-nav .lang-dropdown {
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 180px;
}
.mobile-nav .lang-switcher.active .lang-dropdown {
     transform: translateX(-50%) translateY(0);
}


.mobile-nav.active {
    display: block;
}

.hero {
    height: 70vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-text-color);
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
}

.hero h1 {
    color: var(--light-text-color);
    font-size: 3rem;
    margin-bottom: 10px;
}

.hero p {
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

.hero-packaging { 
    background-image: url('img/background.png');
    background-size: 118%;
}

.two-column {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.two-column .col {
    flex: 1;
}

.two-column p {
    margin-bottom: 15px;
}

.clients-section {
    background-color: var(--section-bg);
}

.clients-grid {
    display: flex;
    gap: 30px;
    text-align: center;
}

.client-item {
    flex: 1;
}

.client-item img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    object-fit: cover;
}

.advantages-list {
    list-style: none;
}

.advantages-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.advantages-list .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: #F0EAD6;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #c49a2e;
    color: var(--light-text-color);
}

.text-center {
    text-align: center;
}
.mt-20 {
    margin-top: 20px;
}

.suppliers-section {
    background-color: var(--section-bg);
}

.suppliers-carousel {
    padding: 0 40px;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s, opacity 0.3s;
}

.swiper-slide:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color) !important;
}

.contact-list {
    list-style: none;
}

.contact-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.contact-list li div {
    line-height: 1.4;
}

.contact-details {
    padding-left: 20px;
}

.contact-list .icon {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 25px;
    text-align: center;
    flex-shrink: 0;
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
    border-radius: 5px;
}

.product-info ul {
    list-style: none;
    padding-left: 20px;
}

.product-info ul li {
    margin-bottom: 5px;
}

.site-footer {
    background-color: var(--footer-bg);
    color: #D4C7B0;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
}

#scroll-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--light-text-color);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    z-index: 999;
}

#scroll-top.visible {
    display: flex;
}

.freeze-video {
    width: 400px;
    height: auto;
    object-fit: cover;
}

@media (max-width: 992px) {
    .two-column {
        flex-direction: column;
    }
    .two-column .col {
        text-align: center;
    }
    .two-column .col img {
        margin: 0 auto;
    }
    .advantages-list li {
        flex-direction: column;
        text-align: center;
    }
    .two-column.reverse-mobile {
        flex-direction: column-reverse;
    }
    .hero-packaging { 
        background-image: url('img/background.png');
        background-size: 230%;
        background-position: center;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .main-nav {
        display: none;
    }
    
    .mobile-menu-icon {
        display: block;
    }
    
    .hero {
        height: 50vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }
    
    .clients-grid {
        flex-direction: column;
    }
    
    .products-catalog-grid {
        grid-template-columns: 1fr;
    }

    .hero-packaging { 
        background-image: url('img/background.png');
        background-size: 230%;
        background-position: center;
    }
}

.products-catalog-section {
    background-color: var(--section-bg);
}

.products-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    text-align: center;
    padding-bottom: 20px;
    transition: all 0.2s ease;
}

.product-card:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

.product-card:hover img {
    transform: scale(1.05);
    transition: 0.2s;
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.product-card h3 {
    font-size: 1.3rem;
    color: var(--dark-chocolate);
    margin-bottom: 10px;
    padding: 0 15px;
}

.product-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    padding: 0 15px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: var(--dark-chocolate);
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    max-width: 500px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 1rem;
    color: var(--text-color);
    transition: border-color 0.3s ease;
}

.form-group textarea {
    min-height: 100px;
    max-height: 1000px;
    resize: vertical;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    border-width: 3px;
}

.contact-form .btn {
    align-self: flex-start;
    margin-top: 10px;
}

.eggs-color-info {
    font-size: 0.95rem;
    color: #4CAF50;
    font-weight: bold;
    margin-top: 5px;
}