@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    /* Sistema de colores */
    --bg-color: #fafafa;
    --card-bg: #ffffff;
    --text-color: #111111;
    --text-muted: #666666;
    --accent-color: #ff4a00; /* Naranja de carreras clásico */
    --accent-color-hover: #cc3b00;
    --border-color: #111111;
    --border-soft: #e5e5e5;
    
    /* Tipografía */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Space Grotesk', sans-serif;
    
    /* Layout */
    --max-width: 1400px;
    --gutter: 2rem;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset de estilos */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Tipografía global */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Contenedor principal */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gutter);
}

/* Header & Navegación (Estilo Editorial) */
.header-nav {
    border-bottom: 1px solid var(--border-soft);
    position: sticky;
    top: 0;
    background-color: rgba(250, 250, 250, 0.85);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
}

.logo span {
    color: var(--accent-color);
    margin-left: 2px;
}

/* Botón de Menú Móvil (Oculto en Desktop) */
.mobile-menu-btn {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
}

.nav-links a {
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Selector de Idioma Premium */
.lang-selector {
    display: flex;
    border: 1px solid var(--border-color);
    padding: 2px;
    font-size: 0.75rem;
    font-weight: 700;
}

.lang-btn {
    border: none;
    background: none;
    padding: 4px 8px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    transition: var(--transition);
}

.lang-btn.active {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Barra de Anuncios */
.announcement-bar {
    background-color: #000000;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: center;
    padding: 0.6rem 0;
    font-family: var(--font-body);
    width: 100%;
}

/* Slider Editorial Section (Inspirado en Type 7) */
.slider-section {
    padding: 0;
}

.slider-container {
    position: relative;
    max-width: none;
    margin: 0;
    width: 100%;
    height: 90vh;
    overflow: hidden;
    background-color: #000000;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.slide-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 2;
}

.slide-content {
    position: absolute;
    width: 80%;
    max-width: 800px;
    text-align: center;
    color: #ffffff;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-bottom: 2rem;
}

.slide-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.05;
}

.slide-desc {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 600px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.8rem;
    z-index: 10;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: #ffffff;
    transform: scale(1.2);
}

/* Secciones de la Web */
.hero-section {
    padding: 5rem 0 3rem;
    text-align: center;
    border-bottom: 1px solid var(--border-soft);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-muted);
    font-weight: 400;
}

/* Grilla Editorial estilo Revista / Type 7 */
.editorial-section {
    padding: 4rem 0;
}

.section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.editorial-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--gutter);
}

/* Cards editoriales asimétricas (Estilo Type 7 Split Horizontal) */
.editorial-card {
    grid-column: span 6; /* Ocupan el 50% del contenedor en pantallas grandes */
    display: flex;
    flex-direction: row-reverse; /* Texto a la izquierda, imagen a la derecha */
    min-height: 380px;
    overflow: hidden;
    transition: var(--transition);
    border: none;
}

.editorial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.editorial-card.featured-large {
    grid-column: span 12; /* Ocupa el 100% de la fila */
    min-height: 520px;
}

.card-img-container {
    width: 50%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.editorial-card:hover .card-img {
    transform: scale(1.03);
}

.card-content {
    width: 50%;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.card-title a {
    text-decoration: none;
    transition: var(--transition);
}

.editorial-card.featured-large .card-title {
    font-size: 2.8rem;
}

.card-excerpt {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 2rem;
    flex-grow: 1;
}

/* Temas de Color de las Tarjetas */
/* 1. Naranja */
.editorial-card.theme-orange {
    background-color: #fc9317; /* Naranja específico solicitado */
    color: #ffffff;
}
.editorial-card.theme-orange .card-title a {
    color: #ffffff;
}
.editorial-card.theme-orange .card-excerpt {
    color: rgba(255, 255, 255, 0.95);
}
.editorial-card.theme-orange .btn-editorial {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

/* 2. Negro */
.editorial-card.theme-dark {
    background-color: #000000;
    color: #ffffff;
}
.editorial-card.theme-dark .card-title a {
    color: #ffffff;
}
.editorial-card.theme-dark .card-excerpt {
    color: rgba(255, 255, 255, 0.95);
}
.editorial-card.theme-dark .btn-editorial {
    color: #ffffff;
    border-bottom: 2px solid #ffffff;
}

/* 3. Blanco / Claro */
.editorial-card.theme-light {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid var(--border-soft);
}
.editorial-card.theme-light .card-title a {
    color: #000000;
}
.editorial-card.theme-light .card-excerpt {
    color: #444444;
}
.editorial-card.theme-light .btn-editorial {
    color: #000000;
    border-bottom: 2px solid #000000;
}

/* Botones Premium Editoriales (Texto con subrayado) */
.btn-editorial {
    display: inline-flex;
    align-self: flex-start;
    margin-top: auto;
    border: none;
    border-bottom: 2px solid currentColor;
    background-color: transparent;
    color: inherit;
    padding: 0;
    padding-bottom: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
}

.btn-editorial:hover {
    opacity: 0.8;
}

.btn-editorial.btn-accent {
    background-color: var(--accent-color);
    border: 2px solid var(--accent-color);
    color: #ffffff;
    padding: 0.8rem 1.8rem;
}

.btn-editorial.btn-accent:hover {
    background-color: var(--accent-color-hover);
    border-color: var(--accent-color-hover);
    color: #ffffff;
    opacity: 1;
}

.btn-editorial.btn-full {
    width: 100%;
}

/* Tienda (Shop Grid) */
.shop-section {
    padding: 4rem 0;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gutter);
}

.product-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border-soft);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.product-img-holder {
    position: relative;
    aspect-ratio: 1/1;
    background-color: #f0f0f0;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 0.3rem 0.6rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 10;
}

.product-badge.badge-digital {
    background-color: var(--accent-color);
}

.product-badge.badge-affiliate {
    background-color: #3e3e42;
}

.product-price {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Footer Editorial */
.footer-editorial {
    background-color: #111111;
    color: #ffffff;
    padding: 5rem 0 3rem;
    border-top: 1px solid var(--border-soft);
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-info {
    grid-column: span 4;
}

.footer-nav-col {
    grid-column: span 2;
}

/* Newsletter en Pie de Página */
.footer-newsletter-col {
    grid-column: span 4;
}

.newsletter-form-footer {
    display: flex;
    flex-direction: column;
}

.newsletter-input {
    width: 100%;
    background-color: #222222;
    border: 1px solid #333333;
    color: #ffffff;
    padding: 0.6rem 0.8rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: var(--transition);
}

.newsletter-input::placeholder {
    color: #666666;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--accent-color);
}

.newsletter-btn {
    background-color: var(--accent-color);
    border: 1px solid var(--accent-color);
    color: #ffffff;
    padding: 0.6rem 1.2rem;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 700;
    transition: var(--transition);
}

.newsletter-btn:hover {
    background-color: var(--accent-color-hover);
    border-color: var(--accent-color-hover);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-info p {
    color: #888888;
    max-width: 450px;
    margin-bottom: 1.5rem;
}

.footer-nav-col h4 {
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.footer-nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    color: #888888;
    font-size: 0.9rem;
}

.footer-nav-links a:hover {
    color: #ffffff;
}

.footer-sponsors-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 1rem;
}

.sponsor-logo {
    font-weight: 700;
    font-size: 1.1rem;
    color: #444444;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
}

.sponsor-logo:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #222222;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #666666;
}

/* Estilos de Páginas Especiales (Éxito, Cancelación, Checkout) */
.status-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    text-align: center;
}

.status-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.status-success {
    background-color: rgba(46, 204, 113, 0.1);
    color: #2ecc71;
    border: 2px solid #2ecc71;
}

.status-cancel {
    background-color: rgba(231, 76, 60, 0.1);
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.status-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.status-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2rem;
}

/* Barra de Cookies */
.cookie-banner {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    background-color: var(--text-color);
    color: var(--bg-color);
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.cookie-text {
    font-size: 0.85rem;
    max-width: 80%;
}

.cookie-btn {
    border: 1px solid var(--bg-color);
    background-color: var(--bg-color);
    color: var(--text-color);
    padding: 0.5rem 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-btn:hover {
    background-color: transparent;
    color: var(--bg-color);
}

/* ==========================================================================
   ESTILOS DE DETALLE DE ARTÍCULO (ESTILO EDITORIAL TYPE 7)
   ========================================================================== */
.article-detail-main {
    background-color: var(--bg-color);
    color: var(--text-color);
}

/* Cabecera del Artículo (Captura 3) */
.article-detail-header-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.header-left-col {
    display: flex;
    flex-direction: column;
}

.article-detail-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-top: 1rem;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.article-author-info {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--text-color);
    border-top: 1px solid var(--border-soft);
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.article-author-info a {
    color: var(--text-color);
    text-decoration: none;
    border-bottom: 1px solid var(--text-color);
    padding-bottom: 1px;
    transition: var(--transition);
}

.article-author-info a:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.header-right-col {
    padding-top: 2.5rem; /* Alinear con el inicio del título */
}

.article-detail-lead {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Imagen Principal Full-Bleed (Captura 5) */
.article-hero-bleed {
    width: 100%;
    margin-bottom: 4rem;
    overflow: hidden;
}

.hero-bleed-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: cover;
    display: block;
}

/* Bloques de Contenido */
.article-content-blocks {
    padding-bottom: 6rem;
}

/* Bloque A: Columnas de texto dobles (Captura 2 parte superior) */
.block-double-text {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.block-double-text .text-column p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Bloque B: Grilla de imágenes dividida (Captura 4) */
.block-split-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 4rem;
    width: 100vw;
    margin-left: calc(-50vw + 50%); /* Centrado full-width */
    padding: 0 var(--gutter);
}

.split-img-item {
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: var(--border-soft);
}

.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.split-img:hover {
    transform: scale(1.02);
}

/* Bloque C: Título gigante izquierda y foto B&W derecha con texto (Captura 2 parte inferior) */
.block-split-text-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: flex-start;
}

.text-highlight-col h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
    color: var(--text-color);
    position: sticky;
    top: 6rem;
}

.image-bw-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.bw-img-container {
    aspect-ratio: 4/5;
    overflow: hidden;
    background-color: var(--border-soft);
}

.bw-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: filter 0.5s ease;
}

.bw-img:hover {
    filter: grayscale(0%) !important;
}

.bw-text-paragraphs p {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Bloque D: Texto centrado estándar (Captura 1) */
.block-text-centered {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.centered-text-wrap {
    max-width: 700px;
    width: 100%;
}

.centered-text-wrap p {
    font-family: var(--font-body);
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--text-color);
    margin-bottom: 1.8rem;
}

/* Insignia de descuento flotante (10% OFF en la esquina inferior izquierda) */
.floating-discount-badge {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    background-color: #ffffff;
    border: 1px solid var(--border-soft);
    padding: 1rem 1.8rem 1rem 1.2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    align-items: center;
    border-radius: 2px;
}

.floating-discount-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-color);
}

.close-discount-btn {
    position: absolute;
    top: 3px;
    right: 5px;
    background: none;
    border: none;
    font-size: 1rem;
    color: #999999;
    cursor: pointer;
    line-height: 1;
    padding: 2px;
}

.close-discount-btn:hover {
    color: var(--accent-color);
}

.discount-badge-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.badge-percentage {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
    letter-spacing: -0.01em;
}

.badge-label {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 700;
    color: #666666;
    letter-spacing: 0.05em;
    margin-top: 2px;
}

/* Responsividad para Artículos */
@media (max-width: 900px) {
    .article-detail-header-grid,
    .block-double-text,
    .block-split-text-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .header-right-col {
        padding-top: 0;
    }
    .text-highlight-col h2 {
        position: static;
    }
}

/* Responsividad */
@media (max-width: 1024px) {
    .editorial-card {
        grid-column: span 6;
    }
    .editorial-card.featured-large {
        grid-column: span 12;
    }
    .editorial-card.featured-tall {
        grid-column: span 6;
    }
    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --gutter: 1.5rem;
    }
    
    /* Adaptabilidad del Header Móvil (Estilo Type 7) */
    .nav-container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 22px;
        height: 15px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        width: 100%;
        height: 2px;
        background-color: var(--text-color);
        transition: var(--transition);
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 1.5rem;
        margin: 0;
    }

    /* Menú Desplegable Móvil */
    #main-nav {
        display: none;
    }

    #main-nav.active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        border-bottom: 1px solid var(--border-soft);
        padding: 2rem var(--gutter);
        z-index: 999;
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    }

    #main-nav.active .nav-links {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    #main-nav.active .nav-links a {
        font-size: 1.2rem;
        font-weight: 700;
        width: 100%;
    }

    /* Ajuste del Banner a Pantalla Completa en Móvil */
    .slider-container {
        height: 70vh; /* Altura más balanceada en móvil */
    }

    .slide-content {
        width: 90%;
        padding-bottom: 2rem;
    }

    .slide-title {
        font-size: 1.8rem; /* Tamaño de fuente proporcionado e idéntico a Type 7 */
        line-height: 1.15;
        text-align: center;
        margin-bottom: 0.5rem;
    }

    .slide-desc {
        font-size: 0.85rem;
        line-height: 1.45;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .editorial-card,
    .editorial-card.featured-large,
    .editorial-card.featured-tall {
        grid-column: span 12;
        flex-direction: column;
        min-height: auto;
    }

    .editorial-card .card-img-container {
        width: 100%;
        height: auto;
        aspect-ratio: 16/10;
    }

    .editorial-card .card-content {
        width: 100%;
        padding: 2rem 1.5rem;
    }

    .editorial-card .card-title {
        font-size: 1.6rem;
    }

    .editorial-card.featured-large .card-title {
        font-size: 1.8rem;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    
    .cookie-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .cookie-text {
        max-width: 100%;
    }
}
