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

body {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #E5E7EB;
    background-color: #1a1a1a;
    background-image: linear-gradient(135deg, #1a1a1a 0%, #2d1b0e 50%, #1a1a1a 100%);
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* Tema Claro */
body.light-theme {
    color: #0F172A;
    background-color: #FAFAFA;
    background-image: linear-gradient(135deg, #FAFAFA 0%, #F5F5F5 50%, #FAFAFA 100%);
}

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

/* Header - Confianza y Profesionalismo - Fondo oscuro con acento naranja */
.site-header {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 2px solid rgba(204, 85, 0, 0.3);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

body.light-theme .site-header {
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 2px solid rgba(255, 140, 66, 0.4);
}

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

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.logo:hover {
    transform: translateY(-1px);
    opacity: 0.9;
}

.logo-image {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(204, 85, 0, 0.3));
    transition: filter 0.2s ease, transform 0.2s ease;
}

.logo:hover .logo-image {
    filter: drop-shadow(0 4px 8px rgba(204, 85, 0, 0.5));
    transform: scale(1.02);
}

.logo-text {
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    font-size: 1.75rem;
    color: #FF8C42;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(204, 85, 0, 0.4), 0 0 20px rgba(204, 85, 0, 0.2);
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.logo:hover .logo-text {
    color: #FF6B1A;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #D1D5DB;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-link:hover {
    color: #FF8C42;
}

body.light-theme .nav-link {
    color: #4B5563;
}

body.light-theme .nav-link:hover {
    color: #FF8C42;
}

/* Theme Toggle Button */
.theme-toggle {
    background: rgba(255, 140, 66, 0.1);
    border: 2px solid rgba(255, 140, 66, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin-left: 1rem;
}

.theme-toggle:hover {
    background: rgba(255, 140, 66, 0.2);
    border-color: rgba(255, 140, 66, 0.5);
    transform: scale(1.1);
}

.theme-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.theme-toggle:hover .theme-icon {
    transform: rotate(15deg);
}

body.light-theme .theme-toggle {
    background: rgba(255, 140, 66, 0.15);
    border-color: rgba(255, 140, 66, 0.4);
}

body.light-theme .theme-toggle:hover {
    background: rgba(255, 140, 66, 0.25);
}

/* Hero - Mensaje de Confianza */
.hero-section {
    text-align: center;
    padding: 3rem 0 0.5rem;
    margin-bottom: 0;
}

.hero-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FF8C42;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(204, 85, 0, 0.4);
    transition: color 0.3s ease;
}

body.light-theme .hero-title {
    color: #EA580C;
    text-shadow: 0 2px 8px rgba(255, 140, 66, 0.2);
}

body.light-theme .hero-subtitle {
    color: #475569;
    font-weight: 500;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #D1D5DB;
    font-weight: 400;
}

/* Trust Section - Elementos de Confianza */
.trust-section {
    margin: 1rem 0 0.5rem 0;
    padding: 1rem 0;
}

.trust-badges-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-item {
    background: linear-gradient(135deg, #2d2520 0%, #3a2f1f 100%);
    border: 1px solid rgba(255, 140, 66, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

body.light-theme .trust-item {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border: 1px solid rgba(255, 140, 66, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3);
    border-color: rgba(255, 140, 66, 0.4);
}

body.light-theme .trust-item:hover {
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.2);
    border-color: rgba(255, 140, 66, 0.5);
}

.trust-icon {
    font-size: 2rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FF8C42 0%, #CC5500 100%);
    border-radius: 10px;
    flex-shrink: 0;
    box-shadow: 0 4px 8px rgba(204, 85, 0, 0.3);
    color: #FFFFFF;
    font-weight: 700;
}

.trust-content {
    flex: 1;
}

.trust-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FF8C42;
    margin-bottom: 0.5rem;
    font-family: 'Space Grotesk', 'Outfit', sans-serif;
    transition: color 0.3s ease;
}

body.light-theme .trust-title {
    color: #EA580C;
    font-weight: 700;
}

.trust-description {
    font-size: 0.9rem;
    color: #D1C4B0;
    line-height: 1.5;
    margin: 0;
    transition: color 0.3s ease;
}

body.light-theme .trust-description {
    color: #1E293B;
    font-weight: 500;
    line-height: 1.6;
}

/* Lista de Chollos - Estilo Chollometro */
.chollos-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

/* Tarjeta de Chollo - Formato Lista estilo Chollometro - Color cálido oscuro */
.chollo-card {
    background: linear-gradient(135deg, #2d2520 0%, #3a2f1f 100%);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3), 0 0 0 1px rgba(204, 85, 0, 0.1);
    transition: box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
    cursor: pointer;
    position: relative;
    border: 1px solid rgba(204, 85, 0, 0.2);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    margin-bottom: 0.5rem;
    transform: translateX(0);
    isolation: isolate; /* Crear nuevo contexto de apilamiento para evitar problemas con hover */
}

body.light-theme .chollo-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1), 0 0 0 1px rgba(255, 140, 66, 0.2);
    border: 1px solid rgba(255, 140, 66, 0.3);
}

body.light-theme .chollo-card:hover {
    background: linear-gradient(135deg, #FFFFFF 0%, #F0F0F0 100%);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.3), 0 0 0 1px rgba(255, 140, 66, 0.5);
    border-color: rgba(255, 140, 66, 0.6);
}

.chollo-card:hover {
    box-shadow: 0 6px 20px rgba(204, 85, 0, 0.5), 0 0 0 1px rgba(255, 140, 66, 0.4);
    border-color: #FF8C42;
    transform: translateX(4px);
    background: linear-gradient(135deg, #352a23 0%, #423525 100%);
}

/* Simplificar hover: quitar reglas complejas que pueden estar causando problemas */
.chollo-card:hover {
    box-shadow: 0 6px 20px rgba(204, 85, 0, 0.5), 0 0 0 1px rgba(255, 140, 66, 0.4);
    border-color: #FF8C42;
    transform: translateX(4px);
    background: linear-gradient(135deg, #352a23 0%, #423525 100%);
}

/* Hacer toda la tarjeta clickeable */
.chollo-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    text-decoration: none;
}

.chollo-image {
    position: relative;
    width: 180px;
    min-width: 180px;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #2d2520 0%, #3a2f1f 100%);
    flex-shrink: 0;
    border-radius: 12px;
    border: 2px solid rgba(255, 140, 66, 0.3);
    padding: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: background 0.3s ease, border-color 0.3s ease;
}

/* Badge de Mínimo Histórico - Parte superior centrada */
.minimo-historico-badge {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF6B35 0%, #CC5500 100%);
    color: #FFFFFF;
    padding: 0.35rem 0.75rem;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.6), 0 0 15px rgba(255, 107, 53, 0.4);
    white-space: nowrap;
    z-index: 4;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: none;
}

.minimo-historico-badge::before {
    content: "📉";
    font-size: 0.85rem;
}

body.light-theme .minimo-historico-badge {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B35 100%);
    box-shadow: 0 2px 8px rgba(255, 140, 66, 0.5), 0 0 15px rgba(255, 140, 66, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

body.light-theme .chollo-image {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8F8F8 100%);
    border-color: rgba(255, 140, 66, 0.4);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.chollo-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
    background: transparent;
    border-radius: 8px;
}

.chollo-card:hover .chollo-image {
    border-color: rgba(255, 140, 66, 0.6);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

body.light-theme .chollo-card:hover .chollo-image {
    border-color: rgba(255, 140, 66, 0.7);
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
}

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

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    color: #9CA3AF;
}

/* Badge de Descuento - OCULTO */
.discount-badge {
    display: none;
}

/* Multi-Tags de Categoría - Esquina superior derecha del contenido */
.chollo-content {
    position: relative;
}

.category-tags {
    position: absolute;
    top: 6px;
    right: 6px;
    display: inline-flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    gap: 4px;
    z-index: 5;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 3px 6px;
    background: rgba(26, 26, 26, 0.85);
    backdrop-filter: blur(4px);
    color: #FF8C42;
    font-size: 0.55rem;
    font-weight: 600;
    border-radius: 10px;
    border: 1px solid rgba(255, 140, 66, 0.4);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    /* Sin hover ni animaciones */
    cursor: default;
    pointer-events: none;
}

body.light-theme .category-tag {
    background: rgba(255, 255, 255, 0.9);
    color: #CC5500;
    border: 1px solid rgba(255, 140, 66, 0.5);
}

/* Móvil: solo mostrar el primer tag */
@media (max-width: 768px) {
    .category-tag:not(:first-child) {
        display: none !important;
    }
}

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

/* Logo de HugChollos en Cards - Pequeño, totalmente transparente, esquina inferior izquierda */
.hugchollos-logo-card {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: transparent;
    padding: 0;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.hugchollos-logo-card-img {
    max-height: 32px;
    max-width: 80px;
    height: auto;
    width: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.8));
}

/* Badge de Verificado - A la derecha del precio - Verde vibrante */
.verified-badge {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000000;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    box-shadow: 0 2px 6px rgba(0, 255, 136, 0.5);
    white-space: nowrap;
    margin-left: 0.5rem;
}

.verified-badge::before {
    content: "✓";
    font-weight: 700;
    font-size: 0.85rem;
}

/* Badge de Amazon - Blanco, mismo tamaño que Verificado, con glow */
.amazon-badge {
    background: #FFFFFF;
    padding: 0.4rem 0.7rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2),
                0 0 10px rgba(255, 140, 66, 0.4),
                0 0 20px rgba(255, 140, 66, 0.2);
    white-space: nowrap;
    margin-left: 0.5rem;
    transition: box-shadow 0.3s ease;
}

.amazon-badge:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2),
                0 0 15px rgba(255, 140, 66, 0.6),
                0 0 30px rgba(255, 140, 66, 0.3);
}

.amazon-badge-img {
    width: 60px;
    height: auto;
    max-height: 18px;
    object-fit: contain;
    display: block;
}

.chollo-content {
    padding: 1.25rem;
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}

.chollo-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #B8A896;
    margin-bottom: 0.75rem;
    align-items: center;
    transition: color 0.3s ease;
}

body.light-theme .chollo-meta {
    color: #475569;
}

.chollo-date {
    color: #B8A896;
    transition: color 0.3s ease;
}

body.light-theme .chollo-date {
    color: #64748B;
    font-weight: 500;
}

.chollo-category {
    background: rgba(204, 85, 0, 0.2);
    color: #FF8C42;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.75rem;
    border: 1px solid rgba(204, 85, 0, 0.3);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

body.light-theme .chollo-category {
    background: rgba(255, 140, 66, 0.12);
    color: #EA580C;
    border: 1px solid rgba(255, 140, 66, 0.25);
    font-weight: 600;
}

.chollo-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    font-weight: 600;
    flex: 1;
}

.chollo-title a {
    color: #F5E6D3;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 600;
}

.chollo-card:hover .chollo-title a {
    color: #FF8C42;
}

body.light-theme .chollo-title a {
    color: #0F172A;
    font-weight: 600;
}

body.light-theme .chollo-card:hover .chollo-title a {
    color: #FF8C42;
}

.chollo-description {
    font-size: 0.85rem;
    color: #D1C4B0;
    margin-bottom: 0.75rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

body.light-theme .chollo-description {
    color: #475569;
    line-height: 1.6;
}

.chollo-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
}

.chollo-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}

/* Precio actual en NARANJA QUEMADO - Consonancia con paleta */
.price-current {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FF8C42;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(204, 85, 0, 0.3);
}

/* Precio original en GRIS tachado - Ajustado para cards oscuras */
.price-original {
    font-size: 1rem;
    color: #B8A896;
    text-decoration: line-through;
    font-weight: 400;
    transition: color 0.3s ease;
}

body.light-theme .price-original {
    color: #94A3B8;
    font-weight: 500;
}

/* Badge de descuento en VERDE VIBRANTE - Resalta el ahorro */
.savings-badge {
    background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
    color: #000000;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 2px 8px rgba(0, 255, 136, 0.5);
    white-space: nowrap;
}

.savings-amount {
    font-size: 0.9rem;
    color: #22C55E;
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(34, 197, 94, 0.3);
    transition: color 0.3s ease;
}

body.light-theme .savings-amount {
    color: #16A34A;
    text-shadow: none;
    font-weight: 700;
}

/* BOTÓN PRINCIPAL - MÁXIMA CONVERSIÓN (Formato lista) - Naranja Quemado */
.btn-affiliate {
    background: linear-gradient(135deg, #FF8C42 0%, #CC5500 100%);
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(204, 85, 0, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 3;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-affiliate::before {
    content: "🛒";
    font-size: 1.1rem;
}

.btn-affiliate::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-affiliate:hover {
    background: linear-gradient(135deg, #FF6B1A 0%, #B84400 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(204, 85, 0, 0.6);
}

.btn-affiliate:hover::after {
    width: 300px;
    height: 300px;
}

.btn-affiliate:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.3);
}

/* Texto alternativo del botón */
.btn-affiliate-text {
    font-weight: 700;
    letter-spacing: 0.025em;
}

.chollos-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0.5rem 0 1rem;
}

/* Filtro de Categorías */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(45, 37, 32, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(255, 140, 66, 0.2);
}

body.light-theme .category-filter {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 140, 66, 0.3);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-btn {
    padding: 0.6rem 1.2rem;
    border: 2px solid rgba(255, 140, 66, 0.3);
    border-radius: 25px;
    background: rgba(26, 26, 26, 0.8);
    color: #E5E7EB;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

body.light-theme .filter-btn {
    background: #FFFFFF;
    color: #374151;
    border: 2px solid rgba(255, 140, 66, 0.3);
}

.filter-btn:hover {
    background: rgba(255, 140, 66, 0.2);
    border-color: #FF8C42;
    transform: translateY(-2px);
}

body.light-theme .filter-btn:hover {
    background: rgba(255, 140, 66, 0.1);
    border-color: #FF8C42;
}

.filter-btn.active {
    background: linear-gradient(135deg, #FF8C42 0%, #CC5500 100%);
    color: white;
    border-color: #FF8C42;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
}

body.light-theme .filter-btn.active {
    background: linear-gradient(135deg, #FF8C42 0%, #CC5500 100%);
    color: white;
    border-color: #FF8C42;
}

/* Wrapper para animación de filtrado */
.chollo-wrapper {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.chollo-wrapper[style*="display: none"] {
    opacity: 0;
    transform: scale(0.95);
}

/* Responsive para filtros */
@media (max-width: 768px) {
    .category-filter {
        justify-content: center;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}

body.light-theme .chollos-header h2 {
    color: #0F172A;
    font-weight: 700;
}

body.light-theme .chollos-count {
    color: #64748B;
    font-weight: 600;
}

.chollos-count {
    color: #FF8C42;
    font-size: 0.9rem;
    background: rgba(204, 85, 0, 0.15);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    border: 1px solid rgba(204, 85, 0, 0.3);
}

.no-chollos {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem;
    color: #D1D5DB;
}

/* Paginación - Estilo mejorado y centrado */
.pagination-container {
    margin: 4rem 0 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(45, 27, 14, 0.95) 100%);
    backdrop-filter: blur(15px);
    padding: 1.25rem 2.5rem;
    border-radius: 16px;
    border: 2px solid rgba(255, 140, 66, 0.4);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 140, 66, 0.1);
    max-width: 600px;
    width: 100%;
}

body.light-theme .pagination {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(250, 250, 250, 0.95) 100%);
    border-color: rgba(255, 140, 66, 0.5);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 20px rgba(255, 140, 66, 0.15);
}

.pagination-btn {
    background: linear-gradient(135deg, #FF8C42 0%, #FF6B1A 100%);
    color: #fff;
    border: none;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.4);
    white-space: nowrap;
    min-width: 120px;
    justify-content: center;
}

.pagination-btn:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.6);
    background: linear-gradient(135deg, #FF6B1A 0%, #FF8C42 100%);
}

.pagination-btn:active:not(:disabled) {
    transform: translateY(-1px) scale(0.98);
}

.pagination-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    background: rgba(255, 140, 66, 0.15);
    box-shadow: 0 2px 6px rgba(255, 140, 66, 0.2);
    transform: none;
}

.pagination-btn span {
    font-size: 1.2rem;
    font-weight: bold;
    line-height: 1;
}

.pagination-info {
    color: #E5E7EB;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    flex: 1;
    padding: 0 1rem;
    letter-spacing: 0.02em;
}

body.light-theme .pagination-info {
    color: #0F172A;
}

@media (max-width: 768px) {
    .pagination-container {
        margin: 3rem 0 2rem;
        padding: 0 1rem;
    }
    
    .pagination {
        flex-direction: column;
        gap: 1.25rem;
        padding: 1.5rem 1.25rem;
        max-width: 100%;
    }
    
    .pagination-btn {
        width: 100%;
        justify-content: center;
        min-width: auto;
        padding: 1rem 1.5rem;
    }
    
    .pagination-info {
        font-size: 0.95rem;
        padding: 0;
        order: -1;
        width: 100%;
    }
}

.load-more {
    text-align: center;
    margin: 2rem 0;
}

.btn-primary {
    background: linear-gradient(135deg, #FF8C42 0%, #CC5500 100%);
    color: #FFFFFF;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(204, 85, 0, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FF6B1A 0%, #B84400 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(204, 85, 0, 0.6);
}

/* Footer - Confianza - Acento naranja */
.site-footer {
    background: rgba(26, 26, 26, 0.95);
    color: #F9FAFB;
    padding: 2.5rem 0;
    margin-top: 4rem;
    border-top: 3px solid #FF8C42;
}

.footer-content {
    text-align: center;
}

.affiliate-disclosure {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #D1D5DB;
    line-height: 1.6;
}

.copyright {
    font-size: 0.85rem;
    color: #9CA3AF;
}

/* Página Individual de Chollo */
.chollo-single {
    padding: 2rem 0;
}

.chollo-header {
    margin-bottom: 2rem;
}

.page-header {
    margin-bottom: 2rem;
}

.page-description {
    color: #6B7280;
    font-size: 1.1rem;
}

.chollo-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.chollo-image-large {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    border-radius: 12px;
    border: 2px solid #E5E7EB;
}

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

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

.placeholder-image-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    color: #9CA3AF;
    font-size: 1.2rem;
}

.discount-badge-large {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #EF4444 0%, #DC2626 100%);
    color: #FFFFFF;
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.4rem;
    box-shadow: 0 6px 12px rgba(239, 68, 68, 0.4);
    animation: pulse 2s infinite;
}

.chollo-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-box {
    padding: 2rem;
    background: linear-gradient(135deg, #FEF2F2 0%, #FEE2E2 100%);
    border-radius: 12px;
    border: 2px solid #FECACA;
}

.price-current-large {
    font-size: 3.5rem;
    font-weight: 700;
    color: #DC2626;
    line-height: 1;
}

.price-original-large {
    font-size: 2rem;
    color: #6B7280;
    text-decoration: line-through;
    margin-top: 0.5rem;
    font-weight: 400;
}

.savings-badge-large {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: #FFFFFF;
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.25rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 8px rgba(16, 185, 129, 0.3);
}

.savings-badge-large::before {
    content: "💰";
    font-size: 1.2rem;
}

.savings-amount-large {
    font-size: 1.1rem;
    color: #10B981;
    font-weight: 700;
    margin-top: 0.5rem;
}

/* BOTÓN GRANDE - MÁXIMA CONVERSIÓN */
.btn-affiliate-large {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    padding: 1.25rem 2.5rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.35);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    width: 100%;
}

.btn-affiliate-large::before {
    content: "🛒";
    font-size: 1.5rem;
}

.btn-affiliate-large::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-affiliate-large:hover {
    background: linear-gradient(135deg, #1D4ED8 0%, #1E40AF 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.45);
}

.btn-affiliate-large:hover::after {
    width: 400px;
    height: 400px;
}

.btn-affiliate-large:active {
    transform: translateY(-1px);
}

.rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: #1F2937;
}

.stars {
    font-weight: 600;
    color: #F59E0B;
}

.reviews {
    color: #6B7280;
}

.chollo-body {
    margin: 2rem 0;
    line-height: 1.8;
    color: #374151;
}

.chollo-body h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #1E40AF;
    font-weight: 700;
}

.chollo-body ul, .chollo-body ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.related-chollos {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid #E5E7EB;
}

.related-chollos h2 {
    margin-bottom: 1.5rem;
    color: #1E40AF;
    font-weight: 700;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #F0FDF4;
    border: 1px solid #86EFAC;
    border-radius: 6px;
    color: #166534;
    font-size: 0.85rem;
    font-weight: 500;
}

.trust-badge::before {
    content: "✓";
    font-weight: 700;
    color: #10B981;
}

/* Responsive */
@media (max-width: 768px) {
    .chollo-card {
        flex-direction: column;
    }
    
    .chollo-image {
        width: 100%;
        height: 200px;
    }
    
    .chollo-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-affiliate {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .logo {
        gap: 0.5rem;
    }
    
    .logo-image {
        height: 36px;
    }
    
    .logo-text {
        font-size: 1.5rem;
    }
    
    .chollo-content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .chollo-image-large {
        height: 300px;
    }
    
    .price-current-large {
        font-size: 2.5rem;
    }
    
    .btn-affiliate {
        padding: 1rem 1.5rem;
        font-size: 1.1rem;
    }
    
    .btn-affiliate-large {
        padding: 1.5rem 2rem;
        font-size: 1.15rem;
    }
}
