* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* espacio para header fijo (ajustable por media queries más abajo) */
        body {
            font-family: 'Montserrat', sans-serif;
            background: #000;
            color: #fff;
            padding-top: 90px; /* valor para escritorio */
        }

        /* Header Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.95);
            padding: 20px 0;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-around;
            align-items: center;
            padding: 0 40px;
        }

        .logo {
            font-size: 42px;
            font-weight: 700;
            font-style: italic;
            color: #b8d657;
            text-transform: capitalize;
            line-height: 0.9;
            width: 15%;
        }

        .logo span {
            display: block;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 45px;
            align-items: center;
        }

        .nav-links li a {
            color: #b8d657;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: color 0.3s;
            position: relative;
        }

        .nav-links li a:hover {
            color: #a5c44a;
        }

        .nav-links li a.active {
            color: #b8d657;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links li a.active::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            right: 0;
            height: 2px;
            background: #b8d657;
        }

        .nav-links li a.has-dropdown::after {
            content: '▼';
            font-size: 10px;
            margin-left: 5px;
            transition: transform 0.3s;
        }

        .nav-links li:hover .has-dropdown::after {
            transform: rotate(180deg);
        }

        /* Dropdown Menu */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.98);
            border: 1px solid #b8d657;
            border-radius: 8px;
            min-width: 200px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s;
            margin-top: 15px;
            padding: 10px 0;
            z-index: 1001;
        }

        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            margin-top: 10px;
        }

        .dropdown li {
            list-style: none;
        }

        .dropdown li a {
            display: block;
            padding: 12px 20px;
            color: #b8d657;
            text-decoration: none;
            transition: all 0.3s;
            font-size: 14px;
        }

        .dropdown li a:hover {
            background: #b8d657;
            color: #000;
        }

        .dropdown li a::after {
            content: '' !important;
        }

        .whatsapp-btn {
            background: #b8d657;
            color: #000;
            padding: 12px 35px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 15px;
            cursor: pointer;
            transition: all 0.3s;
            letter-spacing: 0.5px;
        }

        .whatsapp-btn:hover {
            background: #a5c44a;
            transform: translateY(-2px);
        }

        

        .hero-content {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            padding: 0 20px;
        }

        .hero h1 {
            font-size: 30px;
            font-weight: 500;
            margin-bottom: 40px;
            line-height: 1.3;
            letter-spacing: 0.5px;
            opacity: 0;
            animation: slideUp 0.8s ease-out 0.5s forwards;
        }

        .cta-button {
            background: #b8d657;
            color: #000;
            padding: 18px 50px;
            border: none;
            border-radius: 8px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            opacity: 0;
            animation: slideFromLeft 0.8s ease-out 1s forwards;
        }

        @keyframes slideFromLeft {
            from {
                opacity: 0;
                transform: translateX(-100px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .cta-button::after {
            content: '🛒';
            font-size: 18px;
        }

        .cta-button:hover {
            background: #a5c44a;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(184, 214, 87, 0.3);
        }

        /* Categories Section */
        .categories {
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(0, 0, 0, 0.8);
            padding: 35px 0;
            z-index: 2;
        }

        .categories-list {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            gap: 80px;
            list-style: none;
            padding: 0 40px;
        }

        .categories-list li a {
            color: #b8d657;
            text-decoration: none;
            font-size: 28px;
            font-weight: 400;
            transition: all 0.3s;
            letter-spacing: 0.5px;
            opacity: 0;
            display: inline-block;
            animation: slideUp 1s ease-out forwards;
        }

        .categories-list li:nth-child(1) a {
            animation-delay: 1.5s;
        }

        .categories-list li:nth-child(2) a {
            animation-delay: 1.65s;
        }

        .categories-list li:nth-child(3) a {
            animation-delay: 1.8s;
        }

        .categories-list li:nth-child(4) a {
            animation-delay: 1.95s;
        }

        .categories-list li a {
            position: relative;
        }

        .categories-list li a::before {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 3px;
            background: #b8d657;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .categories-list li a:hover {
            color: #a5c44a;
            transform: translateY(-2px);
        }

        .categories-list li a:hover::before {
            transform: scaleX(1);
        }

        /* Products Section */
        .products-section {
            background: #000;
            padding: 40px 20px 80px;
        }

        .products-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .products-header {
            color: #999;
            font-size: 14px;
            font-weight: 400;
            margin-bottom: 30px;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: #0a0a0a;
            border-radius: 12px;
            padding: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #1a1a1a;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(184, 214, 87, 0.2);
            border-color: #b8d657;
        }

        .product-image {
            width: 100%;
            height: 250px;
            background: #111;
            border-radius: 8px;
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        .product-category {
            color: #888;
            font-size: 13px;
            text-transform: capitalize;
            margin-bottom: 8px;
        }

        .product-name {
            color: #b8d657;
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 10px;
        }

        .product-rating {
            margin-bottom: 12px;
            color: #666;
        }

        .product-rating.filled {
            color: #ff9500;
        }

        .product-rating i {
            font-size: 14px;
            margin-right: 2px;
        }

        .product-price {
            color: #fff;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .product-btn {
            width: 100%;
            background: #b8d657;
            color: #000;
            border: none;
            padding: 14px;
            border-radius: 8px;
            font-weight: 700;
            font-size: 14px;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .product-btn:hover {
            background: #a5c44a;
            transform: translateY(-2px);
        }

        .product-btn i {
            font-size: 16px;
        }

        /* Responsive Design - ajustes para hero y header en pantallas más pequeñas */
        @media (max-width: 1024px) {
            nav {
                padding: 0 20px;
            }

            .nav-links {
                gap: 25px;
            }

            .hero h1 {
                font-size: 42px;
            }

            .categories-list {
                gap: 50px;
            }

            .categories-list li a {
                font-size: 24px;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
                gap: 25px;
            }
        }

        @media (max-width: 768px) {
            /* <-- CAMBIO: reducir padding-top para header en móviles para que el hero no aparezca tan abajo --> */
            body {
                padding-top: 72px; /* ajustado para pantallas móviles */
            }

            .logo {
                font-size: 32px;
                width: 55%;
            }

            .nav-links {
                display: none;
            }

            .hero {
                min-height: 45vh; /* altura más pequeña en móviles */
                align-items: flex-start; /* evita que el contenido quede pegado abajo si no hay mucho contenido */
                padding-top: 10px;
                padding-bottom: 10px;
            }

            /* <-- CAMBIO: en móviles hacemos que .categories esté en flujo normal para evitar solapamientos --> */
            .categories {
                position: static;
            }

            .hero h1 {
                font-size: 32px;
                padding: 0 20px;
            }

            .cta-button {
                padding: 15px 35px;
                font-size: 14px;
            }

            .categories-list {
                flex-wrap: wrap;
                gap: 30px;
                justify-content: center;
            }

            .categories-list li a {
                font-size: 20px;
                opacity: 1; /* opcional: para que se vean sin animación en móvil */
                animation: none;
            }

            .products-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
                gap: 20px;
            }

            .products-section {
                padding: 0px 15px 60px;
            }
        }

        @media (max-width: 480px) {
            /* reducir aún más el padding-top si el header ocupa menos espacio en pantallas muy pequeñas */
            body {
                padding-top: 64px;
            }

            .hero {
                min-height: 38vh;
            }

            .hero h1 {
                font-size: 24px;
            }

            .categories-list {
                flex-direction: column;
                align-items: center;
                gap: 20px;
            }

            .whatsapp-btn {
                padding: 10px 25px;
                font-size: 13px;
            }

            .products-grid {
                grid-template-columns: 1fr;
            }
        }