/* ===== RESET BÁSICO ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.5;
    color: #333;
    background: #f8fafc;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* ===== WHATSAPP FLOTANTE ===== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

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

/* ===== HEADER SIMPLE ===== */
header {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    color: white;
    padding: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo p {
    color: #cbd5e0;
    font-size: 0.9rem;
}

.contact-header p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.contact-header i {
    color: #60a5fa;
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    flex: 1;
}

/* ===== BARRA DE BÚSQUEDA ===== */
.search-container {
    margin-bottom: 30px;
}

.search-box {
    position: relative;
    max-width: 600px;
    margin: 0 auto 10px;
}

.search-box i.fa-search {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1.1rem;
    z-index: 2;
}

.search-box input {
    width: 100%;
    padding: 16px 50px 16px 50px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: white;
    padding-right: 60px;
}

.search-box input:focus {
    border-color: #1e40af;
    box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.1);
}

.search-box input::placeholder {
    color: #94a3b8;
}

/* Botón × dentro del input */
.clear-btn {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 8px;
    font-size: 1.1rem;
    z-index: 2;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.clear-btn:hover {
    color: #64748b;
    background: #f1f5f9;
}

.clear-btn.show {
    opacity: 1;
    visibility: visible;
}

.search-info {
    text-align: center;
    color: #64748b;
    font-size: 0.9rem;
    min-height: 20px;
    margin-top: 5px;
}

/* ===== FILTROS ===== */
.filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 20px;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    color: #4a5568;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-btn:hover {
    border-color: #1e40af;
    color: #1e40af;
}

.filter-btn.active {
    background: #1e40af;
    border-color: #1e40af;
    color: white;
}

/* ===== GRID DE PRODUCTOS (4 POR FILA) ===== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 30px;
}

/* ===== TARJETA DE PRODUCTO ===== */
.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Imagen del producto */
.product-image {
    height: 180px;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    max-height: 150px;
}

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

/* Información del producto */
.product-info {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1.3;
    min-height: 45px;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 10px;
}

.description {
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.4;
    flex: 1;
}

/* Botón de WhatsApp */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25D366;
    color: white;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.3s ease;
    text-align: center;
    margin-top: auto;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.whatsapp-btn i {
    font-size: 1.1rem;
}

/* ===== MENSAJE INFORMATIVO ELEGANTE ===== */
.price-notice {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 20px;
    margin: 40px auto 30px;
    max-width: 800px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.price-notice:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border-left-color: #1d4ed8;
}

.notice-content {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.notice-icon {
    color: #3b82f6;
    font-size: 1.3rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.price-notice p {
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

.notice-title {
    color: #1e40af;
    font-weight: 600;
    margin-right: 5px;
}

.price-notice strong {
    color: #1e293b;
    font-weight: 600;
}

/* ===== PAGINACIÓN ===== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
}

.page-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    min-width: 110px;
    justify-content: center;
}

.page-btn:hover:not(:disabled) {
    background: #2563eb;
    transform: translateY(-2px);
}

.page-btn:disabled {
    background: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.6;
}

.page-numbers {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.page-number {
    width: 40px;
    height: 40px;
    border: 2px solid #e2e8f0;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #475569;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-number:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

.page-number.active {
    background: #3b82f6;
    border-color: #3b82f6;
    color: white;
}

.page-dots {
    display: flex;
    align-items: center;
    color: #94a3b8;
    padding: 0 5px;
}

.page-info {
    color: #64748b;
    font-size: 0.9rem;
    margin-left: auto;
    text-align: center;
    min-width: 200px;
}

/* ===== MENSAJE SIN RESULTADOS ===== */
.no-results {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
    display: none;
}

.no-results i {
    color: #cbd5e0;
    margin-bottom: 20px;
}

.no-results h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #475569;
}

.no-results p {
    margin-bottom: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.reset-btn {
    background: #1e40af;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.3s ease;
}

.reset-btn:hover {
    background: #1e3a8a;
}

/* ===== FOOTER SIMPLE ===== */
footer {
    background: #1e293b;
    color: white;
    padding: 25px 0;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-content p {
    margin-bottom: 10px;
    color: #cbd5e0;
    font-size: 0.95rem;
}

.footer-content strong {
    color: white;
}

.footer-content i {
    color: #60a5fa;
    margin: 0 5px;
}

.copyright {
    color: #94a3b8;
    font-size: 0.85rem;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== RESPONSIVE ===== */

/* Tablets - 2 productos por fila */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info h3 {
        font-size: 1.2rem;
        min-height: auto;
    }
    
    .price {
        font-size: 1.6rem;
    }
    
    .pagination {
        flex-direction: column;
        gap: 20px;
    }
    
    .page-info {
        margin-left: 0;
        order: 3;
        width: 100%;
    }
}

/* Móviles grandes - 2 productos por fila */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .search-box input {
        padding: 14px 55px 14px 45px;
        font-size: 0.95rem;
    }
    
    .clear-btn {
        right: 10px;
        width: 28px;
        height: 28px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .product-image {
        height: 180px;
    }
    
    .product-info {
        padding: 15px;
    }
    
    .product-info h3 {
        font-size: 1.1rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .whatsapp-btn {
        padding: 10px;
        font-size: 0.85rem;
    }
    
    .pagination {
        gap: 15px;
    }
    
    .page-btn {
        padding: 8px 15px;
        font-size: 0.85rem;
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }
    
    .page-numbers {
        order: -1;
        margin-bottom: 10px;
    }
    
    .page-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Móviles pequeños - 1 producto por fila */
@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
        white-space: nowrap;
    }
    
    .search-box input {
        font-size: 0.9rem;
        padding: 12px 50px 12px 40px;
    }
    
    .search-box i.fa-search {
        left: 15px;
        font-size: 1rem;
    }
    
    .clear-btn {
        right: 8px;
        width: 26px;
        height: 26px;
        font-size: 1rem;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .page-btn {
        width: 100%;
        max-width: none;
    }
}
/* Banner de Horarios Fijo - ESQUINA SUPERIOR DERECHA */
.fixed-schedule-banner {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000; /* Muy alto para estar sobre todo */
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.schedule-container {
    background: linear-gradient(135deg, #1a5fb4 0%, #2d7cd6 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(26, 95, 180, 0.4);
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 350px;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.schedule-container i {
    font-size: 1.5rem;
    color: #ffd700; /* Dorado para destacar */
}

.schedule-details {
    flex: 1;
}

.schedule-details strong {
    display: block;
    margin-bottom: 5px;
    font-size: 0.95rem;
}

.schedule-times {
    display: flex;
    flex-direction: column;
    gap: 3px;
    font-size: 0.85rem;
    opacity: 0.95;
}

.schedule-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    flex-shrink: 0;
}

.schedule-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .fixed-schedule-banner {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: calc(100% - 20px);
    }
    
    .schedule-container {
        padding: 12px 15px;
        max-width: 100%;
    }
    
    .schedule-times {
        font-size: 0.8rem;
    }
}
/* ===== SISTEMA "VER MÁS" ===== */
.load-more-container {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
}

.load-more-btn {
    background: #3b82f6;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.load-more-btn:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
}

.load-more-btn:active {
    transform: translateY(0);
}

.loading {
    color: #64748b;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.loading i {
    color: #3b82f6;
}

/* Animación para productos nuevos */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: slideIn 0.5s ease forwards;
}

/* Responsive para botón */
@media (max-width: 768px) {
    .load-more-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* Estilos para el footer */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 4px solid #3498db;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 300px;
}

.footer-section p {
    margin: 10px 0;
    font-size: 1rem;
    color: #ecf0f1;
}

.copyright {
    font-size: 0.9rem;
    color: #bdc3c7 !important;
}

/* Estilos para la sección de redes sociales */
.social-media h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: #ecf0f1;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

.social-media h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #3498db, transparent);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    width: 100px;
    padding: 15px 10px;
    border-radius: 12px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

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

.social-icon:hover::before {
    left: 100%;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.social-icon i {
    font-size: 28px;
    margin-bottom: 8px;
    transition: transform 0.3s ease;
}

.social-icon:hover i {
    transform: scale(1.2);
}

.social-icon span {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Colores específicos para cada red social */
.instagram {
    background: linear-gradient(145deg, rgba(225, 48, 108, 0.1), rgba(225, 48, 108, 0.2));
    border: 1px solid rgba(225, 48, 108, 0.3);
}

.instagram:hover {
    background: linear-gradient(145deg, #e1306c, #c13584);
}

.facebook {
    background: linear-gradient(145deg, rgba(24, 119, 242, 0.1), rgba(24, 119, 242, 0.2));
    border: 1px solid rgba(24, 119, 242, 0.3);
}

.facebook:hover {
    background: linear-gradient(145deg, #1877f2, #0d5dbd);
}

.tiktok {
    background: linear-gradient(145deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.tiktok:hover {
    background: linear-gradient(145deg, #000000, #333333);
}

/* Efecto de brillo al pasar el mouse */
.social-icon::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    border-radius: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-icon:hover::after {
    opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }
    
    .footer-section {
        min-width: 100%;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .social-icon {
        width: 85px;
        padding: 12px 8px;
    }
    
    .social-icon i {
        font-size: 24px;
    }
    
    .social-icon span {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .social-icons {
        gap: 10px;
    }
    
    .social-icon {
        width: 75px;
        padding: 10px 5px;
    }
    
    .social-icon i {
        font-size: 22px;
    }
}
.combined-notice {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid #007bff;
    border-right: 5px solid #28a745;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.notice-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.notice-section {
    flex: 1;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.notice-section i {
    font-size: 28px;
    margin-top: 5px;
}

.notice-section:first-child i {
    color: #007bff;
}

.notice-section:last-child i {
    color: #28a745;
}

.divider {
    width: 2px;
    background: linear-gradient(to bottom, transparent, #adb5bd, transparent);
    height: 100%;
}

@media (max-width: 768px) {
    .notice-content {
        flex-direction: column;
        gap: 20px;
    }
    
    .divider {
        width: 100%;
        height: 2px;
        background: linear-gradient(to right, transparent, #adb5bd, transparent);
    }
}
/* Estilos generales para el contenedor del logo */
.logo {
    display: flex;
    align-items: center;
}

/* Estilos para el enlace que contiene todo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 15px; /* Espacio entre la imagen y el texto */
    text-decoration: none;
    color: inherit; /* Hereda el color del elemento padre */
}

/* Estilos para la imagen del logo */
.logo-img {
    height: 70px; /* Ajusta esta altura según lo que prefieras */
    width: auto;
    /* Opcional: Si el fondo blanco del logo no combina, podrías añadir:
       background-color: #f8f9fa;
       border-radius: 8px;
       padding: 5px;
    */
}

/* Estilos para el contenedor de texto */
.logo-text h1 {
    margin: 0;
    font-size: 1.8rem;
    color: #ecf0f1; /* Puedes cambiar este color */
}

.logo-text p {
    margin: 5px 0 0 0;
    font-size: 0.9rem;
    color: #bdc3c7; /* Color del subtítulo */
    font-weight: 300;
}

/* Ajustes para pantallas más pequeñas (Responsive) */
@media (max-width: 768px) {
    .logo-link {
        gap: 10px; /* Menos espacio en móviles */
    }
    
    .logo-img {
        height: 50px; /* Logo más pequeño en móviles */
    }
    
    .logo-text h1 {
        font-size: 1.4rem; /* Texto más pequeño en móviles */
    }
    
    .logo-text p {
        font-size: 0.8rem;
    }
}
/* ===== HEADER ELEGANTE RECOMENDADO ===== */
.header-modern {
    background: linear-gradient(135deg, 
        #1e3c72 0%,     /* Azul marino */
        #2a5298 50%,    /* Azul real */
        #3498db 100%    /* Azul claro */
    );
    padding: 25px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 10px 40px rgba(30, 60, 114, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Partículas decorativas sutiles */
.header-modern::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 50%);
    z-index: 1;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 25px;
    text-decoration: none;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
}

.logo-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.logo-img {
    height: 90px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.logo-text h1 {
    color: #ffffff;
    position: relative;
    background: linear-gradient(90deg, 
        #ffffff 0%, 
        #3498db 50%, 
        #ffffff 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: 
        shine 3s ease-in-out infinite alternate,
        float 6s ease-in-out infinite;
    text-shadow: 0 2px 15px rgba(52, 152, 219, 0.2);
}

@keyframes shine {
    from { background-position: 0% center; }
    to { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-2px); }
}

.logo-text p {
    margin: 10px 0 0 0;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-modern {
        padding: 20px 0;
        margin: 0 10px 20px 10px;
        border-radius: 0 0 15px 15px;
    }
    
    .logo-link {
        gap: 15px;
        padding: 12px;
    }
    
    .logo-img {
        height: 55px;
    }
    
    .logo-text h1 {
        font-size: 1.6rem;
    }
}
/* ===== POSICIONAMIENTO DEL BADGE "DESTACADO" ===== */
.product-card {
    position: relative; /* Importante para el posicionamiento absoluto del badge */
}

.product-image {
    position: relative; /* Contenedor para posicionar el badge dentro de la imagen */
    overflow: hidden; /* Evita que el badge se salga */
}

.featured-badge {
    /* POSICIÓN ABSOLUTA dentro de .product-image */
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10; /* Se asegura que esté sobre la imagen */
    
    /* ESTILOS VISUALES (elige el que quieras) */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #8B4513;
    padding: 6px 12px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.75rem;
    box-shadow: 0 3px 8px rgba(255, 215, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    
    /* Animación opcional */
    animation: badgePulse 2s ease-in-out infinite;
}

/* Animación sutil */
@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Estilos para el ícono dentro del badge */
.featured-badge i {
    color: #8B4513;
    font-size: 0.8rem;
}

/* Ajuste para pantallas móviles */
@media (max-width: 768px) {
    .featured-badge {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 0.65rem;
    }
    
    .featured-badge i {
        font-size: 0.7rem;
    }
}
/* Placa "AGOTADO" sobre la imagen */
.sold-out-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(220, 38, 38, 0.9);
    color: white;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    z-index: 10;
    text-align: center;
    border: 2px solid white;
    min-width: 140px;
}

/* Botón AGOTADO (gris, no clickeable) */
.whatsapp-btn[style*="background: #9ca3af"] {
    pointer-events: none;
    background: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
}