
:root {
    --carbon-black:  #1C1C1C;
    --tuscan-sun:    #F3C53F;
    --carrot-orange: #F79823;
    --brick-ember:   #BF0603;
    --platinum:      #EEF0F2;
    --white:         #FFFFFF;
    --pure-black:    #000000;
    --shadow-light:  0 4px 6px rgba(28,28,28,0.05);
    --shadow-medium: 0 8px 22px rgba(28,28,28,0.12);
    --shadow-heavy:  0 12px 24px rgba(28,28,28,0.15);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: clamp(18px, 2vw, 21px);
    line-height: 1.7;
    color: var(--carbon-black);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3 {
    font-family: "Playfair Display", serif;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}

h1 {
    font-size: clamp(3rem, 6vw, 4rem);
    max-width: 1000px;
    margin: 0 auto;
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
}

.container {
    max-width: 1600px;
    margin: auto;
    padding: 0 32px;
}

header {
    background: var(--platinum);
    border-bottom: 1px solid var(--carbon-black);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 110px;
    padding: 15px 0;
    position: relative;
    gap: 20px;
}

.logo img {
    height: 140px;
    width: auto;
    transition: transform var(--transition-normal);
}

.logo img:hover {
    transform: scale(1.02);
}

/* Navigation - using gap for consistent spacing */
nav {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

nav a {
    color: var(--carbon-black);
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    transition: color var(--transition-normal);
    white-space: nowrap;
}

nav a:hover {
    color: var(--carrot-orange);
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--carrot-orange);
    transition: width var(--transition-normal);
}

nav a:hover::after {
    width: 100%;
}

/* Contact CTA - separate styling */
.contact-cta {
    display: flex;
    gap: 16px;
    margin-left: auto;
}

.contact-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-width: 150px;
    padding: 16px 24px;
    border-radius: 10px;
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--transition-normal);
    background: var(--white);
    color: var(--carbon-black);
    border: 2px solid var(--white);
    box-shadow: var(--shadow-light);
}

.contact-cta i {
    font-size: 30px;
    transition: transform var(--transition-normal);
}

.contact-cta a:hover i {
    transform: translateX(3px);
}

.contact-cta .whatsapp:hover,
.contact-cta .email:hover {
    border-color: var(--carrot-orange);
    color: var(--carrot-orange);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.contact-cta .email:hover .fa-envelope {
    color: var(--carrot-orange);
}

.contact-cta .whatsapp:hover .fa-square-whatsapp {
    color: #25d366 !important;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    color: var(--carbon-black);
    text-decoration: none;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    transition: color var(--transition-normal);
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
    white-space: nowrap;
}

.dropbtn i {
    font-size: 14px;
    transition: transform var(--transition-normal);
}

.dropdown:hover .dropbtn i {
    transform: rotate(180deg);
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 260px;
    box-shadow: var(--shadow-heavy);
    border-radius: 8px;
    z-index: 1000;
    padding: 8px 0;
    border: 1px solid var(--platinum);
    margin-top: 10px;
}

.dropdown-content a {
    color: var(--carbon-black) !important;
    padding: 12px 20px !important;
    text-decoration: none;
    display: block;
    font-size: 18px !important;
    margin: 0 !important;
    transition: all var(--transition-normal);
    border-left: 3px solid transparent;
}

.dropdown-content a:hover {
    background: var(--platinum);
    color: var(--carrot-orange) !important;
    border-left: 3px solid var(--carrot-orange);
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--carbon-black);
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: calc(100vh - 170px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px 100px;
    overflow: hidden;
}

.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 1.5s ease;
    will-change: opacity;
}

.hero-img.active {
    opacity: 1;
    z-index: 2;
}

.hero-images::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 28, 28, 0.45);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 4;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-emblem {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 18px;
}

.hero-emblem img {
    display: block;
    margin: 0 auto;
    height: 200px;
    width: auto;
}

.hero h1 {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(28,28,28,0.3);
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-meta {
    font-size: 18px;
    letter-spacing: 0.5px;
    color: var(--white);
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.3s both;
}

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

/* Sections */
.section {
    padding: 96px 0;
    scroll-margin-top: 30px;
    position: relative;
}

.section:not(footer)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 1px;
    background: var(--carbon-black);
}

.section.dark {
    background: var(--carbon-black);
    color: var(--white);
}

.section.dark h2,
.section.dark p {
    color: var(--white);
}

.section.dark::after {
    display: none;
}

/* About Section */
.about-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0 40px;
}

.about-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--carbon-black);
    text-align: center;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.section.dark .about-text {
    color: var(--white);
}

.section-divider {
    width: 60%;
    height: 1px;
    background: var(--carbon-black);
    margin: 40px auto;
}

.certification-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
    margin: 30px 0 20px;
    padding: 20px 0;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    min-width: 100px;
}

.logo-item img {
    width: 160px;
    height: 160px;
    object-fit: contain;
    filter: grayscale(20%);
    transition: all var(--transition-normal);
    border-radius: 8px;
}

.logo-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.logo-item span {
    font-size: 24px;
    font-weight: 600;
    color: var(--carbon-black);
    opacity: 0.8;
}

.section.dark .logo-item span {
    color: var(--white);
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

.stat-number {
    font-family: "Playfair Display", serif;
    font-size: 54px;
    font-weight: 700;
    color: var(--carrot-orange);
    margin-bottom: 10px;
    line-height: 1.2;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--carbon-black);
}

.section.dark .stat-label {
    color: var(--white);
}

/* Products Grid */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 36px;
    margin-top: 48px;
    justify-items: center;
}

.card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--carbon-black);
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-light);
    max-width: 380px;
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.card:nth-child(1) {
    background: linear-gradient(rgba(28, 28, 28, 0.8), rgba(28, 28, 28, 0.8)), 
                url('product-meat.png') center/cover;
    color: var(--white);
    border: none;
}

.card:nth-child(2) {
    background: linear-gradient(rgba(28, 28, 28, 0.8), rgba(28, 28, 28, 0.8)), 
                url('product-offal.png') center/cover;
    color: var(--white);
    border: none;
}

.card:nth-child(3) {
    background: linear-gradient(rgba(28, 28, 28, 0.8), rgba(28, 28, 28, 0.8)), 
                url('product-packaged-meat.jpg') center/cover;
    color: var(--white);
    border: none;
}

.card:nth-child(4) {
    background: linear-gradient(rgba(28, 28, 28, 0.8), rgba(28, 28, 28, 0.8)), 
                url('product-packaged-offal.jpg') center/cover;
    color: var(--white);
    border: none;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--carrot-orange);
}

.card h3 {
    color: var(--white);
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.card p {
    font-size: 19px;
    margin-top: 12px;
    color: var(--platinum);
    position: relative;
    z-index: 2;
}

.product-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--carbon-black);
    text-align: center;
    font-size: 20px;
    color: var(--carbon-black);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-footer p {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.card-link {
    text-decoration: none;
    display: block;
    width: 100%;
}

.card-link .card {
    cursor: pointer;
}

/* Brands Slider */
.brand-slider {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    overflow-x: auto;
    margin-top: 48px;
    padding-bottom: 30px;
    scrollbar-width: thin;
    scrollbar-color: var(--carrot-orange) var(--platinum);
    justify-content: center;
}

.brand-slider::-webkit-scrollbar {
    height: 8px;
}

.brand-slider::-webkit-scrollbar-track {
    background: var(--platinum);
    border-radius: 4px;
}

.brand-slider::-webkit-scrollbar-thumb {
    background: var(--carrot-orange);
    border-radius: 4px;
}

.brand-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    min-width: 280px;
}

.brand-box {
    flex: 0 0 260px;
    height: 160px;
    width: 100%;
    border-radius: 12px;
    border: 2px solid var(--platinum);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(28,28,28,0.3) 0%, rgba(28,28,28,0.5) 100%);
    z-index: 1;
    transition: all var(--transition-normal);
}

.brand-box .box-text {
    position: relative;
    z-index: 2;
    color: var(--white);
    font-weight: 700;
    font-size: 24px;
    text-shadow: 0 2px 4px rgba(28,28,28,0.5);
    opacity: 0.9;
}

.brand-label {
    font-weight: 600;
    font-size: 22px;
    color: var(--white);
    text-align: center;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    min-width: 220px;
    transition: all var(--transition-normal);
}

.brand-item:hover .brand-box {
    border-color: var(--carrot-orange);
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-heavy);
}

.brand-item:hover .brand-box::before {
    background: linear-gradient(135deg, rgba(28,28,28,0.2) 0%, rgba(28,28,28,0.4) 100%);
}

.brand-item:hover .brand-label {
    color: var(--carrot-orange);
    background: rgba(247, 152, 35, 0.1);
    transform: translateY(-3px);
}

.brand-item:nth-child(1) .brand-box {
    background: linear-gradient(135deg, var(--tuscan-sun) 0%, var(--carrot-orange) 100%);
}

.brand-item:nth-child(2) .brand-box {
    background: linear-gradient(135deg, var(--tuscan-sun) 0%, #daa520 100%);
}

.brand-item:nth-child(3) .brand-box {
    background: linear-gradient(135deg, var(--carbon-black) 0%, #666666 100%);
}

.brand-item:nth-child(4) .brand-box {
    background: linear-gradient(135deg, var(--carrot-orange) 0%, var(--brick-ember) 100%);
}

.brand-item:nth-child(5) .brand-box {
    background: linear-gradient(135deg, var(--tuscan-sun) 0%, var(--carrot-orange) 100%);
}

/* Markets Carousel */
.markets-carousel {
    position: relative;
    overflow: hidden;
    margin-top: 48px;
    padding: 0 60px;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    gap: 40px;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

.market-card {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.market-flag {
    width: 100%;
    height: 200px;
    min-height: 200px;
    border-radius: 12px;
    border: 3px solid var(--platinum);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: var(--white);
    padding: 15px;
    position: relative;
    box-shadow: 
        0 4px 8px rgba(28, 28, 28, 0.04),
        0 12px 20px -8px rgba(28, 28, 28, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.market-flag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2) 0%,
        rgba(255, 255, 255, 0.05) 50%,
        rgba(28, 28, 28, 0.02) 100%);
    border-radius: 9px;
    pointer-events: none;
    z-index: 1;
}

.market-flag img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 4px 6px rgba(28, 28, 28, 0.1));
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.market-card:hover .market-flag {
    border-color: var(--carrot-orange);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 25px 30px -12px rgba(247, 152, 35, 0.25),
        0 30px 40px -15px rgba(28, 28, 28, 0.2),
        0 0 0 2px rgba(247, 152, 35, 0.1) inset;
}

.market-card:hover .market-flag img {
    filter: drop-shadow(0 8px 12px rgba(247, 152, 35, 0.3));
}

.market-card:hover .market-flag::before {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.25) 0%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(247, 152, 35, 0.05) 100%);
}

.market-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    min-width: 200px;
    transition: all var(--transition-normal);
}

.market-card:hover .market-name {
    color: var(--carrot-orange);
    background: rgba(247, 152, 35, 0.1);
    transform: translateY(-3px);
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--carrot-orange);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    transition: all var(--transition-normal);
    z-index: 10;
    box-shadow: var(--shadow-light);
}

.arrow:hover {
    background: var(--tuscan-sun);
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-medium);
}

.arrow.left {
    left: 0;
}

.arrow.right {
    right: 0;
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--platinum);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    padding: 0;
}

.pagination-dot:hover {
    background: var(--carrot-orange);
    transform: scale(1.2);
}

.pagination-dot.active {
    background: var(--carrot-orange);
    transform: scale(1.1);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--carbon-black) 0%, #333 100%);
    color: var(--white);
    padding: 80px 20px 60px;
    text-align: center;
    margin-top: 0;
}

.page-header h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.page-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 17px;
    opacity: 0.9;
}

.back-btn {
    display: inline-block;
    margin-bottom: 30px;
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: all var(--transition-normal);
    padding: 10px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.back-btn:hover {
    background: var(--carrot-orange);
    transform: translateX(-5px);
}

.back-btn i {
    margin-right: 8px;
}

/* Product List */
.product-list-container {
    padding: 60px 32px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-item {
    background: var(--white);
    border: 1px solid var(--platinum);
    border-radius: 12px;
    overflow: hidden;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-light);
    padding: 20px;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--carrot-orange);
}

.product-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--carbon-black);
    text-align: left;
}

.product-code {
    color: var(--carrot-orange);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 8px;
}

.product-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 12px;
}

.product-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.spec-tag {
    background: var(--platinum);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
    color: var(--carbon-black);
}

/* Footer */
footer {
    background: var(--carbon-black);
    color: var(--platinum);
    padding: 60px 0 30px;
    font-size: 16px;
    border-top: 3px solid var(--carrot-orange);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.footer-contact {
    text-align: center;
    max-width: 800px;
}

.footer-contact h3 {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    color: var(--white);
    margin-bottom: 15px;
}

.footer-company {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.footer-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    font-size: 18px;
    transition: all var(--transition-normal);
    padding: 12px 24px;
    border-radius: 8px;
    background: var(--white);
    color: var(--carbon-black);
    border: 2px solid var(--white);
    min-width: 300px;
    box-shadow: var(--shadow-light);
}

.footer-link i {
    font-size: 30px;
    transition: transform var(--transition-normal);
}

.footer-link:hover {
    color: var(--carrot-orange);
    border-color: var(--carrot-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.footer-link:hover .fa-envelope {
    color: var(--carrot-orange);
}

.footer-link:hover .fa-square-whatsapp {
    color: #25d366 !important;
}

.footer-copyright {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--carbon-black);
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: var(--platinum);
}

/* Language Selector */
.language-selector {
    position: fixed;
    top: 150px;
    right: 20px;
    z-index: 1000;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
    border: 2px solid var(--platinum);
    padding: 10px;
}

.language-selector select {
    border: none;
    background: transparent;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    color: var(--carbon-black);
    cursor: pointer;
    padding: 5px;
    outline: none;
}

/* Media Queries */
@media (max-width: 1200px) {
    .nav { min-height: 100px; }
    .logo img { height: 120px; }
    nav { gap: 20px; }
    nav a, .dropbtn { font-size: 20px; }
    .contact-cta { margin-left: 15px; }
    .contact-cta a { min-width: 140px; padding: 14px 20px; }
    .market-flag { height: 180px; min-height: 180px; }
    .market-card { flex: 0 0 260px; }
    .market-name { font-size: 22px; min-width: 180px; }
    .language-selector { top: 120px; right: 15px; }
    .brand-item { min-width: 240px; }
    .brand-box { flex: 0 0 220px; height: 140px; }
    .brand-label { font-size: 20px; min-width: 200px; }
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav {
        min-height: 80px;
        flex-wrap: wrap;
    }
    
    nav {
        display: none;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        padding: 20px;
        border-radius: 8px;
        box-shadow: var(--shadow-heavy);
        margin-top: 20px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        z-index: 1000;
        max-height: 80vh;
        overflow-y: auto;
        gap: 0;
    }
    
    nav.active {
        display: flex;
    }
    
    nav a,
    .dropdown {
        width: 100%;
        margin: 8px 0 !important;
    }
    
    .dropdown {
        position: relative;
    }
    
    .dropbtn {
        width: 100%;
        justify-content: space-between;
        padding: 12px 0;
    }
    
    .dropdown-content {
        position: static !important;
        box-shadow: none;
        border: 1px solid var(--platinum);
        margin-top: 8px;
        width: 100%;
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 12px 20px !important;
    }
    
    .contact-cta {
        margin: 16px 0 0 !important;
        flex-direction: column;
        width: 100%;
        margin-left: 0 !important;
    }
    
    .contact-cta a {
        width: 100%;
        margin: 4px 0;
    }
    
    body { font-size: 19px; }
    h1 { font-size: 40px; }
    h2 { font-size: 32px; }
    
    .markets-carousel { padding: 0 50px; }
    .market-flag { height: 150px; min-height: 150px; }
    .market-card { flex: 0 0 220px; }
    .market-name { font-size: 20px; min-width: 160px; }
    .carousel-slide { gap: 30px; }
    .brand-slider { justify-content: flex-start; }
    .language-selector { top: 110px; right: 10px; }
    .brand-item { min-width: 220px; }
    .brand-box { flex: 0 0 200px; height: 130px; }
    .brand-label { font-size: 18px; min-width: 180px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .hero { min-height: 80vh; padding: 40px 20px; }
    .hero h1 { font-size: 32px; }
    .hero-emblem img { height: 150px; }
    .hero-meta { font-size: 16px; }
    .section { padding: 70px 0; }
    .section:not(footer)::after { left: 20%; width: 60%; }
    .grid { grid-template-columns: 1fr; gap: 20px; }
    .markets-carousel { padding: 0 40px; }
    .market-flag { height: 120px; min-height: 120px; }
    .market-card { flex: 0 0 180px; gap: 15px; }
    .market-name { font-size: 18px; min-width: 140px; padding: 8px 15px; }
    .carousel-slide { gap: 20px; }
    .arrow { width: 40px; height: 40px; font-size: 20px; }
    .footer-link { font-size: 16px; padding: 10px 20px; min-width: 250px; }
    .footer-company { font-size: 18px; }
    .language-selector { top: 100px; right: 10px; }
    .brand-slider { gap: 25px; }
    .brand-item { min-width: 180px; gap: 15px; }
    .brand-box { flex: 0 0 160px; height: 100px; }
    .brand-box .box-text { font-size: 18px; }
    .brand-label { font-size: 16px; min-width: 140px; padding: 8px 15px; }
    .about-text { font-size: 18px; line-height: 1.7; padding: 0 15px; }
    .certification-logos { gap: 30px; }
    .logo-item img { width: 60px; height: 60px; }
    .logo-item span { font-size: 12px; }
    .about-stats { gap: 30px; margin-top: 30px; }
    .stat-number { font-size: 36px; }
    .stat-label { font-size: 16px; }
    .section-divider { margin: 30px auto; }
    .product-list-container { padding: 40px 20px; }
    .product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
    .markets-carousel { padding: 0 35px; }
    .market-flag { height: 100px; min-height: 100px; }
    .market-card { flex: 0 0 150px; }
    .market-name { font-size: 16px; min-width: 120px; }
    .carousel-slide { gap: 15px; }
    .language-selector { top: 90px; right: 5px; padding: 8px; }
    .language-selector select { font-size: 12px; }
    .footer-link { min-width: 200px; }
    .brand-slider { gap: 20px; }
    .brand-item { min-width: 150px; }
    .brand-box { flex: 0 0 140px; height: 90px; }
    .brand-label { font-size: 14px; min-width: 120px; padding: 6px 12px; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 28px; }
    .hero-emblem img { height: 120px; }
    nav a { font-size: 18px; }
    .contact-cta { flex-direction: column; max-width: 300px; width: 100%; }
    .contact-cta a { width: 100%; justify-content: center; }
    .card { padding: 24px; }
    .language-selector { display: none; }
    .footer-link { min-width: 100%; }
    .brand-slider { gap: 15px; }
    .brand-item { min-width: 130px; gap: 10px; }
    .brand-box { flex: 0 0 120px; height: 80px; }
    .brand-box .box-text { font-size: 14px; }
    .brand-label { font-size: 13px; min-width: 110px; padding: 5px 10px; }
    .certification-logos { gap: 20px; }
    .logo-item { min-width: 70px; }
    .logo-item img { width: 50px; height: 50px; }
    .about-stats { flex-direction: column; gap: 25px; align-items: center; }
    .stat-item { width: 100%; max-width: 200px; }
    .section-divider { width: 80%; }
}

@media (max-width: 380px) {
    .market-card { flex: 0 0 130px; }
    .market-flag { height: 90px; min-height: 90px; padding: 10px; }
    .market-name { font-size: 14px; min-width: 100px; padding: 6px 10px; }
    .brand-item { min-width: 120px; }
    .brand-box { flex: 0 0 110px; height: 70px; }
    .brand-label { font-size: 12px; min-width: 100px; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
