    /* General Styles */
    body {
        padding-top: 0; /* Remove default padding since we'll handle it with JS */
    }
    
    /* Shipping Banner */
    .shipping-banner {
        background-color: var(--color-theme);
        color: var(--color-theme-background-text);
        padding: 0.5rem;
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }
    
    
    /* Navbar */
    .navbar {
        background-color: white !important;
        backdrop-filter: blur(10px);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .navbar .nav-link {
        color: var(--color-theme) !important;
        transition: color 0.3s ease;
    }
    
    .navbar .nav-link:hover {
        filter: brightness(50%);
    }
    
    .navbar .navbar-brand {
        color: var(--color-theme) !important;
        font-weight: bold;
    }
    
    .btn-outline-primary {
        color: rgba(var(--color-theme_R),var(--color-theme_G),var(--color-theme_B), 0.7);
        border-color: rgba(var(--color-theme_R),var(--color-theme_G),var(--color-theme_B), 0.7);
    }
    
    .btn-outline-primary:hover {
        background-color: rgba(var(--color-theme_R),var(--color-theme_G),var(--color-theme_B), 0.7);
        border-color: rgba(var(--color-theme_R),var(--color-theme_G),var(--color-theme_B), 0.7);
        color: white;
    }
    
    .btn-primary {
        background-color: var(--color-theme);
        border-color: var(--color-theme);
    }
    
    .btn-primary:hover {
        background-color: var(--color-theme);
        border-color: rgba(var(--color-theme_R),var(--color-theme_G),var(--color-theme_B), 1);
        filter: brightness(112%);
    }
    
    .btn-secondary {
        background-color:var(--color-theme);
        border-color:var(--color-theme);
        filter: brightness(112%);
    }
    
    .btn-secondary:hover {
        filter: brightness(112%);
    }
    
    
    .navbar ul {
        background-color: var(--color-theme-background, #fff);
        color: var(--color-theme, #333);
    }

    .navbar li {
        color: var(--color-theme, #333);
    }

    .navbar .dropdown-menu {
        background-color: var(--color-theme-background, #fff) !important;
        border-color: var(--color-theme, #333) !important;
    }

    .navbar .dropdown-item {
        color: var(--color-theme, #333) !important;
        transition: background 0.2s, color 0.2s;
    }

    .navbar .dropdown-item:hover,
    .navbar .dropdown-item:focus {
        background-color: var(--color-theme, #333) !important;
        color: var(--color-theme-background, #fff) !important;
    }

    .navbar .dropdown-item.active,
    .navbar .dropdown-item:active {
        background-color: var(--color-theme, #333) !important;
        color: var(--color-theme-background, #fff) !important;
    }
    
    /* Desktop version */
    .search-box {
        max-width: 300px;
        min-width: 200px;
    }

    /* Mobile version */
    @media (max-width: 768px) {
        .search-box {
            max-width: 120px;
            min-width: 120px;
        }
    }
    
    /* Hero Section */
    .hero {
        /*
        background: linear-gradient(
                                    rgba(var(--color-theme_R),var(--color-theme_G),var(--color-theme_B),0.2), 
                                    rgba(var(--color-theme_R),var(--color-theme_G),var(--color-theme_B),0.5)
                                    ), 
                                    url('../CRM/_IMG/Empresa/<?php echo $Nombre_DB ?>/Backgroud_web.jpg') center/cover;
        */
        height: 500px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 2rem;
    }
    
    .hero-content {
        max-width: 800px;
        padding: 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }
    
    /* Product Cards */
    .product-card {
        border: none;
        box-shadow: 0 2px 4px rgba(0,0,0,0.05);
        transition: transform 0.3s ease;
    }
    
    .product-card:hover {
        transform: translateY(-5px);
    }
    
    .card-img-wrapper {
        position: relative;
        padding-top: 100%;
        overflow: hidden;
        width: 100%;
        height: 300px;
        border-radius: 8px;
    }
    
    .card-img-wrapper img {
        position: absolute;
        top: 50%; /* Centra verticalmente */
        left: 50%; /* Centra horizontalmente */
        transform: translate(-50%, -50%) scale(1);
        width: auto;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }
    
    .card-img-wrapper:hover img {
        transform: translate(-50%, -50%) scale(1.1); /* Aplica un ligero zoom al pasar el mouse */
    }

    .btn-favorite {
        position: absolute;
        top: 1rem;
        right: 1rem;
        background: white;
        border: none;
        border-radius: 50%;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    
    .btn-favorite.active {
        color: rgba(var(--color-theme_R),var(--color-theme_G),var(--color-theme_B), 0.3);
    }
    
    .price {
        font-size: 1.25rem;
        font-weight: bold;
        color: rgba(var(--color-theme_R),var(--color-theme_G),var(--color-theme_B), 0.7);
    }
    
    /* Categories */
    .category-card {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
        cursor: pointer;
        transition: transform 0.3s ease;
    }
    
    .category-card:hover {
        transform: translateY(-5px);
    }
    
    .category-card img {
        width: 100%;
        height: 150px;
        object-fit: cover;
    }
    
    .category-card h3 {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0;
        padding: 1rem;
        background: linear-gradient(transparent, rgba(var(--color-theme_R),var(--color-theme_G),var(--color-theme_B),0.9));
        color: white;
        font-size: 1rem;
        text-align: center;
    }
    
    /* Features Section */
    .features-section {
        background-color: rgba(var(--color-theme_R),var(--color-theme_G),var(--color-theme_B), 0.1);
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card i {
        font-size: 2.5rem;
        color: rgba(var(--color-theme_R),var(--color-theme_G),var(--color-theme_B), 0.2);
        margin-bottom: 1rem;
    }
    
    /* Footer */
    .footer {
        background-color: var(--color-theme);
        color: white;
    }
    
    .footer a {
        color: white;
        text-decoration: none;
    }
    
    .footer a:hover {
        text-decoration: underline;
    }
    
    .footer i {
        margin-right: 0.5rem;
    }
    
    /* Responsive Adjustments */
    @media (max-width: 768px) {
        .hero h1 {
            font-size: 2.5rem;
        }
        
        .search-box {
            width: 100%;
            margin-bottom: 1rem;
        }
        
        .navbar-nav {
            margin: 1rem 0;
        }
    }

    .loader {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.9);
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    /* Estilo del botón de WhatsApp */
    .whatsapp-button {
        position: fixed;
        bottom: 90px;
        right: 20px;
        width: 60px;
        height: 60px;
        background-color: #25D366;
        border-radius: 50%;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        transition: transform 0.3s ease;
        z-index: 9999;
        animation: pulse 2s infinite;
    }

    .whatsapp-button img {
        width: 30px;
        height: 30px;
    }

    .whatsapp-button:hover {
        transform: scale(1.1);
    }

    @keyframes pulse {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        }
        70% {
            box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
        }
        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    /* Ícono de WhatsApp */
    .whatsapp-button img {
        width: 30px; /* Tamaño del ícono */
        height: 30px;
    }

    /* Efecto de zoom al pasar el mouse */
    .whatsapp-button:hover {
        transform: scale(1.1); /* Amplía el botón ligeramente */
    }

    .spinner {
        border: 4px solid #f3f3f3;
        border-top: 4px solid rgb(var(--color-theme_R),var(--color-theme_G),var(--color-theme_B));
        border-radius: 50%;
        width: 40px;
        height: 40px;
        animation: spin 1s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }
        100% {
            transform: rotate(360deg);
        }
    }

    .cookie-notice {
        box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
        font-size: 1rem;
    }