/* ===== ERON TİCARET - Global Styles ===== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a365d;
    --secondary-color: #2c5282;
    --accent-color: #ed8936;
    --text-dark: #2d3748;
    --text-light: #718096;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f5f5f5;
    overflow-x: hidden;
    max-width: 100vw;
}

* {
    max-width: 100%;
}

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

ul {
    list-style: none;
}

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

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

/* ===== Header & Navigation ===== */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-top {
    background: var(--primary-color);
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

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

.header-contact a {
    color: white;
    margin-right: 20px;
}

.header-contact a:hover {
    color: var(--accent-color);
}

.language-switcher {
    display: flex;
    gap: 10px;
}

.language-switcher a {
    color: white;
    padding: 2px 8px;
    border-radius: 3px;
    font-size: 13px;
}

.language-switcher a:hover,
.language-switcher a.active {
    background: var(--accent-color);
}

.header-main {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
}

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

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

.nav-menu {
    display: flex;
    gap: 30px;
}

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

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

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

.nav-menu a:hover {
    color: var(--primary-color);
}

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

.nav-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-dropdown > a::after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 12px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    margin-top: 10px;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid white;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    transition: all 0.2s ease;
}

.dropdown-menu a:hover {
    background: var(--bg-light);
    color: var(--primary-color);
    padding-left: 25px;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-icon {
    font-size: 18px;
}

.dropdown-menu a.all-products {
    border-top: 1px solid var(--border-color);
    margin-top: 8px;
    padding-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Mobile Language Switcher - Hidden on desktop */
.mobile-language-switcher {
    display: none !important;
}

/* ===== Hero Section ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 120px;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
}

/* Floating Partner Names */
.floating-partners {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.floating-name {
    position: absolute;
    left: var(--x);
    top: var(--y);
    font-size: 24px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: floatName 20s ease-in-out infinite;
    animation-delay: var(--delay);
    white-space: nowrap;
}

@keyframes floatName {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.08;
    }
    25% {
        transform: translateY(-20px) translateX(10px) scale(1.1);
        opacity: 0.15;
    }
    50% {
        transform: translateY(0) translateX(20px) scale(1);
        opacity: 0.08;
    }
    75% {
        transform: translateY(20px) translateX(10px) scale(0.9);
        opacity: 0.12;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
    background-size: 100px 100px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    color: white;
}

.hero-text h2 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.hero-text p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.8;
    word-wrap: break-word;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-item p {
    font-size: 14px;
    opacity: 0.8;
    margin-top: 5px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Hero Brands Showcase */
.hero-brands-showcase {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px 20px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.hero-brands-title {
    text-align: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.hero-brands-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    border-radius: 2px;
}

.hero-brands-slider {
    overflow: hidden;
    margin: 15px 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.hero-brands-track {
    display: flex;
    gap: 15px;
    animation: heroSlide 20s linear infinite;
    width: max-content;
}

.hero-brands-slider.reverse .hero-brands-track {
    animation: heroSlideReverse 20s linear infinite;
}

.hero-brand-card {
    background: white;
    padding: 15px 25px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 60px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.hero-brand-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-brand-card img {
    max-height: 40px;
    max-width: 90px;
    object-fit: contain;
}

@keyframes heroSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes heroSlideReverse {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.globe-animation {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 3s ease-in-out infinite;
    position: relative;
}

.globe-animation::before {
    content: '🌍';
    font-size: 150px;
}

.globe-animation::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
}

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

.btn-primary:hover {
    background: #dd6b20;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* ===== Section Styles ===== */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

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

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

.section-title span {
    display: inline-block;
    width: 60px;
    height: 4px;
    background: var(--accent-color);
    border-radius: 2px;
    margin-top: 15px;
}

/* ===== About Section ===== */
.about-section {
    background: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.about-main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-color);
    color: white;
    padding: 20px 30px;
    border-radius: 10px;
    text-align: center;
}

.about-image-badge h4 {
    font-size: 32px;
    font-weight: 700;
}

.about-image-badge p {
    font-size: 14px;
}

.about-text h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.about-feature span {
    font-weight: 500;
    color: var(--text-dark);
}

/* ===== Products Section ===== */
.products-section {
    background: var(--bg-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.product-image {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-light), #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.product-content {
    padding: 25px;
}

.product-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.product-content p {
    color: var(--text-light);
    font-size: 14px;
    margin-bottom: 15px;
}

.subcategory-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.subcategory-tags span {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 15px;
    font-weight: 500;
}

/* Brand Logo Grid for Category Cards */
.brand-logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 15px;
    width: 100%;
    height: 100%;
    align-content: center;
}

.brand-logo-grid img {
    width: 100%;
    height: 85px;
    object-fit: contain;
    background: white;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.brand-logo-grid img:hover {
    transform: scale(1.1);
}

.product-card .product-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-link {
    color: var(--accent-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.product-link:hover {
    gap: 10px;
}

/* ===== Brands Section ===== */
.brands-section {
    background: var(--bg-light);
}

.brands-intro {
    text-align: center;
    margin-bottom: 40px;
}

.brands-intro p {
    color: var(--text-light);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.brand-item {
    background: var(--bg-white);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent-color);
}

.brand-item img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

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

.brand-item span {
    display: block;
    margin-top: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

/* ===== Services Section ===== */
.services-section {
    background: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    text-align: center;
    padding: 40px 30px;
    border-radius: 15px;
    transition: var(--transition);
    background: var(--bg-light);
}

.service-card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 36px;
    color: white;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent-color);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 14px;
    line-height: 1.7;
}

.service-card:hover p {
    opacity: 0.9;
}

/* ===== Why Choose Us Section ===== */
.why-us-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.why-us-item {
    padding: 30px;
}

.why-us-item h3 {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 10px;
}

.why-us-item p {
    font-size: 16px;
    opacity: 0.9;
}

/* ===== Contact Section ===== */
.contact-section {
    background: var(--bg-light);
}

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

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

.contact-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

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

.contact-text p,
.contact-text a {
    color: var(--text-light);
    font-size: 14px;
}

.contact-text a:hover {
    color: var(--accent-color);
}

.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: 18px;
    transition: var(--transition);
}

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

/* Contact Form */
.contact-form {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    transition: var(--transition);
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ===== Footer ===== */
.footer {
    background: var(--primary-color);
    color: white;
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-about h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-about p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer h4 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* ===== WhatsApp Button ===== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128c7e;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

/* ===== Scroll to Top Button ===== */
.scroll-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 998;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 150px 0 80px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

.breadcrumb {
    margin-top: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: white;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    margin: 0 10px;
    opacity: 0.6;
}

/* ===== Products Page ===== */
.products-page-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-category-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-category-image {
    height: 180px;
    background: linear-gradient(135deg, var(--bg-light), #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.product-category-content {
    padding: 20px;
    text-align: center;
}

.product-category-content h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.product-category-content p {
    font-size: 13px;
    color: var(--text-light);
}

/* ===== Brands Page ===== */
.brands-page-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

.brand-card {
    background: var(--bg-white);
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.brand-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(237, 137, 54, 0.1), transparent);
    transition: left 0.5s ease;
}

.brand-card:hover::before {
    left: 100%;
}

.brand-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(26, 54, 93, 0.15);
}

.brand-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.brand-card:hover .brand-logo {
    transform: scale(1.1);
}

.brand-card:hover .brand-logo img {
    filter: brightness(1.1);
}

.brand-card h4 {
    font-size: 16px;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.brand-card:hover h4 {
    color: var(--primary-color);
}

/* ===== About Page ===== */
.about-page-section {
    padding: 60px 0;
}

.about-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 50px;
}

.vision-card,
.mission-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--accent-color);
}

.vision-card h3,
.mission-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
}

.value-card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.value-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    opacity: 0.8;
}

/* ===== Contact Page ===== */
.contact-page-section {
    padding: 60px 0;
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: var(--bg-white);
    padding: 25px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(5px);
    border-left: 3px solid var(--accent-color);
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    flex-shrink: 0;
}

.map-container {
    margin-top: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

/* ===== Responsive Styles ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        order: -1;
    }

    .globe-animation {
        width: 300px;
        height: 300px;
    }

    .hero-brands-showcase {
        max-width: 400px;
        padding: 25px 15px;
    }

    .hero-brands-title {
        font-size: 18px;
    }

    .hero-brand-card {
        min-width: 100px;
        height: 50px;
        padding: 10px 15px;
    }

    .hero-brand-card img {
        max-height: 30px;
        max-width: 70px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .header-top {
        display: none;
    }

    .header-main {
        padding: 10px 0;
    }

    .logo-img {
        height: 50px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        box-shadow: var(--shadow);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a {
        padding: 15px 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown > a {
        width: 100%;
        justify-content: space-between;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        background: var(--bg-light);
        padding: 0;
        margin: 0;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .nav-dropdown:hover .dropdown-menu,
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu a {
        padding: 12px 20px 12px 30px;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Mobile Language Switcher */
    .mobile-language-switcher {
        display: flex !important;
        justify-content: center;
        gap: 10px;
        padding: 15px 0;
        margin-top: 10px;
        border-top: 1px solid var(--border-color);
        width: 100%;
    }

    .mobile-language-switcher a {
        padding: 8px 16px;
        background: var(--bg-light);
        border-radius: 20px;
        font-size: 13px;
        font-weight: 600;
        color: var(--text-dark);
        border: none;
    }

    .mobile-language-switcher a.active {
        background: var(--primary-color);
        color: white;
    }

    .mobile-language-switcher a:hover {
        background: var(--accent-color);
        color: white;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 40px;
        overflow-x: hidden;
    }

    .hero-content {
        padding: 0 10px;
    }

    .hero-text h2 {
        font-size: 26px;
        line-height: 1.3;
        padding-right: 10px;
    }

    .hero-text p {
        font-size: 14px;
        padding-right: 10px;
    }

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

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 15px;
    }

    .stat-item h3 {
        font-size: 28px;
    }

    .stat-item p {
        font-size: 12px;
    }

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

    .about-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .about-main-img {
        height: 280px !important;
    }

    .about-page-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-image-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }

    .products-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    /* Product cards tablet */
    .product-card .product-image {
        height: 160px;
    }

    .brand-logo-grid {
        gap: 8px;
        padding: 10px;
    }

    .brand-logo-grid img {
        height: 50px;
        padding: 6px;
    }

    .brands-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .brand-item {
        padding: 20px 15px;
    }

    .brand-item img {
        max-height: 35px;
    }

    /* Partners slider tablet */
    .partners-section .partner-item {
        padding: 18px 25px;
        height: 70px;
        min-width: 120px;
    }

    .partners-section .partner-item img {
        max-height: 40px;
        max-width: 100px;
    }

    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-item h3 {
        font-size: 36px;
    }

    .why-us-item p {
        font-size: 13px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .section-title h2 {
        font-size: 24px;
    }

    .section-title p {
        font-size: 14px;
    }

    .section {
        padding: 50px 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .products-page-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .brands-page-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .brand-card {
        padding: 15px 10px;
    }

    .brand-card .brand-logo {
        height: 40px;
        margin-bottom: 8px;
    }

    .brand-card .brand-logo img {
        max-height: 35px !important;
    }

    .brand-card h4 {
        font-size: 10px;
        line-height: 1.2;
    }

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

    .vision-mission {
        grid-template-columns: 1fr;
    }

    .vision-card,
    .mission-card {
        padding: 25px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .page-header {
        padding: 120px 0 50px;
    }

    .page-header h1 {
        font-size: 28px;
    }

    .page-header p {
        font-size: 14px;
    }

    .about-page-section {
        padding: 40px 0;
    }

    .about-text h3 {
        font-size: 22px;
    }

    .about-text p {
        font-size: 14px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        right: 15px;
    }

    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 18px;
        bottom: 80px;
        right: 15px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
        overflow-x: hidden;
    }

    body {
        overflow-x: hidden;
    }

    .logo-img {
        height: 35px;
    }

    .hero {
        padding-top: 65px;
        padding-bottom: 25px;
        overflow-x: hidden;
    }

    .hero-content {
        padding: 0;
        gap: 20px;
    }

    .hero-text h2 {
        font-size: 18px;
        margin-bottom: 12px;
        line-height: 1.3;
        word-break: keep-all;
    }

    .hero-text p {
        font-size: 12px;
        margin-bottom: 15px;
        line-height: 1.5;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 14px;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .hero-stats {
        gap: 10px;
        margin-top: 25px;
    }

    .stat-item {
        flex: 1;
        min-width: 45%;
    }

    .stat-item h3 {
        font-size: 24px;
    }

    .stat-item p {
        font-size: 11px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-us-item {
        padding: 20px 15px;
    }

    .why-us-item h3 {
        font-size: 32px;
    }

    .products-page-grid {
        grid-template-columns: 1fr;
    }

    .brands-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 20px 15px;
    }

    .brand-logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding: 10px;
    }

    .brand-logo-grid img {
        height: 60px;
        padding: 8px;
    }

    .globe-animation {
        width: 200px;
        height: 200px;
    }

    .globe-animation::before {
        font-size: 80px;
    }

    .hero-brands-showcase {
        max-width: 100%;
        padding: 15px 8px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .hero-brands-title {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .hero-brand-card {
        min-width: 70px;
        height: 40px;
        padding: 6px 10px;
    }

    .hero-brand-card img {
        max-height: 22px;
        max-width: 55px;
    }

    .hero-brands-slider {
        margin: 8px 0;
    }

    .hero-brands-track {
        gap: 10px;
    }

    .section {
        padding: 40px 0;
    }

    .section-title h2 {
        font-size: 20px;
    }

    .section-title p {
        font-size: 13px;
    }

    .page-header {
        padding: 100px 0 40px;
    }

    .page-header h1 {
        font-size: 24px;
    }

    .about-text h3 {
        font-size: 20px;
    }

    .vision-card h3,
    .mission-card h3 {
        font-size: 18px;
    }

    .vision-card,
    .mission-card {
        padding: 20px;
    }

    .footer {
        padding: 40px 0 0;
    }

    .footer-content {
        gap: 25px;
        padding-bottom: 25px;
    }

    .footer-about p {
        font-size: 13px;
    }

    .footer h4 {
        font-size: 16px;
    }

    .footer-links a,
    .footer-contact p {
        font-size: 13px;
    }

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

    .contact-form h3 {
        font-size: 20px;
    }

    .services-grid {
        gap: 15px;
    }

    .brand-card {
        padding: 25px 15px;
    }

    .brand-logo {
        height: 45px;
        font-size: 22px;
    }

    .brand-card h4 {
        font-size: 13px;
    }

    /* Brands page mobile - more per row */
    .brands-page-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
    }

    .brand-card {
        padding: 10px 6px !important;
        border-radius: 8px !important;
    }

    .brand-card .brand-logo {
        height: 32px !important;
        margin-bottom: 5px !important;
    }

    .brand-card .brand-logo img {
        max-height: 28px !important;
    }

    .brand-card h4 {
        font-size: 9px !important;
        line-height: 1.1 !important;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    /* Inline style override for bottom brands grid */
    .section > .container > div[style*="grid-template-columns: repeat(6"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }

    .section > .container > div[style*="grid-template-columns: repeat(6"] > div {
        padding: 10px !important;
        height: 55px !important;
    }

    .section > .container > div[style*="grid-template-columns: repeat(6"] > div img {
        max-height: 30px !important;
    }

    /* About image fix */
    .about-image img,
    .about-main-img {
        height: auto !important;
        max-height: 200px !important;
        width: 100% !important;
    }

    /* Section title mobile */
    .section-title h2 {
        font-size: 18px !important;
        line-height: 1.3;
    }

    .section-title p {
        font-size: 12px !important;
    }

    /* Products grid mobile */
    .product-card .product-image {
        height: 150px;
    }

    .brand-logo-grid img {
        height: 45px !important;
        padding: 5px !important;
    }

    .product-content h3 {
        font-size: 16px;
    }

    .product-content p {
        font-size: 12px;
    }

    .subcategory-tags span {
        font-size: 9px;
        padding: 3px 6px;
    }

    /* About features mobile */
    .about-features {
        grid-template-columns: 1fr !important;
        gap: 10px;
    }

    .about-feature-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }

    .about-feature span {
        font-size: 13px;
    }

    /* Contact section mobile */
    .contact-form {
        padding: 15px;
    }

    .contact-form h3 {
        font-size: 18px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 14px;
    }

    /* Footer mobile */
    .footer-about p {
        font-size: 12px;
    }

    .footer-logo {
        max-width: 140px !important;
    }

    /* Stats mobile */
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .stat-item {
        flex: 0 0 30%;
        padding: 8px 5px;
    }

    .stat-item h3 {
        font-size: 20px;
    }

    .stat-item p {
        font-size: 10px;
    }

    /* Services mobile */
    .service-card {
        padding: 20px 15px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }

    .service-card h3 {
        font-size: 14px;
    }

    .service-card p {
        font-size: 11px;
    }

    /* Brands grid mobile */
    .brands-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px;
    }

    .brand-item {
        padding: 10px 8px;
    }

    .brand-item img {
        max-height: 25px;
    }

    /* Product cards mobile - more logos per row */
    .product-card .product-image {
        height: 100px;
    }

    .brand-logo-grid {
        grid-template-columns: repeat(6, 1fr) !important;
        gap: 4px !important;
        padding: 6px !important;
    }

    .brand-logo-grid img {
        height: 28px !important;
        padding: 3px !important;
        border-radius: 4px !important;
    }

    .product-content {
        padding: 15px;
    }

    .product-content h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .product-content p {
        font-size: 11px;
        margin-bottom: 10px;
        line-height: 1.4;
    }

    .subcategory-tags {
        gap: 4px;
        margin-bottom: 10px;
    }

    .subcategory-tags span {
        font-size: 8px;
        padding: 2px 5px;
    }

    .product-link {
        font-size: 12px;
    }

    /* Partners slider mobile */
    .partners-section .partner-item {
        padding: 12px 20px !important;
        height: 60px !important;
        min-width: 100px !important;
    }

    .partners-section .partner-item img {
        max-height: 30px !important;
        max-width: 80px !important;
    }

    /* Brands bottom grid mobile */
    .brands-bottom-grid > div img {
        max-height: 22px;
    }
}

/* ===== Partners Slider ===== */
.partners-slider {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.partners-track {
    display: flex;
    gap: 50px;
    animation: scroll 90s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partners-section .partner-item {
    background: white;
    padding: 25px 40px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    min-width: 180px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.partners-section .partner-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.partners-section .partner-item img {
    max-height: 60px;
    max-width: 140px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== Products Showcase - Grouped Categories ===== */
.products-showcase {
    background: #f8fafc;
    padding: 50px 0;
    overflow: hidden;
}

.showcase-header {
    text-align: center;
    margin-bottom: 30px;
}

.showcase-header h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.showcase-header p {
    color: var(--text-light);
    font-size: 15px;
}

.showcase-category {
    margin-bottom: 20px;
}

.showcase-category-label {
    text-align: center;
    margin-bottom: 15px;
}

.showcase-category-label span {
    display: inline-block;
    padding: 6px 20px;
    background: var(--primary-color);
    color: white;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
}

.showcase-category-label.non-food span {
    background: linear-gradient(135deg, #059669, #10b981);
}

.showcase-ribbon {
    position: relative;
    padding: 15px 0;
    overflow: hidden;
}

.showcase-ribbon::before,
.showcase-ribbon::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.showcase-ribbon::before {
    left: 0;
    background: linear-gradient(90deg, #f8fafc 0%, transparent 100%);
}

.showcase-ribbon::after {
    right: 0;
    background: linear-gradient(270deg, #f8fafc 0%, transparent 100%);
}

.showcase-track {
    display: flex;
    gap: 20px;
    animation: showcaseSlide 35s linear infinite;
    width: max-content;
}

.showcase-track.reverse {
    animation: showcaseSlideReverse 35s linear infinite;
}

.showcase-track:hover {
    animation-play-state: paused;
}

.showcase-item {
    flex-shrink: 0;
    width: 180px;
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: inherit;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.showcase-item img {
    width: 100%;
    height: 120px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.08);
}

.showcase-item-name {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.showcase-cta {
    text-align: center;
    margin-top: 30px;
}

.showcase-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 14px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.showcase-cta a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

@keyframes showcaseSlide {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes showcaseSlideReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

@media (max-width: 768px) {
    .products-showcase {
        padding: 30px 0;
    }

    .showcase-header h2 {
        font-size: 22px;
    }

    .showcase-item {
        width: 150px;
        padding: 15px;
    }

    .showcase-item img {
        height: 90px;
    }

    /* Faster animation on mobile */
    .showcase-track {
        animation-duration: 35s !important;
    }

    .showcase-track.reverse {
        animation-duration: 35s !important;
    }

    /* Partners slider faster on mobile */
    .partners-track {
        animation-duration: 90s !important;
    }
}

/* ===== Partners Section Responsive ===== */
@media (max-width: 1024px) {
    .partners-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .partner-item {
        padding: 20px !important;
        height: 100px !important;
    }
}

@media (max-width: 480px) {
    .partners-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .partner-item {
        padding: 15px !important;
        height: 80px !important;
    }
    .partner-item img {
        max-height: 40px !important;
    }
}

/* ===== Utility Classes ===== */
/* ===== Brands Bottom Grid ===== */
.brands-bottom-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    align-items: center;
}

.brands-bottom-grid > div {
    background: white;
    padding: 15px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 70px;
}

.brands-bottom-grid > div img {
    max-height: 45px;
    max-width: 85%;
    object-fit: contain;
}

@media (max-width: 768px) {
    .brands-bottom-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .brands-bottom-grid > div {
        height: 60px;
        padding: 10px;
    }

    .brands-bottom-grid > div img {
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    .brands-bottom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .brands-bottom-grid > div {
        height: 50px;
        padding: 8px;
    }

    .brands-bottom-grid > div img {
        max-height: 28px;
    }
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }
.py-40 { padding-top: 40px; padding-bottom: 40px; }
.bg-light { background: var(--bg-light); }
.bg-white { background: var(--bg-white); }

/* ===== Brand Products Modal ===== */
.brand-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.brand-modal {
    background: var(--bg-white);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.brand-modal-overlay.active .brand-modal {
    transform: scale(1);
}

.brand-modal-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-modal-header img {
    height: 40px;
    background: white;
    padding: 5px 15px;
    border-radius: 8px;
}

.brand-modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-modal-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.brand-modal-body {
    padding: 30px;
    overflow-y: auto;
    max-height: calc(90vh - 100px);
}

.brand-products-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.brand-products-info {
    margin-top: 25px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 12px;
}

.brand-products-info h4 {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
}

.brand-products-info p {
    color: var(--text-light);
    line-height: 1.7;
}

.brand-products-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.brand-products-tags span {
    background: var(--primary-color);
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

/* Brand card clickable style */
.brand-card.clickable {
    cursor: pointer;
    position: relative;
}

.brand-card.clickable::after {
    content: 'Urunleri Gor';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 11px;
    opacity: 0;
    transition: var(--transition);
}

.brand-card.clickable:hover::after {
    opacity: 1;
    bottom: 15px;
}

@media (max-width: 768px) {
    .brand-modal {
        max-width: 100%;
        margin: 10px;
        max-height: 95vh;
    }

    .brand-modal-header {
        padding: 20px;
    }

    .brand-modal-header h3 {
        font-size: 18px;
    }

    .brand-modal-body {
        padding: 20px;
    }
}

/* RTL (Arabic) Support */
[dir="rtl"] .hero-brands-slider {
    mask-image: linear-gradient(to left, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to left, transparent, black 10%, black 90%, transparent);
}

[dir="rtl"] .hero-brands-track {
    animation: heroSlideRTL 20s linear infinite;
}

[dir="rtl"] .hero-brands-slider.reverse .hero-brands-track {
    animation: heroSlideReverseRTL 20s linear infinite;
}

@keyframes heroSlideRTL {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(50%);
    }
}

@keyframes heroSlideReverseRTL {
    0% {
        transform: translateX(50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ===== Product Marquee ===== */
.product-marquee {
    background: linear-gradient(90deg, #1a365d 0%, #2c5282 100%);
    padding: 8px 0;
    overflow: hidden;
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 25px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.marquee-track img {
    flex-shrink: 0 !important;
    width: 40px !important;
    height: 40px !important;
    max-width: 40px !important;
    max-height: 40px !important;
    object-fit: contain !important;
    background: white !important;
    border-radius: 5px !important;
    padding: 4px !important;
}

.product-marquee:hover .marquee-track {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .marquee-track img {
        width: 32px;
        height: 32px;
    }
    .marquee-track {
        gap: 15px;
    }
}
