/* Reseteo básico y variables */
@font-face {
    font-family: 'ISO Titulos'; /* Tú inventas este nombre, es el que usarás después */
    src: url('assets/fonts/ROC_GROTESK_WIDE_BOLD.otf') format('truetype'); /* La ruta a tu archivo */
    font-weight: bold;
    font-style: normal;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica Neue', Arial, sans-serif; /* Ajusta a la tipo que usaste */
}

body {
    h1, h2, h3, h4, .portada-numero {
    font-family: 'ISO Titulos', Arial, sans-serif;
}
    background-color: #ffffff;
    color: #000000;
}

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

/* --- Header --- */
.main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    
    /* LO NUEVO: Lo alineamos con el resto del contenido */
    max-width: 1200px; /* El mismo ancho que tu tarjeta principal */
    margin: 0 auto; /* Esto lo centra perfectamente en la pantalla */
    padding: 20px; /* Le damos aire arriba y abajo */
}

/* Agregamos una transición suave a los enlaces base */
.nav-links a {
    text-decoration: none;
    color: #000;
    margin: 0 15px;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease; /* ESTO ES LO NUEVO: la magia de la suavidad */
    
}

/* El efecto al pasar el mouse */
.nav-links a:hover {
    color: #888; /* Se vuelve un gris elegante. Puedes cambiarlo si tienes un color de marca */
}

.btn-suscribirse {
    background-color: #000;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 30px;
    border: 2px solid #000; /* Le agregamos un borde negro desde el inicio */
    transition: all 0.3s ease; /* Transición suave para fondo y texto */
}

/* El efecto interactivo */
.btn-suscribirse:hover {
    background-color: #fff; /* El fondo se hace blanco */
    color: #000 !important; /* El texto se hace negro */
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    padding: 10px 0 30px 0;
    font-size: 12px;
    color: #666;
}
.breadcrumbs a {
    color: #000;
    text-decoration: none;
}
.breadcrumbs .separator {
    margin: 0 5px;
}
.breadcrumbs .current {
    font-weight: bold;
}

/* --- HERO SECTION (La magia del 3D) --- */
.hero-section {
    position: relative; 
    
    /* EL AJUSTE: Subimos de 20px a 80px para compensar lo que borramos */
    margin-top: 80px; 
    
    margin-bottom: 80px;
}

/* --- NUEVO: Estilos para el enlace wrapper --- */
.hero-card-button-link {
    text-decoration: none; /* Quitamos subrayado azul por defecto */
    display: block; /* Importante para que ocupe todo el espacio */
    width: 100%; /* Asegura que cubra el ancho del contenedor */
    cursor: pointer; /* Fuerza a que salga la manita del puntero */
}

/* --- ACTUALIZADO: Tu clase original .hero-card --- */
/* --- Wrapper del enlace: para que ocupe todo el espacio y salga la manita --- */
.hero-card-button-link {
    text-decoration: none; /* Quitamos el subrayado por defecto */
    display: block; /* Ocupa todo el ancho */
    width: 100%;
    cursor: pointer; /* Fuerza el puntero de "manita" */
}

/* --- .hero-card: TU TARJETA PRINCIPAL --- */
.hero-card {
    background-color: #000;
    

    background-image: linear-gradient(to right, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.2) 100%), url('assets/portadota%20copy.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    border-radius: 40px;
    padding: 80px 60px;
    min-height: 400px;
    display: flex;
    align-items: center;

    /* 2. PREPARAMOS LA TRANSICIÓN SUAVE (para el hover) */
    /* Estas dos líneas le dicen al CSS cómo y cuánto tardar en animarse */
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

/* --- EL EFECTO HOVER: Magnificación + Profundidad --- */
/* Cuando pasamos el mouse por encima del enlace, cambiamos la tarjeta (.hero-card) adentro */
.hero-card-button-link:hover .hero-card {
    /* MAGNIFICACIÓN: Se agranda un 3% (1.03) */
    transform: scale(1.02); 

    /* DETALLE DE DISEÑO: Profundidad. Agregamos una sombra suave
       para que parezca que la tarjeta se "levanta" de la página */
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.hero-content {
    color: #fff;
    max-width: 50%;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
    font-weight: 800;
}

/* El truco del jugador saliendo */
.hero-player-out-of-bounds {
    position: absolute;
    /* Al usar píxeles, tú controlas el tamaño y posición exactos */
    top: -300px; /* Entre más negativo el número, más sube la pelota */
    right: 0%; /* Ajusta qué tan a la derecha lo quieres */
    height: 950px; /* Aquí lo hacemos gigante para que los pies salgan por abajo */
    width: auto;
    z-index: 10;
    pointer-events: none; 
}

/* --- Textos e Intro --- */
.intro-text {
    text-align: center;
    max-width: 800px;
    margin-bottom: 60px;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.5;
}

/* --- Carrusel (Tarjetas) --- */
.carousel-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
}

.carousel-track::-webkit-scrollbar {
    display: none; /* Oculta la barra de scroll nativa */
}

/* --- ACTUALIZAMOS LA TARJETA --- */
.article-card {
    min-width: 350px;
    height: 250px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    
    /* Lo nuevo para que actúe como botón */
    text-decoration: none; 
    cursor: pointer;
    flex-shrink: 0; /* Evita que las tarjetas se aplasten */
    
    /* Preparamos la animación suave */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* --- EL EFECTO DE MAGNIFICACIÓN --- */
.article-card:hover {
    transform: scale(1.03); /* Se agranda un 3% */
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Sombra para dar profundidad */
    z-index: 2; /* Para que al agrandarse pase por encima de las demás */
}

/* --- AJUSTE AL CONTENEDOR DEL CARRUSEL --- */
.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: hidden; /* Escondemos el scroll nativo porque usaremos botones */
    padding: 20px 0; /* Damos espacio arriba y abajo para que quepa la magnificación sin cortarse */
}

.card-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

.card-info {
    position: relative;
    color: #fff;
    padding: 20px;
    z-index: 2;
}

.nav-arrow {
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
    color: #333;
}

/* --- Footer --- */
.main-footer {
    background-color: #000;
    color: #fff;
    padding: 60px 40px 20px 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

/* 1. Le devolvemos el espacio a la columna para que respiren los textos */
.footer-brand {
    flex: 1;
    min-width: 250px; 
}

/* 2. Le damos el tamaño ÚNICAMENTE al logo usando su clase o la etiqueta img */
.footer-brand img {
    width: 80px; /* Aquí ya controlas el tamaño del logo blanco. Juega con este número. */
    height: auto;
    margin-bottom: 20px; /* Da un poco de aire antes del título "Contáctanos" */
}

/* 3. Acomodamos los iconos de redes para que se vean en fila y elegantes */
.social-icons {
    display: flex;
    gap: 20px; /* Separación entre iconos */
    margin-top: 15px;
}

.social-icons a {
    color: #fff; /* Color blanco inicial */
    text-decoration: none;
    font-size: 20px; /* Tamaño de los iconos */
    transition: color 0.3s ease; /* Transición suave */
}

/* El efecto al pasar el mouse por encima */
.social-icons a:hover {
    color: #888; /* Se vuelve gris elegante, igual que tu menú superior */
}

.footer-brand h2 {
    margin: 20px 0;
}

.footer-links-grid {
    display: flex;
    flex: 3;
    justify-content: flex-end; /* Esto empuja todas las columnas hacia la derecha */
    gap: 60px; /* Aquí controlas la separación exacta entre ellas. Juega con este número */
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-col a:hover {
    color: #fff;
}

.footer-copyright {
    text-align: left;
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 12px;
}

.logo img {
    width: 80px; /* Juega con este número (ej. 90px o 120px) hasta que quede perfecto */
    height: auto;
}

/* =========================================
   ESTILOS PARA PÁGINAS INTERNAS (ARTÍCULOS)
   ========================================= */

.edicion-principal {
    padding-top: 40px;
    padding-bottom: 80px;
}

.articulo-header {
    text-align: center;
    margin-bottom: 40px;
}

.articulo-header h1 {
    font-size: 4rem; /* Gigante y audaz */
    font-weight: 800;
    margin-bottom: 10px;
}

.articulo-subtitulo {
    font-size: 1.2rem;
    font-weight: 600;
    color: #555;
    letter-spacing: 1px;
}

.articulo-cover {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    margin-bottom: 50px;
}

/* Layout a dos columnas para lectura de revista */
.articulo-contenido {
    display: flex;
    gap: 60px;
}

.texto-principal {
    flex: 2; /* Toma 2/3 del espacio */
}

.texto-principal h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.texto-principal p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 25px;
}

.datos-laterales {
    flex: 1; /* Toma 1/3 del espacio */
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 15px;
    height: fit-content; /* Para que la caja no se estire de más */
}

.datos-laterales h3 {
    margin-bottom: 15px;
    border-bottom: 2px solid #000;
    padding-bottom: 10px;
}

.datos-laterales ul {
    list-style: none;
    padding: 0;
}

.datos-laterales li {
    margin-bottom: 15px;
    font-size: 1.05rem;
}

/* =========================================
   PÁGINA DE PORTADAS Y OVERLAY
   ========================================= */

.portadas-header-section {
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
}

.portadas-header-section h1 {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.portadas-header-section p {
    font-size: 1.2rem;
    color: #555;
}

/* Cuadrícula de Portadas */
.portadas-grid {
    display: grid;
    /* Esto hace que se adapte: si hay 2, se centran o se reparten bonito */
    grid-template-columns: repeat(auto-fit, minmax(350px, 400px)); 
    gap: 50px;
    justify-content: center; /* Centra las columnas si son pocas */
    margin-bottom: 100px;
}

.portada-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portada-card:hover {
    transform: translateY(-10px); /* Se eleva un poquito al pasar el mouse */
}

.portada-card img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 20px;
    transition: box-shadow 0.3s ease;
}

.portada-card:hover img {
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.portada-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.portada-numero {
    font-size: 1.5rem;
    font-weight: bold;
    color: #e31837; /* Un rojo vibrante tipo SLAM. Cámbialo a #000 si prefieres todo negro */
}

.portada-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
}

/* --- ESTILOS DEL OVERLAY (MODAL) --- */
.overlay-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85); /* Fondo oscuro semitransparente */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999; /* Para que quede por encima de todo el sitio */
    
    /* Oculto por defecto con animación suave */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 900px;
    border-radius: 20px;
    position: relative;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
    
    /* Efecto de entrada desde abajo */
    transform: translateY(30px);
    transition: transform 0.3s ease;
}

.overlay-modal.active .modal-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    font-size: 35px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s ease;
}

.close-btn:hover {
    color: #000;
}

.modal-body {
    display: flex;
    gap: 40px;
    align-items: center;
}

.modal-img-container {
    flex: 1;
}

.modal-img-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.modal-text-container {
    flex: 1;
}

.modal-text-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 800;
}

.modal-text-container p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}

/* =========================================
   PÁGINA DE TIENDA (ESCAPARATE)
   ========================================= */

.tienda-header {
    text-align: center;
    margin: 40px auto 60px auto;
}

.tienda-header h1 {
    font-size: 3rem;
    font-weight: 800;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 50px;
    margin-bottom: 100px;
}

.product-card {
    text-decoration: none;
    color: #000;
    display: block;
    transition: transform 0.3s ease;
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

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

/* Efecto SLAM: El botón aparece sobre la foto al hacer hover */
.quick-add-btn {
    position: absolute;
    bottom: -50px; /* Escondido abajo */
    left: 0;
    width: 100%;
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    font-weight: bold;
    transition: bottom 0.3s ease;
}

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

.product-card:hover .quick-add-btn {
    bottom: 0; /* Sube y se muestra */
}

.product-info-shop h3 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.product-info-shop .price {
    font-weight: bold;
    color: #555;
}

/* =========================================
   PÁGINA DE PRODUCTO INDIVIDUAL
   ========================================= */

.product-detail-container {
    display: flex;
    gap: 60px;
    margin: 40px auto 100px auto;
}

.product-gallery {
    flex: 1;
}

.main-product-img {
    width: 100%;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.thumbnail-row {
    display: flex;
    gap: 15px;
}

.thumb {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border: 2px solid transparent;
    cursor: pointer;
    border-radius: 5px;
}

.thumb.active, .thumb:hover {
    border-color: #000;
}

.product-checkout-info {
    flex: 1;
    padding-top: 20px;
}

.product-checkout-info h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.product-price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.quantity-section {
    margin-bottom: 30px;
}

.quantity-section label {
    display: block;
    margin-bottom: 10px;
    font-weight: bold;
}

.quantity-box {
    display: flex;
    border: 1px solid #ccc;
    width: fit-content;
    border-radius: 5px;
    overflow: hidden;
}

.qty-btn {
    background: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 1.2rem;
    cursor: pointer;
}

.qty-btn:hover {
    background: #f0f0f0;
}

.qty-input {
    width: 50px;
    text-align: center;
    border: none;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    font-size: 1rem;
    /* Quitar flechas por defecto del input number */
    -moz-appearance: textfield;
}

.btn-add-to-cart {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 40px;
}

.btn-add-to-cart:hover {
    background-color: #fff;
    color: #000;
}

.product-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

/* =========================================
   MIS EDICIONES (EMPTY STATE)
   ========================================= */

.mis-ediciones-container {
    /* min-height asegura que ocupe buena parte de la pantalla, 
       empujando el footer hacia abajo */
    min-height: 55vh; 
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 20px 100px 20px;
}

.empty-state {
    text-align: center;
    max-width: 600px;
    /* Animación suave al cargar la página */
    animation: fadeIn 0.8s ease-in-out; 
}

.empty-icon {
    font-size: 80px;
    color: #e0e0e0; /* Un gris muy claro para que no compita con el texto */
    margin-bottom: 25px;
}

.empty-state h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.empty-state p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Ajuste específico para que el botón de suscribirse se vea bien aquí */
.btn-empty-state {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1.1rem;
}

/* Animación de entrada (opcional pero se ve muy pro) */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   PÁGINA DE GALERÍA (EFECTO MASONRY)
   ========================================= */

.galeria-header {
    text-align: center;
    margin: 20px auto 50px auto;
}

.galeria-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.galeria-header p {
    font-size: 1.15rem;
    color: #555;
}

/* El truco del "Masonry" (bloques tipo Tetris) */
.galeria-masonry {
    column-count: 3; /* Te lo divide en 3 columnas en computadoras */
    column-gap: 20px; /* Separación entre las columnas */
    margin-bottom: 80px;
}

.galeria-item {
    break-inside: avoid; /* Esto evita que una foto se corte a la mitad entre una columna y otra */
    margin-bottom: 20px; /* Separación hacia abajo */
    border-radius: 12px; /* Bordes redonditos de tu diseño */
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05); /* Sombra muy sutil */
    transition: box-shadow 0.3s ease;
}

.galeria-item img {
    width: 100%;
    display: block; /* Elimina un espacio fantasma abajo de la imagen */
    transition: transform 0.4s ease;
}

/* El efecto al pasar el mouse */
.galeria-item:hover {
    box-shadow: 0 15px 35px rgba(0,0,0,0.2); /* Sombra más fuerte */
}

.galeria-item:hover img {
    transform: scale(1.03); /* Ligero zoom para darle vida */
}

/* --- RESPONSIVIDAD PARA CELULARES Y TABLETS --- */
@media (max-width: 900px) {
    .galeria-masonry {
        column-count: 2; /* 2 columnas en pantallas medianas */
    }
}

@media (max-width: 600px) {
    .galeria-masonry {
        column-count: 1; /* 1 columna en celulares para que se vean bien las fotos */
    }
}

/* =========================================
   PÁGINA DE CARRITO DE COMPRAS
   ========================================= */

.cart-header {
    margin: 20px auto 40px auto;
}

.cart-header h1 {
    font-size: 3rem;
    font-weight: 800;
}

.cart-container {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: flex-start; /* Evita que la caja de resumen se estire de más */
}

/* Lado izquierdo (Lista) */
.cart-items-list {
    flex: 2; /* Toma más espacio de la pantalla */
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 0;
    border-bottom: 1px solid #eee;
}

/* Para que el primero tenga línea arriba también */
.cart-item:first-child {
    border-top: 1px solid #eee;
}

.cart-item-img {
    width: 100px;
    height: auto;
    border-radius: 5px;
    background-color: #f9f9f9;
}

.cart-item-details {
    flex: 1; /* Empuja la cantidad y el basurero a la derecha */
}

.cart-item-details h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.cart-item-price {
    font-weight: bold;
    color: #555;
}

.remove-item-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-left: 15px;
}

.remove-item-btn:hover {
    color: #e31837; /* Rojo para indicar que se va a borrar */
}

/* Lado derecho (Resumen) */
.cart-summary-box {
    flex: 1;
    background-color: #f9f9f9;
    padding: 35px;
    border-radius: 15px;
}

.cart-summary-box h2 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    border-bottom: 2px solid #000;
    padding-bottom: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #444;
}

.envio-text {
    font-size: 0.9rem;
    color: #888;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 1.5rem;
    font-weight: bold;
    color: #000;
}

.btn-checkout {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 30px;
    margin-bottom: 15px;
    border-radius: 30px; /* Bordes redondeados como tu botón de suscripción */
}

.btn-checkout:hover {
    background-color: #fff;
    color: #000;
}

.continue-shopping {
    display: block;
    text-align: center;
    color: #555;
    text-decoration: underline;
    font-size: 1rem;
}

.continue-shopping:hover {
    color: #000;
}

/* =========================================
   PÁGINA DE SUSCRIPCIÓN / REGISTRO
   ========================================= */

.auth-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70vh;
    padding: 60px 20px 100px 20px;
}

.auth-box {
    width: 100%;
    max-width: 550px; /* Evita que el formulario se estire por toda la pantalla */
    background-color: #fff;
    padding: 40px;
}

.auth-box h1 {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

.auth-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Para poner nombre y apellido en la misma línea */
.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: bold;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    font-family: inherit; /* Para que use la misma tipografía de tu página */
    transition: border-color 0.3s ease;
}

/* Efecto al darle clic para escribir */
.form-group input:focus {
    outline: none;
    border-color: #000;
    box-shadow: 0 0 0 1px #000;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.form-checkbox input[type="checkbox"] {
    margin-top: 5px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.5;
    cursor: pointer;
}

.btn-auth-submit {
    width: 100%;
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
    padding: 18px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 30px;
}

.btn-auth-submit:hover {
    background-color: #fff;
    color: #000;
}

.auth-footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    font-size: 0.95rem;
    color: #555;
}

.auth-footer a {
    color: #000;
    font-weight: bold;
    text-decoration: underline;
}

.auth-footer a:hover {
    color: #555;
}