/* ============================================================
   LANDING STYLES - VERSIÓN 2.18 (LIMPIADO)
   FECHA: 2026-08-05
   ============================================================
   Este archivo contiene los estilos del layout que NO son de categorías:
   - Variables CSS
   - Reset y estilos base
   - Header y navegación
   - Ticker RSS
   - Slider
   - Accesos dinámicos (carousel)
   - Recomendaciones y productos destacados
   - Anuncios especiales
   - Footer
   - Responsive general
   
   NOTA: Los estilos de categorías ahora están en category_styles.css
   ============================================================ */

/* ============================================================
   VARIABLES CSS PARA MODO OSCURO Y CLARO
   ============================================================ */
:root {
    /* Variables para modo claro (default) */
    --bg-primary: #FEFEFE;
    --bg-secondary: #f5f5f5;
    --bg-card: #FFFFFF;
    --bg-hover: rgba(0, 0, 0, 0.04);
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-tertiary: #888888;
    --border-color: rgba(0, 0, 0, 0.08);
    --shadow-color: rgba(0, 0, 0, 0.04);
    
    /* Variables de color existentes - mantenidas para compatibilidad */
    --color-white: #FEFEFE;
    --color-red: #FE0201;
    --color-black: #000000;
    --color-blue: #0000FF;
    --color-gray-light: #f5f5f5;
    --color-gray: #e0e0e0;
    --color-gray-dark: #666666;
}

/* ============================================================
   RESET Y ESTILOS BASE
   Paleta de colores NoNatty:
   - Rojo: #FE0201 (primario, CTA)
   - Negro: #000000 (textos principales)
   - Azul: #0000FF (acentos, líneas decorativas)
   - Blanco: #FEFEFE (fondos)
   ============================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica World', 'Helvetica', Arial, sans-serif;
    background: #FEFEFE;
    color: #000000;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.text-left { text-align: left; }

.mt-10 { margin-top: 10px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; }
.flex-wrap { flex-wrap: wrap; }
.gap-10 { gap: 10px; }
.gap-20 { gap: 20px; }

/* ============================================================
   HEADER - ESTILO MERCADO LIBRE + IDENTIDAD NONATTY
   ============================================================ */
.header-main {
    background: var(--color-white);
    padding: 12px 20px;
    border-bottom: 3px solid var(--color-blue);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================================
   BRAND - TIPOGRAFÍA ANTON (ROJO)
   ============================================================ */
.brand {
    display: flex;
    align-items: baseline;
    gap: 2px;
    flex-shrink: 0;
}

.brand-name {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-highlight {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: var(--color-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brand-tagline {
    font-family: 'Impact', 'Helvetica World', sans-serif;
    font-size: 14px;
    color: var(--color-gray-dark);
    margin-left: 8px;
    font-weight: 400;
}

/* ============================================================
   SEARCH BAR - ESTILO MODERNO
   ============================================================ */
.search-bar {
    flex: 1;
    display: flex;
    background: var(--color-white);
    border: 2px solid var(--color-gray);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 200px;
}

.search-bar:focus-within {
    border-color: var(--color-blue);
    box-shadow: 0 0 0 3px rgba(0, 0, 255, 0.1);
    transform: scale(1.01);
}

.search-bar input {
    flex: 1;
    border: none;
    padding: 12px 20px;
    font-size: 14px;
    font-family: 'Helvetica World', 'Helvetica', Arial, sans-serif;
    outline: none;
    background: transparent;
    color: var(--color-black);
}

.search-bar input::placeholder {
    color: #888;
}

.search-bar button {
    background: var(--color-red);
    border: none;
    padding: 12px 28px;
    color: var(--color-white);
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.3s ease;
    letter-spacing: 0.5px;
}

.search-bar button:hover {
    background: #cc0000;
}

/* ============================================================
   NAVEGACIÓN - HEADER
   ============================================================ */
.header-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    position: relative;
}

.header-nav a {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-black);
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    font-family: 'Helvetica World', 'Helvetica', Arial, sans-serif;
}

.header-nav a:hover {
    background: rgba(0, 0, 255, 0.05);
    color: var(--color-blue);
}

.header-nav .btn-login {
    background: var(--color-red);
    color: var(--color-white);
    padding: 8px 22px;
    border-radius: 30px;
    font-weight: 600;
    font-family: 'Anton', sans-serif;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.header-nav .btn-login:hover {
    background: #cc0000;
    color: var(--color-white);
    transform: scale(1.02);
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    padding: 2px;
}

.lang-switcher a {
    padding: 4px 12px;
    border-radius: 18px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-black);
    font-family: 'Helvetica World', 'Helvetica', Arial, sans-serif;
    transition: all 0.3s ease;
}

.lang-switcher a.active {
    background: var(--color-blue);
    color: var(--color-white);
}

.lang-switcher a:hover:not(.active) {
    background: rgba(0, 0, 0, 0.08);
}

/* ============================================================
   SUGERENCIAS DE BÚSQUEDA
   ============================================================ */
.suggestions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
    padding: 0 4px;
}

.suggestions a {
    background: rgba(0, 0, 0, 0.04);
    color: var(--color-black);
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    font-family: 'Helvetica World', 'Helvetica', Arial, sans-serif;
}

.suggestions a:hover {
    border-color: var(--color-blue);
    color: var(--color-blue);
}

/* ============================================================
   TICKER RSS (SKEWED) - DINÁMICO DESDE BASE DE DATOS
   ============================================================ */
.ticker-container {
    position: relative;
    background: rgba(0, 0, 0, 0.03);
    border-top: 2px solid var(--color-blue);
    border-bottom: 2px solid var(--color-blue);
    padding: 10px 0;
    margin: 12px 20px 8px;
    overflow: hidden;
    transform: skewX(-4deg);
    transition: transform 0.3s ease;
    border-radius: 4px;
}

/* Permitir pausar la animación al hacer hover */
.ticker-container:hover .ticker-track {
    animation-play-state: paused;
}

/* Preferencia de movimiento reducido */
@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none !important;
    }
    .ticker-item {
        animation: none !important;
    }
}

.ticker-track {
    display: flex;
    animation: ticker-scroll 35s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    color: var(--color-black);
    font-size: 13px;
    padding: 0 25px;
    flex-shrink: 0;
    font-weight: 300;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Helvetica World', 'Helvetica', Arial, sans-serif;
    transition: all 0.3s ease;
}

.ticker-item:hover {
    color: var(--color-blue);
    transform: scale(1.02);
}

.ticker-item .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--color-red);
    border-radius: 50%;
    animation: pulse-dot 1.8s ease-in-out infinite;
}

.ticker-item strong {
    color: var(--color-black);
    font-weight: 700;
    font-size: 14px;
}

.ticker-item .ticker-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 10px;
}

.ticker-item .ticker-link:hover {
    color: var(--color-blue);
}

.ticker-badge-sale {
    background: var(--color-red);
    color: white;
    font-size: 9px;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse-badge 2s ease-in-out infinite;
}

.ticker-badge-purchase {
    background: var(--color-blue);
    color: white;
    font-size: 9px;
    padding: 2px 10px;
    border-radius: 20px;
    font-weight: 700;
    text-transform: uppercase;
    animation: pulse-badge 2s ease-in-out infinite;
}

.ticker-item .ticker-price {
    font-family: 'Anton', sans-serif;
    font-size: 16px;
    color: var(--color-red);
    font-weight: 400;
}

.ticker-item .ticker-stock {
    font-size: 11px;
    color: #888;
}

.ticker-item .ticker-event {
    font-size: 11px;
    color: #666;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.3; transform: scale(0.7); }
}

@keyframes pulse-badge {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* ============================================================
   SLIDER - CORRECCIÓN DE VISIBILIDAD ÚNICA (V2.10.1)
   ============================================================ */
.slider-container {
    overflow: hidden;
    border-radius: 16px;
    position: relative;
    max-width: 1900px;
    margin: 20px auto;
    padding: 0;
    width: 100%;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    width: 100%;
    gap: 0;
}

.slider-slide {
    min-width: 100%;
    flex: 0 0 100%;
    max-width: 100%;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16 / 5;
    background: var(--color-gray-light);
    margin: 0;
    padding: 0;
}

.slider-slide picture,
.slider-slide picture img,
.slider-slide a,
.slider-slide a img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    margin: 0;
    padding: 0;
}

.slider-container * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
    left: 0;
    right: 0;
}

.slider-controls button {
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 20px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    position: relative;
}

.slider-controls button:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--color-gray);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots button.active {
    background: var(--color-blue);
    transform: scale(1.2);
}

.slider-dots button:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .slider-slide {
        aspect-ratio: 16 / 9;
    }
    
    .slider-controls button {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }

    .slider-slide picture,
    .slider-slide picture img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }
}

@media (max-width: 480px) {
    .slider-dots button {
        width: 8px;
        height: 8px;
    }
}

/* ============================================================
   CARRUSEL DE ACCESOS DINÁMICOS (BOOTSTRAP 5)
   ============================================================ */
.dynamic-access-title {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    color: var(--color-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--color-blue);
}

.dynamic-access-carousel {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

.dynamic-access-carousel .card {
    border: 2px solid var(--color-gray);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    background: var(--color-white);
}

.dynamic-access-carousel .card:hover {
    border-color: var(--color-blue);
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.dynamic-access-carousel .card .icon-wrapper {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 0, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.dynamic-access-carousel .card:hover .icon-wrapper {
    background: rgba(0, 0, 255, 0.12);
    transform: scale(1.05);
}

.dynamic-access-carousel .card .icon-wrapper i {
    font-size: 28px;
    color: var(--color-blue);
}

.dynamic-access-carousel .card .card-title {
    font-family: 'Impact', 'Helvetica World', sans-serif;
    font-size: 18px;
    color: var(--color-black);
    margin-bottom: 4px;
}

.dynamic-access-carousel .card .card-text {
    font-size: 13px;
    color: var(--color-gray-dark);
    line-height: 1.4;
}

.dynamic-access-carousel .card .btn-action {
    font-family: 'Anton', sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-blue);
    letter-spacing: 0.5px;
    padding: 6px 16px;
    border-radius: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: transparent;
    cursor: pointer;
}

.dynamic-access-carousel .card .btn-action:hover {
    background: rgba(0, 0, 255, 0.05);
    border-color: var(--color-blue);
}

.dynamic-access-carousel .carousel-control-prev,
.dynamic-access-carousel .carousel-control-next {
    width: 44px;
    height: 44px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.dynamic-access-carousel .carousel-control-prev {
    left: -22px;
}

.dynamic-access-carousel .carousel-control-next {
    right: -22px;
}

.dynamic-access-carousel .carousel-control-prev-icon,
.dynamic-access-carousel .carousel-control-next-icon {
    filter: brightness(0) invert(1);
    width: 20px;
    height: 20px;
}

.dynamic-access-carousel .carousel-control-prev:hover,
.dynamic-access-carousel .carousel-control-next:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.05);
}

.dynamic-access-carousel .carousel-indicators {
    position: static;
    margin-top: 16px;
    gap: 8px;
}

.dynamic-access-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--color-gray);
    opacity: 1;
    margin: 0;
    transition: all 0.3s ease;
}

.dynamic-access-carousel .carousel-indicators button.active {
    background: var(--color-blue);
    transform: scale(1.2);
}

.dynamic-access-carousel .carousel-indicators button:hover {
    transform: scale(1.1);
}

/* ============================================================
   SECCIÓN DE ANUNCIOS ESPECIALES - ESTILO MERCADO LIBRE (VERSIÓN 2.8)
   ============================================================ */
.special-ads-section {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

.special-ads-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.advertising-square {
    display: flex;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    min-height: 200px;
    position: relative;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.advertising-square:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.advertising-square__info {
    flex: 1;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    background: transparent !important;
    z-index: 2;
    min-width: 50%;
}

.advertising-square__info--title {
    font-family: 'Helvetica World', 'Helvetica', Arial, sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}

.advertising-square__info--text {
    font-family: 'Helvetica World', 'Helvetica', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.4;
}

.advertising-square__info--text--bold {
    font-weight: 700;
    font-size: 22px;
    font-family: 'Impact', 'Helvetica World', sans-serif;
}

.andes-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Helvetica World', 'Helvetica', Arial, sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 8px;
    width: fit-content;
    border: none;
    cursor: pointer;
}

.andes-button--small {
    padding: 6px 16px;
    font-size: 12px;
}

.andes-button--loud {
    background: #3483fa;
    color: white;
}

.andes-button--loud:hover {
    background: #2968c8;
    transform: scale(1.02);
}

.andes-button i {
    font-size: 11px;
}

.advertising-square__image {
    flex: 0 0 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 200px;
}

.advertising-square__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.advertising-square:hover .advertising-square__image img {
    transform: scale(1.02);
}

.advertising-square--dark {
    background: #1a1a1a !important;
    border-color: #2a2a2a !important;
}

.advertising-square--dark .advertising-square__info--title {
    color: rgba(255, 255, 255, 0.7) !important;
}

.advertising-square--dark .advertising-square__info--text,
.advertising-square--dark .advertising-square__info--text--bold {
    color: #ffffff !important;
}

.advertising-square--dark:hover {
    border-color: #3483fa !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.advertising-square--dark .advertising-square__image {
    background: #1a1a1a !important;
}

.advertising-square--gray {
    background: #e8e8e8 !important;
    border-color: #d0d0d0 !important;
}

.advertising-square--gray .advertising-square__info--title {
    color: rgba(0, 0, 0, 0.5) !important;
}

.advertising-square--gray .advertising-square__info--text,
.advertising-square--gray .advertising-square__info--text--bold {
    color: #000000 !important;
}

.advertising-square--gray:hover {
    border-color: #3483fa !important;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.advertising-square--gray .advertising-square__image {
    background: #e8e8e8 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-dark {
    color: #000000 !important;
}

/* ============================================================
   RESPONSIVE PARA ANUNCIOS ESPECIALES
   ============================================================ */
@media (max-width: 1024px) {
    .special-ads-container {
        gap: 15px;
    }

    .advertising-square__info--title {
        font-size: 12px;
    }

    .advertising-square__info--text--bold {
        font-size: 18px;
    }

    .advertising-square__info--text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .special-ads-container {
        grid-template-columns: 1fr;
    }

    .advertising-square {
        flex-direction: column-reverse;
        min-height: auto;
    }

    .advertising-square__info {
        padding: 20px;
        min-width: 100%;
    }

    .advertising-square__image {
        flex: 0 0 180px;
        min-height: 180px;
        width: 100%;
    }

    .advertising-square__info--title {
        font-size: 11px;
    }

    .advertising-square__info--text--bold {
        font-size: 16px;
    }

    .advertising-square__info--text {
        font-size: 13px;
    }

    .andes-button {
        font-size: 11px;
        padding: 6px 14px;
    }

    .andes-button--small {
        font-size: 10px;
        padding: 4px 12px;
    }

    .advertising-square--dark .advertising-square__info,
    .advertising-square--gray .advertising-square__info {
        background: transparent !important;
    }

    .advertising-square--dark .advertising-square__image {
        background: #1a1a1a !important;
    }

    .advertising-square--gray .advertising-square__image {
        background: #e8e8e8 !important;
    }
}

@media (max-width: 480px) {
    .advertising-square__info {
        padding: 16px;
    }

    .advertising-square__image {
        flex: 0 0 150px;
        min-height: 150px;
    }

    .advertising-square__info--text--bold {
        font-size: 14px;
    }
}

@media (max-width: 690px) {
    .special-ads-container {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .advertising-square {
        flex-direction: column-reverse;
        border-radius: 10px;
    }

    .advertising-square__info {
        padding: 18px 20px;
        min-width: 100%;
    }

    .advertising-square__image {
        flex: 0 0 160px;
        min-height: 160px;
        width: 100%;
        border-radius: 10px 10px 0 0;
    }

    .advertising-square__image img {
        border-radius: 10px 10px 0 0;
    }

    .advertising-square__info--title {
        font-size: 12px;
    }

    .advertising-square__info--text--bold {
        font-size: 18px;
    }

    .advertising-square__info--text {
        font-size: 14px;
    }

    .andes-button {
        font-size: 12px;
        padding: 6px 16px;
    }
}

/* ============================================================
   CARRUSEL DE RECOMENDACIONES
   ============================================================ */
.recommendations-section {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

.carousel-container {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 0;
}

.carousel-card {
    min-width: 200px;
    max-width: 220px;
    flex: 0 0 auto;
    background: var(--color-white);
    border-radius: 12px;
    padding: 16px;
    border: 2px solid var(--color-gray);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.carousel-card:hover {
    border-color: var(--color-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.carousel-card .image {
    aspect-ratio: 1 / 1;
    background: var(--color-gray-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.carousel-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-card .image .placeholder {
    font-size: 40px;
    color: #ccc;
}

.carousel-card .image .discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #16D034;
    color: #FEFEFE;
    padding: 4px 14px;
    border-radius: 20px;
    font-family: 'Impact', 'Helvetica World', sans-serif;
    font-size: 14pt;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px rgba(22, 208, 52, 0.4);
    z-index: 5;
}

.carousel-card .badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.carousel-card .badge {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    font-family: 'Impact', 'Helvetica World', sans-serif;
}

.badge-sale {
    background: var(--color-red);
    color: var(--color-white);
}

.badge-purchase {
    background: var(--color-blue);
    color: var(--color-white);
}

.badge-stock {
    background: #d4edda;
    color: #155724;
}

.carousel-card .title {
    font-family: 'Impact', 'Helvetica World', sans-serif;
    font-size: 14px;
    color: var(--color-black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.carousel-card .price {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    color: var(--color-red);
}

.carousel-card .price span {
    font-family: 'Helvetica World', 'Helvetica', Arial, sans-serif;
    font-size: 11px;
    color: #999;
}

.carousel-card .price .price-discount {
    font-size: 14px;
    color: #16D034;
    font-weight: 700;
    margin-right: 6px;
}

.carousel-card .price .price-original {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.carousel-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 11px;
    color: var(--color-gray-dark);
    border-top: 1px solid var(--color-gray);
    padding-top: 8px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.carousel-controls button {
    background: var(--color-white);
    border: 2px solid var(--color-blue);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--color-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-controls button:hover {
    background: var(--color-blue);
    color: var(--color-white);
    transform: scale(1.05);
}

.carousel-controls button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
   PRODUCTOS DESTACADOS (GRID PRINCIPAL)
   ============================================================ */
.products-section {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
}

.product-card {
    background: var(--color-white);
    border-radius: 12px;
    padding: 16px;
    border: 2px solid var(--color-gray);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card:hover {
    border-color: var(--color-blue);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.product-card .image {
    aspect-ratio: 1 / 1;
    background: var(--color-gray-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-card .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card .image .placeholder {
    font-size: 40px;
    color: #ccc;
}

.product-card .image .discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #16D034;
    color: #FEFEFE;
    padding: 4px 14px;
    border-radius: 20px;
    font-family: 'Impact', 'Helvetica World', sans-serif;
    font-size: 14pt;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 12px rgba(22, 208, 52, 0.4);
    z-index: 5;
}

.product-card .badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.product-card .badge {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    font-family: 'Impact', 'Helvetica World', sans-serif;
}

.product-card .title {
    font-family: 'Impact', 'Helvetica World', sans-serif;
    font-size: 16px;
    color: var(--color-black);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3;
}

.product-card .price {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: var(--color-red);
}

.product-card .price span {
    font-family: 'Helvetica World', 'Helvetica', Arial, sans-serif;
    font-size: 12px;
    color: #999;
}

.product-card .price .price-discount {
    font-size: 18px;
    color: #16D034;
    font-weight: 700;
    margin-right: 6px;
}

.product-card .price .price-original {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.product-card .meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--color-gray-dark);
    border-top: 1px solid var(--color-gray);
    padding-top: 8px;
}

.product-card .btn-view {
    background: var(--color-blue);
    color: var(--color-white);
    padding: 6px 18px;
    border-radius: 30px;
    font-family: 'Anton', sans-serif;
    font-size: 13px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.product-card .btn-view:hover {
    background: #0000cc;
    transform: scale(1.02);
}

/* ============================================================
   EMPTY STATE
   ============================================================ */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--color-white);
    border-radius: 16px;
    grid-column: 1 / -1;
    border: 2px solid var(--color-gray);
}

.empty-state i {
    font-size: 4rem;
    color: var(--color-gray);
    margin-bottom: 16px;
}

.empty-state h3 {
    font-family: 'Anton', sans-serif;
    font-size: 32px;
    color: var(--color-red);
    margin-bottom: 8px;
}

.empty-state p {
    color: var(--color-gray-dark);
    max-width: 400px;
    margin: 0 auto;
    font-family: 'Helvetica World', 'Helvetica', Arial, sans-serif;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-black);
    color: rgba(255, 255, 255, 0.5);
    padding: 30px 20px;
    text-align: center;
    margin-top: 40px;
    font-size: 13px;
    font-family: 'Helvetica World', 'Helvetica', Arial, sans-serif;
}

.footer .brand-footer {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    color: var(--color-red);
}

.footer .powered {
    margin-top: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
}

.footer .powered strong {
    color: var(--color-blue);
}

.footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.footer a:hover {
    color: var(--color-white);
}

/* ============================================================
   RESPONSIVE GENERAL
   ============================================================ */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .carousel-card {
        min-width: 170px;
    }

    .dynamic-access-carousel .carousel-control-prev {
        left: -12px;
    }

    .dynamic-access-carousel .carousel-control-next {
        right: -12px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .brand {
        justify-content: center;
    }

    .brand-name, .brand-highlight {
        font-size: 26px;
    }

    .brand-tagline {
        font-size: 12px;
        display: block;
        text-align: center;
        margin-left: 0;
    }

    .search-bar {
        min-width: unset;
    }

    .search-bar button {
        padding: 10px 16px;
        font-size: 14px;
    }

    .header-nav {
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-nav a {
        font-size: 12px;
        padding: 4px 10px;
    }

    .dynamic-access-carousel .carousel-control-prev,
    .dynamic-access-carousel .carousel-control-next {
        width: 34px;
        height: 34px;
    }

    .dynamic-access-carousel .carousel-control-prev {
        left: -8px;
    }

    .dynamic-access-carousel .carousel-control-next {
        right: -8px;
    }

    .dynamic-access-carousel .carousel-control-prev-icon,
    .dynamic-access-carousel .carousel-control-next-icon {
        width: 16px;
        height: 16px;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .product-card {
        padding: 12px;
    }

    .product-card .title {
        font-size: 13px;
    }

    .product-card .price {
        font-size: 18px;
    }

    .carousel-card {
        min-width: 140px;
        padding: 12px;
    }

    .carousel-card .title {
        font-size: 12px;
    }

    .carousel-card .price {
        font-size: 16px;
    }

    .carousel-controls button {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }

    .dynamic-access-title {
        font-size: 22px;
    }

    .ticker-container {
        transform: skewX(-2deg);
        padding: 8px 0;
        margin: 8px 10px;
    }

    .ticker-item {
        font-size: 11px;
        padding: 0 15px;
        gap: 6px;
    }

    .ticker-item strong {
        font-size: 12px;
    }

    .ticker-item .ticker-price {
        font-size: 13px;
    }

    .ticker-badge-sale,
    .ticker-badge-purchase {
        font-size: 7px;
        padding: 1px 6px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .product-card .meta {
        flex-direction: column;
        gap: 6px;
        align-items: stretch;
    }

    .product-card .btn-view {
        width: 100%;
        text-align: center;
    }

    .dynamic-access-carousel .carousel-control-prev,
    .dynamic-access-carousel .carousel-control-next {
        display: none;
    }
}
/* ============================================================
   CARRUSELES CON ESTILO SEARCH RESULTS - VERSIÓN 2.23
   ============================================================
   Estilos inspirados en search_results_styles.css para los carruseles
   "Inspirado en lo último que viste" y "También puede interesarte"
   ============================================================ */

/* ============================================================
   SECCIÓN DE CARRUSEL ESTILO SEARCH
   ============================================================ */
.search-style-section {
    max-width: 1400px;
    margin: 30px auto;
    padding: 0 20px;
}

.search-style-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--sr-color-border, #E5E7EB);
}

.search-style-section .section-header h2 {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--sr-color-text, #1A1A1A);
    letter-spacing: 0.5px;
    margin: 0;
}

.search-style-section .section-header h2 i {
    color: var(--sr-color-primary, #0000FF);
    margin-right: 10px;
}

.search-style-section .section-header a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--sr-color-primary, #0000FF);
    text-decoration: none;
    transition: all var(--sr-transition, 0.3s ease);
}

.search-style-section .section-header a:hover {
    color: var(--sr-color-primary-hover, #0000CC);
    text-decoration: underline;
}

/* ============================================================
   CONTENEDOR DEL CARRUSEL ESTILO SEARCH
   ============================================================ */
.search-carousel-container {
    position: relative;
    overflow: hidden;
}

.search-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 4px 0;
}

/* ============================================================
   TARJETA ESTILO SEARCH
   ============================================================ */
.search-card {
    min-width: 220px;
    max-width: 240px;
    flex: 0 0 auto;
    background: var(--sr-color-bg, #FEFEFE);
    border: 1px solid var(--sr-color-border, #E5E7EB);
    border-radius: var(--sr-radius, 12px);
    overflow: hidden;
    transition: all var(--sr-transition, 0.3s cubic-bezier(0.4, 0, 0.2, 1));
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px) scale(0.98);
    animation: searchCardFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Animación escalonada para cada tarjeta */
.search-card:nth-child(1) { animation-delay: 0.05s; }
.search-card:nth-child(2) { animation-delay: 0.10s; }
.search-card:nth-child(3) { animation-delay: 0.15s; }
.search-card:nth-child(4) { animation-delay: 0.20s; }
.search-card:nth-child(5) { animation-delay: 0.25s; }
.search-card:nth-child(6) { animation-delay: 0.30s; }
.search-card:nth-child(7) { animation-delay: 0.35s; }
.search-card:nth-child(8) { animation-delay: 0.40s; }
.search-card:nth-child(9) { animation-delay: 0.45s; }
.search-card:nth-child(10) { animation-delay: 0.50s; }

@keyframes searchCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.search-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-color: var(--sr-color-primary, #0000FF);
}

/* ============================================================
   IMAGEN DE LA TARJETA ESTILO SEARCH
   ============================================================ */
.search-card-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background: var(--sr-color-bg-alt, #F3F4F6);
    overflow: hidden;
}

.search-card-image-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-card-image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--sr-transition, 0.3s ease);
}

.search-card:hover .search-card-image-inner img {
    transform: scale(1.05);
}

.search-card-image .placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: var(--sr-color-text-muted, #9CA3AF);
    background: var(--sr-color-bg-alt, #F3F4F6);
}

/* Badges en la imagen */
.search-card-image .discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--sr-color-success, #16D034);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(22, 208, 52, 0.3);
    z-index: 2;
}

.search-card-image .stock-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    z-index: 2;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.search-card-image .stock-badge--in {
    background: rgba(22, 208, 52, 0.9);
    color: #fff;
}

.search-card-image .stock-badge--out {
    background: rgba(255, 0, 0, 0.9);
    color: #fff;
}

.search-card-image .stock-badge i {
    margin-right: 4px;
}

/* ============================================================
   CONTENIDO DE LA TARJETA ESTILO SEARCH
   ============================================================ */
.search-card-content {
    padding: 14px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.search-card-title {
    font-family: 'Impact', 'Helvetica World', sans-serif;
    font-size: 15px;
    font-weight: 400;
    margin: 0;
    line-height: 1.3;
    color: var(--sr-color-text, #1A1A1A);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-card-meta-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 8px;
}

.search-card-meta-badges .badge {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    font-family: 'Impact', 'Helvetica World', sans-serif;
}

.search-card-meta-badges .badge--sale {
    background: var(--sr-color-secondary, #FE0201);
    color: #fff;
}

.search-card-meta-badges .badge--purchase {
    background: var(--sr-color-primary, #0000FF);
    color: #fff;
}

.search-card-meta-badges .badge--stock {
    background: #d4edda;
    color: #155724;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.search-card-price {
    margin-top: 2px;
}

.search-card-price .price-discount {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    color: var(--sr-color-success, #16D034);
}

.search-card-price .price-original {
    font-size: 13px;
    color: var(--sr-color-text-muted, #9CA3AF);
    text-decoration: line-through;
    margin-left: 8px;
}

.search-card-price .price-normal {
    font-family: 'Anton', sans-serif;
    font-size: 20px;
    color: var(--sr-color-secondary, #FE0201);
}

.search-card-price .currency {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--sr-color-text-muted, #9CA3AF);
    margin-left: 2px;
}

.search-card-event {
    font-size: 11px;
    color: var(--sr-color-text-muted, #9CA3AF);
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-card-event i {
    font-size: 10px;
}

/* ============================================================
   ACCIONES DE LA TARJETA ESTILO SEARCH
   ============================================================ */
.search-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--sr-color-border, #E5E7EB);
}

.search-card-actions .btn-view {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: 2px solid var(--sr-color-border, #E5E7EB);
    border-radius: var(--sr-radius-sm, 8px);
    background: transparent;
    color: var(--sr-color-text, #1A1A1A);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all var(--sr-transition, 0.3s ease);
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.search-card-actions .btn-view:hover {
    border-color: var(--sr-color-primary, #0000FF);
    color: var(--sr-color-primary, #0000FF);
}

.search-card-actions .btn-add {
    flex: 1.5;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 12px;
    border: none;
    border-radius: var(--sr-radius-sm, 8px);
    background: var(--sr-color-primary, #0000FF);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--sr-transition, 0.3s ease);
    font-family: 'Inter', sans-serif;
}

.search-card-actions .btn-add:hover {
    background: var(--sr-color-primary-hover, #0000CC);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.search-card-actions .btn-add i {
    font-size: 11px;
}

/* ============================================================
   CONTROLES DEL CARRUSEL ESTILO SEARCH
   ============================================================ */
.search-carousel-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.search-carousel-controls button {
    background: var(--sr-color-bg, #FEFEFE);
    border: 2px solid var(--sr-color-border, #E5E7EB);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: all var(--sr-transition, 0.3s ease);
    color: var(--sr-color-text, #1A1A1A);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-carousel-controls button:hover {
    border-color: var(--sr-color-primary, #0000FF);
    color: var(--sr-color-primary, #0000FF);
    transform: scale(1.05);
}

.search-carousel-controls button:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .search-card {
        min-width: 180px;
        max-width: 200px;
    }
}

@media (max-width: 768px) {
    .search-style-section .section-header h2 {
        font-size: 22px;
    }
    
    .search-style-section .section-header a {
        font-size: 12px;
    }
    
    .search-card {
        min-width: 150px;
        max-width: 170px;
    }
    
    .search-card-content {
        padding: 10px 12px;
    }
    
    .search-card-title {
        font-size: 13px;
    }
    
    .search-card-price .price-discount,
    .search-card-price .price-normal {
        font-size: 17px;
    }
    
    .search-card-actions {
        flex-direction: column;
    }
    
    .search-card-actions .btn-view,
    .search-card-actions .btn-add {
        width: 100%;
        justify-content: center;
    }
    
    .search-carousel-controls button {
        width: 34px;
        height: 34px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .search-card {
        min-width: 130px;
        max-width: 150px;
    }
    
    .search-card-content {
        padding: 8px 10px;
    }
    
    .search-card-title {
        font-size: 11px;
    }
    
    .search-card-price .price-discount,
    .search-card-price .price-normal {
        font-size: 14px;
    }
    
    .search-card-price .price-original {
        font-size: 11px;
    }
}
/* ============================================================
   SECTION HEADER PARA ANUNCIOS ESPECIALES - VERSIÓN 2.23
   ============================================================ */
.section-header--ads {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 2px solid var(--color-blue);
    margin-bottom: 24px;
    position: relative;
}

.section-header--ads::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--color-blue);
    border-radius: 2px;
}

.section-header__left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.section-header__badge {
    font-family: 'Inter', 'Helvetica World', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 4px 12px;
    border-radius: 20px;
    background: var(--color-blue);
    color: #FEFEFE;
    white-space: nowrap;
}

.section-header--ads h2 {
    font-family: 'Anton', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: var(--color-black);
    margin: 0;
    letter-spacing: 0.5px;
}

.section-header__link {
    font-family: 'Inter', 'Helvetica World', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 8px;
}

.section-header__link:hover {
    background: rgba(0, 0, 255, 0.06);
    color: var(--color-blue);
    transform: translateX(2px);
}

.section-header__link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.section-header__link:hover i {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
    .section-header--ads {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .section-header__left {
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .section-header--ads h2 {
        font-size: 22px;
    }
    
    .section-header__badge {
        font-size: 9px;
        padding: 2px 10px;
    }
    
    .section-header__link {
        font-size: 13px;
        padding: 4px 8px;
    }
}