:root {
            /* Paleta de colores tierra y verde */
            --primary-green: #2d5016;
            --primary-green-dark: #1f3510;
            --primary-green-light: #4a7c2a;
            --secondary-terra: #8B4513;
            --secondary-terra-dark: #654321;
            --accent-gold: #d4a017;
            --accent-gold-light: #e6b31e;
            
            /* Colores neutros - Light Mode */
            --text-dark: #2c3e50;
            --text-light: #5d6d7e;
            --bg-light: #f8f9f7;
            --bg-white: #ffffff;
            --border: #e0e6d3;
            --success: #27ae60;
        }

        /* Dark Mode */
        html.dark-mode {
            --text-dark: #e0e6d3;
            --text-light: #b0b8c0;
            --bg-light: #1a1f1b;
            --bg-white: #242924;
            --border: #3a4a38;
            --primary-green: #5a8c3a;
            --primary-green-dark: #3d5c2a;
            --primary-green-light: #6a9c4a;
            --secondary-terra: #a8633a;
        }

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: var(--header-height);
            --header-height: 90px;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-white);
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            transition: background-color 0.3s ease, color 0.3s ease;
        }

        h1, h2, h3, h4, h5 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            text-decoration: none;
        }

        .logo-text {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .logo-main {
            font-family: 'Playfair Display', serif;
            font-size: 22px;
            font-weight: 700;
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--secondary-terra) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            line-height: 1;
        }

        .logo-sub {
            font-size: 10px;
            color: var(--text-light);
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        /* Main Header */
        .main-header {
            background: var(--bg-white);
            box-shadow: 0 5px 15px rgba(45, 80, 22, 0.08);
            position: sticky;
            top: 0;
            z-index: 1000;
            height: 90px;
            transition: all 0.3s ease;
        }

        html.dark-mode .main-header {
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        }

        .main-header.scrolled {
            height: 70px;
            box-shadow: 0 5px 20px rgba(45, 80, 22, 0.1);
        }

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

        .main-nav {
            display: flex;
            gap: 35px;
        }

        .nav-link {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            font-size: 14px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            position: relative;
            padding: 5px 0;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-green), var(--accent-gold));
            transition: width 0.4s ease;
        }

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

        .nav-link:hover,
        .nav-link.active {
            color: var(--primary-green);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        /* Global header search (aplicado desde kayak) */
        .header-search {
            flex: 1;
            max-width: 500px;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .header-search input {
            flex: 1;
            padding: 10px 16px;
            border: 2px solid var(--border);
            border-radius: 24px 0 0 24px;
            font-size: 14px;
            background: var(--bg-white);
            color: var(--text-dark);
        }

        .header-search input:focus {
            outline: none;
            border-color: var(--primary-green);
            box-shadow: 0 0 0 4px rgba(45,80,22,0.06);
        }

        .header-search button {
            padding: 10px 18px;
            background: var(--primary-green);
            border: none;
            border-radius: 0 24px 24px 0;
            color: white;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .header-search { width: 100%; max-width: 100%; }
            .main-nav { display: none; }
            .mobile-menu-btn { display: inline-flex; }
        }

        .search-btn, .cart-btn, .theme-toggle {
            background: none;
            border: none;
            color: var(--text-dark);
            font-size: 18px;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .search-btn:hover, .cart-btn:hover, .theme-toggle:hover {
            background: var(--bg-light);
            color: var(--primary-green);
            transform: scale(1.1);
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 24px;
            color: var(--text-dark);
            cursor: pointer;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

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

        /* Hero Section */
        .hero-section {
            position: relative;
            height: calc(100vh - 90px);
            min-height: 600px;
            overflow: hidden;
            display: flex;
            align-items: center;
            color: white;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.75) 0%, rgba(20, 20, 20, 0.8) 100%);
            z-index: 1;
        }

        html.dark-mode .hero-section::before {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(15, 15, 15, 0.9) 100%);
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            overflow: hidden;
        }

        .hero-bg-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.5;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: 72px;
            margin-bottom: 25px;
            line-height: 1.1;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .hero-description {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.95;
            max-width: 500px;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
        }

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

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 15px;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }

        .btn:hover::before {
            left: 100%;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--primary-green-dark) 100%);
            color: white;
            box-shadow: 0 5px 20px rgba(45, 80, 22, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(45, 80, 22, 0.4);
        }

        .btn-accent {
            background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-gold-light) 100%);
            color: var(--primary-green-dark);
            box-shadow: 0 5px 20px rgba(212, 160, 23, 0.3);
        }

        .btn-accent:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(212, 160, 23, 0.4);
        }

        /* Categories Section */
        .categories-section {
            background: var(--bg-light);
            transition: background-color 0.3s ease;
        }

        .section-padding {
            padding: 80px 0;
        }

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

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

        .section-subtitle {
            color: var(--accent-gold);
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 15px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            color: var(--primary-green-dark);
            margin-bottom: 20px;
            transition: color 0.3s ease;
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--primary-green) 0%, var(--accent-gold) 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

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

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

        .category-card {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            height: 420px;
            transition: all 0.4s ease;
            box-shadow: 0 8px 25px rgba(45, 80, 22, 0.1);
            cursor: pointer;
        }

        html.dark-mode .category-card {
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .category-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
        }

        .category-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .category-card:hover .category-image {
            transform: scale(1.08);
        }

        .category-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(31, 53, 16, 0.95), transparent);
            color: white;
            padding: 40px 30px 30px;
            transform: translateY(15px);
            transition: all 0.4s ease;
        }

        html.dark-mode .category-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
        }

        .category-card:hover .category-overlay {
            transform: translateY(0);
        }

        .category-icon {
            width: 55px;
            height: 55px;
            background: var(--accent-gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary-green-dark);
            transform: translateY(-5px);
            opacity: 0;
            transition: all 0.4s ease;
        }

        .category-card:hover .category-icon {
            transform: translateY(0);
            opacity: 1;
        }

        .category-name {
            font-size: 28px;
            margin-bottom: 12px;
            font-family: 'Montserrat', sans-serif;
        }

        .category-description {
            font-size: 14px;
            opacity: 0.9;
            margin-bottom: 20px;
            transform: translateY(15px);
            opacity: 0;
            transition: all 0.4s ease;
            line-height: 1.5;
        }

        .category-card:hover .category-description {
            transform: translateY(0);
            opacity: 1;
        }

        .category-link {
            color: var(--accent-gold);
            text-decoration: none;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            transform: translateY(15px);
            opacity: 0;
        }

        .category-card:hover .category-link {
            transform: translateY(0);
            opacity: 1;
        }

        .category-link:hover {
            gap: 12px;
            color: white;
        }

        /* Featured Products */
        .featured-section {
            position: relative;
            overflow: hidden;
        }

        .swiper {
            padding: 40px 0;
        }

        .product-card {
            background: var(--bg-white);
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(45, 80, 22, 0.08);
            transition: all 0.3s ease;
            border: 1px solid var(--border);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        html.dark-mode .product-card {
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
        }

        .product-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 40px rgba(45, 80, 22, 0.12);
        }

        .product-image {
            height: 220px;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.08);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--secondary-terra);
            color: white;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            z-index: 2;
        }

        .product-badge.new {
            background: var(--primary-green);
        }

        .product-badge.sale {
            background: var(--accent-gold);
            color: var(--primary-green-dark);
        }

        .product-info {
            padding: 25px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .product-category {
            color: var(--text-light);
            font-size: 11px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 10px;
        }

        .product-name {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--primary-green-dark);
            flex: 1;
        }

        .product-price {
            font-size: 24px;
            font-weight: 700;
            color: var(--secondary-terra);
            margin-bottom: 15px;
        }

        .old-price {
            font-size: 16px;
            color: var(--text-light);
            text-decoration: line-through;
            margin-left: 10px;
        }

        .product-actions {
            display: flex;
            gap: 10px;
        }

        .btn-view {
            flex: 1;
            font-size: 12px;
            padding: 12px 20px;
        }

        /* Top Header */
        .top-header {
            background: var(--primary-green-dark);
            color: white;
            padding: 12px 0;
            font-size: 13px;
            position: relative;
            overflow: hidden;
            display: none;
        }

        /* About Section */
        .about-section {
            position: relative;
            overflow: hidden;
        }

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

        .about-image {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(45, 80, 22, 0.15);
            transition: all 0.3s ease;
        }

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

        .about-image:hover img {
            transform: scale(1.05);
        }

        .about-text h2 {
            font-family: 'Playfair Display', serif;
            font-size: 44px;
            margin-bottom: 25px;
            color: var(--primary-green-dark);
        }

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

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 45px;
        }

        .stat-item-about {
            text-align: center;
            padding: 25px;
            background: var(--bg-light);
            border-radius: 10px;
            transition: all 0.3s ease;
            border: 1px solid var(--border);
        }

        .stat-item-about:hover {
            transform: translateY(-8px);
            box-shadow: 0 10px 25px rgba(45, 80, 22, 0.1);
        }

        .stat-number-about {
            font-size: 42px;
            font-weight: 800;
            color: var(--primary-green);
            margin-bottom: 8px;
            display: block;
        }

        .stat-label-about {
            font-size: 12px;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--text-light);
        }

        /* Map Section */
        .map-section {
            padding: 80px 0;
            background: var(--bg-light);
            transition: background-color 0.3s ease;
        }

        .map-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(45, 80, 22, 0.1);
            height: 450px;
            position: relative;
        }

        #map {
            width: 100%;
            height: 100%;
        }

        .map-overlay {
            position: absolute;
            top: 25px;
            left: 25px;
            background: white;
            padding: 25px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            max-width: 350px;
            z-index: 1000;
        }

        html.dark-mode .map-overlay {
            background: var(--bg-white);
        }

        .map-info h3 {
            color: var(--primary-green-dark);
            margin-bottom: 12px;
            font-size: 22px;
        }

        .map-info p {
            color: var(--text-light);
            margin-bottom: 18px;
            font-size: 14px;
            line-height: 1.6;
        }

        .map-contact-info {
            list-style: none;
            margin-bottom: 15px;
        }

        .map-contact-info li {
            margin-bottom: 12px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: 13px;
        }

        .map-contact-info i {
            color: var(--accent-gold);
            font-size: 16px;
            margin-top: 2px;
        }

        .map-directions-btn {
            width: 100%;
            font-size: 12px;
            padding: 12px 20px;
        }

        /* Brands Section */
        .brands-section {
            background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
            transition: background-color 0.3s ease;
        }

        .brands-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
            gap: 35px;
            align-items: center;
        }

        .brand-logo {
            filter: grayscale(100%);
            opacity: 0.5;
            transition: all 0.3s ease;
            max-width: 130px;
            height: auto;
            justify-self: center;
        }

        .brand-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
            transform: scale(1.1);
        }

        /* Footer */
        .footer {
            background: var(--primary-green-dark);
            color: white;
            position: relative;
            overflow: hidden;
            transition: background-color 0.3s ease;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
            position: relative;
            z-index: 1;
        }

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

        .footer-logo .logo-main {
            font-size: 24px;
            margin-bottom: 8px;
        }

        .footer-description {
            opacity: 0.8;
            margin-bottom: 20px;
            line-height: 1.7;
            font-size: 14px;
        }

        .footer-title {
            font-size: 18px;
            margin-bottom: 25px;
            color: white;
            position: relative;
            padding-bottom: 12px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
        }

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

        .footer-links {
            list-style: none;
        }

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

        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
            transform: translateX(4px);
        }

        .footer-links a i {
            font-size: 11px;
            color: var(--accent-gold);
        }

        .social-links {
            display: flex;
            gap: 12px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 38px;
            height: 38px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            color: white;
            font-size: 16px;
            transition: all 0.3s ease;
            text-decoration: none;
        }

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

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

        .contact-info-footer li {
            margin-bottom: 18px;
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 14px;
        }

        .contact-info-footer i {
            color: var(--accent-gold);
            font-size: 18px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid rgba(255,255,255,0.1);
            opacity: 0.75;
            font-size: 13px;
            position: relative;
            z-index: 1;
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 65px;
            height: 65px;
            background: var(--success);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 32px;
            box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
            z-index: 999;
            transition: all 0.3s ease;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
            70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
            100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
        }

        .whatsapp-float:hover {
            transform: scale(1.1) rotate(10deg);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
            animation: none;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 56px;
            }
            
            .section-title {
                font-size: 40px;
            }
            
            .about-content {
                grid-template-columns: 1fr;
                gap: 45px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 992px) {
            .main-nav {
                position: fixed;
                top: 90px;
                left: 0;
                right: 0;
                background: var(--bg-white);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 5px 20px rgba(45, 80, 22, 0.1);
                transform: translateY(-120%);
                opacity: 0;
                visibility: hidden;
                transition: all 0.3s ease;
                z-index: 999;
                gap: 0;
            }
            
            html.dark-mode .main-nav {
                box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
            }
            
            .main-nav.active {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }
            
            .nav-link {
                padding: 12px 0;
                border-bottom: 1px solid var(--border);
            }
            
            .mobile-menu-btn {
                display: flex;
            }
            
            .hero-title {
                font-size: 44px;
            }
            
            .hero-description {
                font-size: 16px;
            }
            
            .categories-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 32px;
            }
            
            .map-overlay {
                position: relative;
                margin: -50px auto 0;
                max-width: 400px;
                top: 0;
                left: 0;
            }
            
            .map-container {
                height: 350px;
            }
        }

        @media (max-width: 768px) {
            .top-header {
                display: none;
            }
            
            .logo-main {
                font-size: 18px;
            }
            
            .logo-sub {
                font-size: 9px;
            }
            
            .hero-title {
                font-size: 36px;
                margin-bottom: 20px;
            }
            
            .hero-description {
                font-size: 15px;
                margin-bottom: 30px;
            }
            
            .hero-buttons {
                flex-direction: column;
                width: 100%;
            }
            
            .btn {
                width: 100%;
                padding: 14px 24px;
            }
            
            .section-title {
                font-size: 28px;
            }
            
            .section-subtitle {
                font-size: 13px;
            }
            
            .section-description {
                font-size: 15px;
            }
            
            .category-card {
                height: 380px;
            }
            
            .brands-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 25px;
            }
            
            .about-text h2 {
                font-size: 36px;
            }
            
            .about-text p {
                font-size: 15px;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .swiper-button-next,
            .swiper-button-prev {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .hero-section {
                min-height: 500px;
            }
            
            .hero-title {
                font-size: 28px;
                margin-bottom: 15px;
            }
            
            .hero-description {
                font-size: 14px;
                margin-bottom: 25px;
            }
            
            .section-padding {
                padding: 60px 0;
            }
            
            .section-title {
                font-size: 24px;
                margin-bottom: 15px;
            }
            
            .section-header {
                margin-bottom: 50px;
            }
            
            .category-card {
                height: 350px;
            }
            
            .category-overlay {
                padding: 35px 20px 20px;
            }
            
            .category-name {
                font-size: 24px;
            }
            
            .category-description {
                font-size: 13px;
                margin-bottom: 15px;
            }
            
            .product-info {
                padding: 20px;
            }
            
            .product-name {
                font-size: 16px;
            }
            
            .product-price {
                font-size: 20px;
            }
            
            .about-text h2 {
                font-size: 28px;
                margin-bottom: 20px;
            }
            
            .map-container {
                height: 350px;
            }
            
            .whatsapp-float {
                width: 60px;
                height: 60px;
                font-size: 28px;
                bottom: 20px;
                right: 20px;
            }
            
            .container {
                padding: 0 15px;
            }
        }