/* Основні змінні */
:root {
    --primary-color: #4a7c4e;
    --primary-dark: #3a6240;
    --primary-light: #6fa573;
    --secondary-color: #8b6f47;
    --secondary-dark: #6f5837;
    --accent-color: #d4af37;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
    --transition: all 0.3s ease;
}

/* Глобальні стилі */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Кнопки */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

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

/* Навігація */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    order: 1;
    text-decoration: none;
    transition: var(--transition);
}

.nav-brand:hover {
    opacity: 0.8;
    transform: translateY(-1px);
}

.nav-brand span {
    transition: var(--transition);
}

.nav-brand:hover span {
    color: var(--primary-dark);
}

.nav-logo {
    height: 55px;
    width: auto;
    transition: var(--transition);
    /* Логотип з прозорим фоном */
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.nav-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    order: 3;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
    padding: 8px 0;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Перемикач мов (зверху, перед меню) */
.lang-switcher-top {
    position: relative;
    order: 2;
}

.lang-current {
    display: none; /*Ховаємо на desktop */
}

/* Desktop view - горизонтальний */
@media (min-width: 969px) {
    .lang-dropdown {
        display: flex;
        align-items: center;
        gap: 0;
    }
    
    .lang-divider {
        display: inline;
        margin: 0 4px;
    }
}

.lang-btn {
    font-weight: 600;
    font-size: 13px;
    color: var(--text-light);
    padding: 4px 8px;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
    display: block;
}

.lang-btn:hover {
    color: var(--primary-color);
    background: var(--bg-light);
}

.lang-btn.active {
    color: white;
    background: var(--primary-color);
}

.lang-divider {
    color: var(--border-color);
    font-size: 12px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    order: 4;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Герой секція */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.1) 0%, transparent 50%);
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    padding: 40px 20px;
}

.hero-logo {
    margin-bottom: 30px;
    animation: zoomIn 1s ease;
}

.hero-logo img {
    width: 180px;
    height: auto;
    /* Логотип з прозорим фоном та тінню */
    filter: drop-shadow(0 12px 40px rgba(0, 0, 0, 0.4));
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.5);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease 0.4s both;
}

.hero-description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInDown 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 32px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Секція загальні стилі */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* Переваги */
.benefits {
    background: var(--bg-light);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 36px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Для коней */
.horses {
    background: white;
}

.horses-content {
    max-width: 900px;
    margin: 0 auto;
}

.horses-image {
    position: relative;
}

.horses-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 1;
    transition: var(--transition);
}

.horses-image img:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 120px;
    box-shadow: var(--shadow-lg);
}

.horses-text h2 {
    font-size: 42px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.lead {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
}

.feature-item i {
    color: var(--success-color);
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 5px;
}

.feature-item h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.testimonial {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    position: relative;
}

.testimonial i {
    color: var(--primary-light);
    font-size: 32px;
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.8;
}

.testimonial cite {
    color: var(--primary-dark);
    font-weight: 600;
    font-style: normal;
}

/* Для інших тварин */
.animals {
    background: var(--bg-light);
}

.animals-intro {
    background: white;
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 50px;
    box-shadow: var(--shadow-md);
}

.intro-text h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 25px;
    text-align: center;
}

.intro-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.intro-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.6;
}

.intro-list i {
    color: var(--success-color);
    font-size: 20px;
    margin-top: 2px;
    flex-shrink: 0;
}

.animals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.animal-card {
    background: white;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.animal-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.animal-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
}

.animal-emoji {
    font-size: 38px;
    filter: grayscale(100%) brightness(2) contrast(1.5);
    display: inline-block;
}

.animal-card h3 {
    font-size: 20px;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

.animal-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 15px;
}

.animal-card p strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 10px;
}

.animal-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.animal-benefits li {
    font-size: 14px;
    color: var(--text-dark);
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    line-height: 1.5;
}

.animal-benefits li:last-child {
    border-bottom: none;
}

.animals-footer {
    margin-top: 60px;
}

.footer-highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.footer-highlight-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    opacity: 0.95;
    filter: brightness(0) invert(1);
}

.footer-highlight h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: white;
}

.footer-highlight p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

/* Характеристики */
.specs {
    background: white;
}

.specs-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--bg-light);
    border-radius: 15px;
    overflow: hidden;
}

.specs-table tbody tr {
    border-bottom: 1px solid var(--border-color);
}

.specs-table tbody tr:last-child {
    border-bottom: none;
}

.specs-table td {
    padding: 18px 25px;
}

.specs-table td:first-child {
    width: 40%;
    color: var(--text-light);
}

.specs-table td:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

/* Showcase images */
.product-showcase {
    margin: 40px 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.showcase-image {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.showcase-image:hover {
    transform: scale(1.02);
}

/* Comparison image */
.comparison-image-wrapper {
    margin-bottom: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.comparison-image {
    width: 100%;
    height: auto;
    display: block;
}

.specs-comparison h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.comparison-subtitle {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.comparison-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.comparison-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 16px;
}

.comparison-bar {
    background: var(--bg-light);
    border-radius: 25px;
    overflow: hidden;
    height: 40px;
    position: relative;
}

.bar-hemp,
.bar-straw {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: width 1s ease;
    border-radius: 25px;
}

.bar-hemp {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.bar-straw {
    background: linear-gradient(90deg, var(--secondary-dark), var(--secondary-color));
}

.bar-wood {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 14px;
    transition: width 1s ease;
    border-radius: 25px;
    background: linear-gradient(90deg, #8b6f47, #a0826d);
}

/* Сфери застосування */
.usage-areas {
    margin-bottom: 60px;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 20px;
}

.usage-title {
    font-size: 32px;
    color: var(--primary-dark);
    text-align: center;
    margin-bottom: 40px;
}

.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.usage-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.usage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.usage-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: block;
}

.usage-card h4 {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.usage-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Відгуки */
.reviews {
    background: var(--bg-light);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.review-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-rating {
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 18px;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
}

.author-info h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 14px;
    color: var(--text-light);
}

/* Контакти */
.contact {
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-item h4 {
    font-size: 16px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 15px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(74, 124, 78, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    display: none;
    background: white;
    padding: 60px 40px;
    border-radius: 15px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
}

.form-success.active {
    display: block;
}

.form-success i {
    font-size: 64px;
    color: var(--success-color);
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 28px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.form-success p {
    color: var(--text-light);
    font-size: 16px;
}

/* Футер */
.footer {
    background: var(--primary-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
    padding-left: 5px;
}

.newsletter-form {
    display: flex;
    margin-top: 15px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border: none;
    border-radius: 25px 0 0 25px;
    font-family: 'Montserrat', sans-serif;
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 0 25px 25px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--secondary-dark);
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 100px;
    height: auto;
    /* Логотип з прозорим фоном, інвертуємо кольори для темного фону */
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(255,255,255,0.1));
    opacity: 0.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Респонсивний дизайн */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 40px;
        gap: 20px;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        left: 0;
    }

    .lang-switcher-top {
        position: absolute;
        top: 20px;
        right: 60px;
        order: initial;
    }
    
    /* Показуємо кнопку на мобільних */
    .lang-current {
        display: flex;
        align-items: center;
        gap: 4px;
        background: var(--primary-color);
        color: white;
        border: none;
        padding: 6px 10px;
        border-radius: 6px;
        font-weight: 600;
        font-size: 13px;
        cursor: pointer;
        transition: var(--transition);
    }
    
    .lang-current:hover {
        background: var(--primary-dark);
    }
    
    /* Випадаючий список на мобільних - ховаємо за замовчуванням */
    .lang-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        margin-top: 8px;
        background: white;
        border-radius: 8px;
        box-shadow: var(--shadow-md);
        padding: 8px;
        min-width: 100px;
        z-index: 1001;
        flex-direction: column;
        gap: 4px;
    }
    
    /* Показуємо тільки коли active */
    .lang-switcher-top.active .lang-dropdown {
        display: flex;
        flex-direction: column;
    }
    
    .lang-dropdown .lang-btn {
        font-size: 14px;
        padding: 8px 12px;
        width: 100%;
        text-align: center;
    }
    
    /* Ховаємо роздільники на мобільних */
    .lang-divider {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        height: 45px;
    }

    .hero-logo img {
        width: 140px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    .section-title {
        font-size: 36px;
    }

    .specs-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .hero {
        height: auto;
        min-height: 100vh;
        padding: 100px 0 60px;
    }

    .hero-logo img {
        width: 120px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    .section-title {
        font-size: 32px;
    }

    .benefits-grid,
    .animals-grid {
        grid-template-columns: 1fr;
    }

    .horses-text h2 {
        font-size: 32px;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .usage-areas {
        padding: 30px 20px;
    }

    .usage-title {
        font-size: 26px;
    }

    .usage-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .animals-intro {
        padding: 30px 20px;
    }

    .intro-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .intro-text h3 {
        font-size: 24px;
    }

    .footer-highlight {
        padding: 40px 25px;
    }

    .footer-highlight h3 {
        font-size: 26px;
    }

    .footer-highlight p {
        font-size: 16px;
    }

    .product-showcase {
        margin: 30px 0;
        border-radius: 15px;
    }

    .comparison-image-wrapper {
        margin-bottom: 20px;
        border-radius: 10px;
    }

    /* Comparison bars для планшетів */
    .comparison-bar {
        height: 50px;
    }

    .bar-hemp,
    .bar-straw,
    .bar-wood {
        font-size: 12px;
        padding: 0 10px;
    }

    .comparison-label {
        font-size: 15px;
    }

    .specs-comparison h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .nav-logo {
        height: 38px;
    }

    .hero-logo img {
        width: 90px;
    }

    .hero-title {
        font-size: 28px;
    }

    .nav-brand {
        font-size: 16px;
        max-width: calc(100% - 140px);
    }
    
    .nav-brand span {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .footer-logo img {
        width: 80px;
    }

    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }

    .product-showcase {
        margin: 20px 0;
        border-radius: 10px;
    }

    .comparison-image-wrapper {
        margin-bottom: 15px;
        border-radius: 8px;
    }

    /* Comparison bars для мобільних */
    .comparison-bar {
        height: 48px;
        min-height: 48px;
    }

    .bar-hemp,
    .bar-straw,
    .bar-wood {
        font-size: 10px;
        padding: 4px 6px;
        line-height: 1.3;
    }

    .bar-hemp span,
    .bar-straw span,
    .bar-wood span {
        display: inline-block;
        max-width: 100%;
    }

    /* Для вузьких барів (менше 50%) дозволяємо перенос */
    .bar-wood[style*="width: 50%"] span,
    .bar-wood[style*="width: 40%"] span,
    .bar-wood[style*="width: 30%"] span,
    .bar-straw[style*="width: 40%"] span,
    .bar-straw[style*="width: 25%"] span,
    .bar-straw[style*="width: 20%"] span {
        white-space: normal;
        word-break: keep-all;
    }

    .comparison-label {
        font-size: 13px;
        font-weight: 700;
    }

    .comparison-bars {
        gap: 20px;
    }

    .comparison-item {
        gap: 8px;
    }

    .specs-comparison h3 {
        font-size: 20px;
    }

    .comparison-subtitle {
        font-size: 13px;
    }
}

@media (max-width: 380px) {
    /* Ще більше оптимізації для дуже маленьких екранів */
    .nav-brand {
        font-size: 14px;
        max-width: calc(100% - 130px);
    }
    
    .nav-logo {
        height: 32px;
    }
    
    .lang-switcher-top {
        right: 60px;
        font-size: 12px;
    }
    
    .lang-switcher-top .lang-btn {
        font-size: 11px;
        padding: 3px 5px;
    }
    
    .comparison-bar {
        height: 52px;
        min-height: 52px;
    }

    .bar-hemp,
    .bar-straw,
    .bar-wood {
        font-size: 9px;
        padding: 3px 5px;
    }

    .comparison-label {
        font-size: 12px;
    }

    .specs-comparison h3 {
        font-size: 18px;
    }

    .comparison-subtitle {
        font-size: 12px;
    }
}