/* CSS específico para páginas de News - TechPix */
/* Diseño moderno y amplio para artículos de noticias */

/* Variables CSS para consistencia */
:root {
    --news-primary: #ff9900;
    --news-secondary: #ffad33;
    --news-accent: #e68a00;
    --news-text-primary: #1a1a1a;
    --news-text-secondary: #666;
    --news-text-muted: #999;
    --news-bg-primary: #ffffff;
    --news-bg-secondary: #f8f8f8;
    --news-bg-gradient: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    --news-border: #e5e5e5;
    --news-shadow: rgba(0,0,0,0.08);
    --news-shadow-hover: rgba(0,0,0,0.12);
    --news-shadow-accent: rgba(255, 153, 0, 0.3);
    --news-radius-sm: 12px;
    --news-radius-md: 16px;
    --news-radius-lg: 20px;
    --news-radius-xl: 24px;
}

/* Reset y base para páginas de news */
.news-page body {
    background: #f5f5f5;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.7;
    color: #1e293b;
    margin: 0;
    padding: 0;
}

/* Contenedor principal del artículo */
.article-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    background: var(--news-bg-primary);
    border-radius: var(--news-radius-xl);
    box-shadow: 0 20px 60px var(--news-shadow);
    margin-top: 40px;
    margin-bottom: 40px;
}

/* Enlace volver a news */
.back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--news-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 50px;
    padding: 12px 20px;
    background: rgba(255, 107, 0, 0.05);
    border-radius: var(--news-radius-md);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.back-to-news:hover {
    background: rgba(255, 107, 0, 0.1);
    transform: translateX(-4px);
    color: var(--news-accent);
    gap: 16px;
}

/* Header del artículo */
.article-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.article-header::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--news-primary) 0%, var(--news-secondary) 50%, var(--news-primary) 100%);
    border-radius: 2px;
}

.article-title {
    font-size: 56px;
    font-weight: 800;
    color: var(--news-text-primary);
    margin: 0 0 30px 0;
    line-height: 1.1;
}

.article-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 40px;
    font-size: 18px;
    color: var(--news-text-muted);
    flex-wrap: wrap;
}

.article-date {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--news-bg-secondary);
    padding: 12px 20px;
    border-radius: var(--news-radius-lg);
    border: 1px solid var(--news-border);
}

.article-date svg {
    color: var(--news-primary);
}

.article-category {
    background: linear-gradient(135deg, var(--news-primary) 0%, var(--news-secondary) 100%);
    color: white;
    padding: 12px 24px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px var(--news-shadow-accent);
    transition: transform 0.2s ease;
}

.article-category:hover {
    transform: translateY(-2px);
}

/* Imagen destacada */
.article-featured-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--news-radius-lg);
    margin-bottom: 60px;
    box-shadow: 0 20px 40px var(--news-shadow-hover);
    border: 2px solid rgba(255,255,255,0.8);
    transition: transform 0.3s ease;
}

.article-featured-image:hover {
    transform: scale(1.02);
}

/* Contenido del artículo */
.article-content {
    font-size: 20px;
    line-height: 1.8;
    color: var(--news-text-secondary);
    max-width: none;
}

.article-content p {
    margin-bottom: 32px;
    font-size: 20px;
    color: var(--news-text-secondary);
}

.article-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--news-text-primary);
    margin: 80px 0 40px 0;
    padding: 20px 0;
}

.article-content h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1e293b;
    margin: 60px 0 24px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.article-content h3::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('../icons/bombilla2.png');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    vertical-align: middle;
}

/* Listas */
.article-content ul, .article-content ol {
    margin-bottom: 32px;
    padding-left: 40px;
    background: var(--news-bg-secondary);
    padding: 32px 40px;
    border-radius: var(--news-radius-lg);
    border-left: 4px solid var(--news-primary);
}

.article-content li {
    margin-bottom: 16px;
    font-size: 18px;
    color: var(--news-text-secondary);
    position: relative;
}

.article-content li::marker {
    color: var(--news-primary);
    font-weight: bold;
}

/* Cajas destacadas */
.highlight-box {
    background: #fff8f0;
    border: 2px solid var(--news-primary);
    border-radius: var(--news-radius-lg);
    padding: 40px;
    margin: 50px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 153, 0, 0.1);
}

.highlight-box h3 {
    color: var(--news-accent);
    margin-top: 0;
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Grid de productos */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    margin: 50px 0;
}

/* Estilos para productos que no usan componentes ProductCard */
.product-grid .product-card {
    background: linear-gradient(135deg, var(--news-bg-primary) 0%, var(--news-bg-secondary) 100%);
    border-radius: var(--news-radius-lg);
    padding: 32px;
    box-shadow: 0 8px 25px var(--news-shadow);
    border: 1px solid var(--news-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.product-grid .product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--news-primary) 0%, var(--news-secondary) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-grid .product-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px var(--news-shadow-hover);
}

.product-grid .product-card:hover::before {
    transform: scaleX(1);
}

.product-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--news-text-primary);
    margin-bottom: 16px;
    line-height: 1.3;
}

.product-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--news-primary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-old-price {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 500;
}

.product-discount {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.3);
}

.product-grid .product-card p {
    color: var(--news-text-muted);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--news-primary) 0%, var(--news-secondary) 100%);
    color: white;
    padding: 16px 32px;
    border-radius: var(--news-radius-md);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px var(--news-shadow-accent);
    width: 100%;
    gap: 8px;
}

.product-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
    background: linear-gradient(135deg, var(--news-accent) 0%, #e68a00 100%);
}

.product-link::after {
    content: '→';
    transition: transform 0.2s ease;
}

.product-link:hover::after {
    transform: translateX(4px);
}

/* Botón Consultar Precio */
.product-price-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
    padding: 14px 50px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
    letter-spacing: 0.5px;
    position: relative;
    overflow: visible;
    border: none;
    width: auto;
    max-width: 420px;
    text-transform: none;
}

.product-price-btn:hover {
    background: linear-gradient(90deg, #e6683c 0%, #dc2743 25%, #cc2366 50%, #bc1888 75%, #b11e8a 100%);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.5);
    color: white !important;
}

.product-price-btn:active {
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(225, 48, 108, 0.4);
    color: white !important;
}

.product-price-btn:visited {
    color: white !important;
}

.product-price-btn:focus {
    color: white !important;
    outline: none;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 1200px) {
    .article-container {
        max-width: 1000px;
        padding: 40px 30px;
    }

    .article-title {
        font-size: 48px;
    }

    .article-content h2 {
        font-size: 36px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .article-container {
        max-width: 100%;
        padding: 24px 20px;
        margin: 20px;
        border-radius: var(--news-radius-lg);
    }

    .article-title {
        font-size: 36px;
    }

    .article-meta {
        flex-direction: column;
        gap: 16px;
    }

    .article-meta .article-date,
    .article-meta .article-category {
        font-size: 16px;
    }

    .article-featured-image {
        height: 300px;
    }

    .article-content {
        font-size: 18px;
    }

    .article-content h2 {
        font-size: 28px;
        margin: 50px 0 30px 0;
    }

    .article-content h3 {
        font-size: 24px;
    }

    .article-content p {
        font-size: 18px;
    }

    .highlight-box {
        padding: 24px;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 24px;
    }

    .product-grid .product-card {
        padding: 24px;
    }

    .product-name {
        font-size: 20px;
    }

    .product-price {
        font-size: 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .article-container {
        padding: 20px 16px;
        margin: 10px;
    }

    .article-title {
        font-size: 28px;
    }

    .article-content h2 {
        font-size: 24px;
    }

    .article-content h3 {
        font-size: 20px;
    }

    .back-to-news {
        font-size: 14px;
        padding: 10px 16px;
    }
}

/* Animaciones sutiles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.article-content > * {
    animation: fadeInUp 0.6s ease-out;
}

.article-content > *:nth-child(1) { animation-delay: 0.1s; }
.article-content > *:nth-child(2) { animation-delay: 0.2s; }
.article-content > *:nth-child(3) { animation-delay: 0.3s; }
.article-content > *:nth-child(4) { animation-delay: 0.4s; }
.article-content > *:nth-child(5) { animation-delay: 0.5s; }

/* ===== ESTILOS PARA EL INDEX DE NEWS ===== */
/* Diseño compacto y moderno */

/* Breadcrumbs */
.breadcrumb {
    margin-bottom: 15px;
    padding: 12px 16px;
    background: #14191f;
    border-radius: var(--news-radius-sm);
    border: 1px solid var(--news-border);
}

.breadcrumb-container {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #ffffff;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.breadcrumb a:hover {
    color: var(--news-primary);
}

.breadcrumb-separator {
    color: #cccccc;
    font-weight: 300;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 600;
}

.breadcrumb-item {
    color: #ffffff;
    font-weight: 400;
}

/* Breadcrumb secundario - REMOVED */
/* .breadcrumb-secondary {
    margin-bottom: 15px;
    padding: 6px 12px;
    background: rgba(255, 107, 0, 0.05);
    border-radius: var(--news-radius-sm);
    border: 1px solid rgba(255, 107, 0, 0.1);
}

.breadcrumb-secondary .breadcrumb-container {
    font-size: 12px;
    justify-content: center;
}

.breadcrumb-secondary .breadcrumb-current {
    color: var(--news-primary);
    font-weight: 600;
} */

/* Contenedor principal del index */
.news-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 12px;
    min-height: calc(100vh - 180px);
}

/* Header compacto */
.news-header {
    text-align: center;
    margin-bottom: 20px;
    padding: 10px 0;
}

.news-header h1 {
    font-size: 28px;
    font-weight: 700;
    color: var(--news-text-primary);
    margin: 0 0 8px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.news-header h1 img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

.news-header p {
    font-size: 14px;
    color: var(--news-text-secondary);
    margin: 0;
    font-weight: 400;
}

/* Filtros de categoría - Submenu */
.news-categories {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 25px;
    padding: 12px 16px;
    background: #14191f;
    border-radius: var(--news-radius-sm);
    border: 1px solid var(--news-border);
    flex-wrap: wrap;
}

.category-filter {
    padding: 6px 14px;
    background: var(--news-bg-secondary);
    border: 1px solid var(--news-border);
    border-radius: 18px;
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: capitalize;
    text-decoration: none;
    display: inline-block;
}

.category-filter:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-1px);
}

.category-filter.active {
    background: var(--news-primary);
    color: white;
    border-color: var(--news-primary);
    box-shadow: 0 2px 8px var(--news-shadow-accent);
}

/* Grid de artículos compacto */
.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

/* Tarjetas de artículos */
.news-card {
    background: var(--news-bg-secondary);
    border-radius: var(--news-radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--news-border);
    box-shadow: 0 2px 8px var(--news-shadow);
}

.news-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--news-shadow-hover);
}

/* Imagen de artículo */
.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.news-card:hover .news-image {
    transform: scale(1.02);
}

/* Contenido de la tarjeta */
.news-content {
    padding: 15px;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 12px;
}

.news-date {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--news-text-muted);
}

.news-category {
    background: var(--news-primary);
    color: white;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--news-text-primary);
    margin: 0 0 8px 0;
    line-height: 1.3;
}

.news-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-title a:hover {
    color: var(--news-primary);
}

.news-excerpt {
    color: var(--news-text-secondary);
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 12px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--news-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    transition: all 0.2s ease;
}

.news-read-more:hover {
    color: var(--news-accent);
    gap: 10px;
}

/* Artículo destacado - mismos estilos que .news-card */

.news-featured .news-image {
    height: 200px;
}

.news-featured .news-content {
    padding: 15px;
}

.news-featured .news-title {
    font-size: 16px;
    margin-bottom: 8px;
}

.news-featured .news-excerpt {
    -webkit-line-clamp: 2;
    line-clamp: 2;
    margin-bottom: 12px;
}

/* Paginación compacta */
.news-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
    padding: 15px 0;
}

.pagination-btn {
    padding: 8px 12px;
    background: var(--news-bg-secondary);
    border: 1px solid var(--news-border);
    border-radius: var(--news-radius-sm);
    color: var(--news-text-secondary);
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 35px;
}

.pagination-btn:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--news-primary);
    border-color: var(--news-primary);
}

.pagination-btn.active {
    background: var(--news-primary);
    color: white;
    border-color: var(--news-primary);
}

/* Responsive design compacto */
@media (max-width: 768px) {
    .news-container {
        padding: 15px 12px;
    }

    .breadcrumb {
        padding: 10px 12px;
        margin-bottom: 15px;
    }

    .breadcrumb-container {
        font-size: 12px;
        gap: 6px;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .news-header h1 {
        font-size: 24px;
    }

    .news-header p {
        font-size: 14px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Artículo destacado - mismos estilos que .news-card */

    .news-featured .news-image {
        height: 180px;
    }

    .news-featured .news-title {
        font-size: 16px;
    }

    .news-featured .news-content {
        padding: 15px;
    }
}

@media (min-width: 1024px) {
    .news-container {
        padding: 30px 25px;
    }

    .news-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }

    .news-featured .news-image {
        height: 200px;
    }
}

/* Header simple para artículos */
.article-header-simple {
    margin-bottom: 30px;
    text-align: left;
}

.article-header-simple h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--news-text-primary);
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.article-meta-simple {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
    color: var(--news-text-muted);
}

.article-date-simple {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-date-simple::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='currentColor'%3E%3Crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3E%3Cline x1='16' y1='2' x2='16' y2='6'/%3E%3Cline x1='8' y1='2' x2='8' y2='6'/%3E%3Cline x1='3' y1='10' x2='21' y2='10'/%3E%3C/svg%3E");
    background-size: contain;
    opacity: 0.7;
}

.article-category-simple {
    background: var(--news-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.5px;
}

/* Botón de oferta */
.btn-wrapper {
    margin-top: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-container {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.btn-oferta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
    color: white !important;
    padding: 14px 50px;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 20px;
    box-shadow: 0 5px 15px rgba(225, 48, 108, 0.4);
    letter-spacing: 0.5px;
    position: relative;
}

.btn-oferta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(225, 48, 108, 0.5);
}

/* Animación de corazones voladores saliendo del botón */
.hearts-flying {
    position: absolute;
    top: 0;
    right: 10px;
    width: 60px;
    height: 40px;
    pointer-events: none;
    z-index: 10;
}

.flying-heart {
    position: absolute;
    font-size: 1.5rem;
    color: #ff9900;
    animation: fly-out-right 2s ease-out infinite;
    opacity: 0;
    top: 0;
    right: 0;
}

.flying-heart:nth-child(1) { animation-delay: 0s; }
.flying-heart:nth-child(2) { animation-delay: 0.3s; }
.flying-heart:nth-child(3) { animation-delay: 0.6s; }
.flying-heart:nth-child(4) { animation-delay: 0.9s; }
.flying-heart:nth-child(5) { animation-delay: 1.2s; }

@keyframes fly-out-right {
    0% {
        transform: translate(0, 0) scale(0.8) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: translate(30px, -40px) scale(1.2) rotate(15deg);
        opacity: 0.8;
    }
    100% {
        transform: translate(50px, -70px) scale(0.5) rotate(30deg);
        opacity: 0;
    }
}

/* Sección de producto con imagen y texto */
.product-section {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin: 32px 0;
    background: var(--news-bg-secondary);
    padding: 24px;
    border-radius: var(--news-radius-lg);
    border: 1px solid var(--news-border);
    box-shadow: 0 4px 12px var(--news-shadow);
}

.product-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    border-radius: var(--news-radius-md);
    flex-shrink: 0;
    box-shadow: 0 4px 12px var(--news-shadow);
    transition: transform 0.3s ease;
    background: white;
}

.product-image:hover {
    transform: scale(1.05);
}

.product-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-text p {
    margin: 0;
    font-size: 18px;
    line-height: 1.6;
    color: var(--news-text-secondary);
}

/* Responsive para product-section */
@media (max-width: 768px) {
    .product-section {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
    }

    .product-image {
        width: 100%;
        height: 180px;
        align-self: center;
    }

    .product-text {
        gap: 12px;
    }

    .product-text p {
        font-size: 16px;
    }
}

/* ===== ESTILOS PARA COMPARTIR SOCIAL ===== */
.share-section {
    margin-top: 40px;
    padding: 32px;
    background: var(--news-bg-secondary);
    border-radius: var(--news-radius-lg);
    border: 1px solid var(--news-border);
    text-align: center;
}

.share-section h3 {
    margin: 0 0 24px 0;
    font-size: 24px;
    font-weight: 700;
    color: var(--news-text-primary);
}

.compartir-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.btn-share::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-share:hover::before {
    transform: translateX(100%);
}

.btn-share:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* Facebook */
.btn-facebook {
    background: #1877f2;
    color: white;
}

.btn-facebook:hover {
    background: #166fe5;
}

/* Twitter */
.btn-twitter {
    background: #1da1f2;
    color: white;
}

.btn-twitter:hover {
    background: #1a91da;
}

/* WhatsApp */
.btn-whatsapp {
    background: #25d366;
    color: white;
}

.btn-whatsapp:hover {
    background: #22c55e;
}

/* Telegram */
.btn-telegram {
    background: #0088cc;
    color: white;
}

.btn-telegram:hover {
    background: #0077b5;
}

/* Signal */
.btn-signal {
    background: #3a76f0;
    color: white;
}

.btn-signal:hover {
    background: #2e5fca;
}

.btn-share svg {
    z-index: 1;
    position: relative;
}

/* Responsive para compartir */
@media (max-width: 768px) {
    .share-section {
        padding: 24px 16px;
    }

    .share-section h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .compartir-social {
        gap: 12px;
    }

    .btn-share {
        width: 44px;
        height: 44px;
    }

    .btn-share svg {
        width: 18px;
        height: 18px;
    }
}

/* ===== ESTILOS PARA ÍNDICE DE CONTENIDOS ===== */
.article-index {
    background: var(--news-bg-secondary);
    border-radius: var(--news-radius-lg);
    padding: 0;
    margin: 20px 0;
    border: 1px solid var(--news-border);
    box-shadow: 0 4px 12px var(--news-shadow);
    overflow: hidden;
}

.index-toggle {
    width: 100%;
    background: linear-gradient(135deg, var(--news-primary), var(--news-secondary));
    color: white;
    border: none;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    text-align: left;
}

.index-toggle:hover {
    background: linear-gradient(135deg, var(--news-accent), var(--news-primary));
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 0, 0.3);
}

.toggle-text {
    flex: 1;
}

.toggle-icon {
    transition: transform 0.3s ease;
    margin-left: 12px;
}

.index-content {
    padding: 24px;
    background: white;
    border-top: 1px solid var(--news-border);
}

.index-content h3 {
    color: var(--news-text-primary);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--news-primary);
}

.article-index ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.article-index li {
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.article-index li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.article-index a {
    color: var(--news-text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
    padding: 4px 0;
}

.article-index a:hover {
    color: var(--news-primary);
    padding-left: 8px;
    font-weight: 600;
}

/* Responsive para índice */
@media (max-width: 768px) {
    .article-index {
        margin: 15px 0;
    }

    .index-toggle {
        padding: 14px 20px;
        font-size: 15px;
    }

    .index-content {
        padding: 20px 16px;
    }

    .index-content h3 {
        font-size: 18px;
    }

    .article-index a {
        font-size: 14px;
    }
}