@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Designer:wght@300;400;700&family=Inter:wght@300;400;700&display=swap');

:root {
    --negro: #111111;
    --negro-oscuro: #1A1A1A;
    --rojo: #ED1C24;
    --hueso: #EDE9DD;
    --blanco: #ffffff;
    --gris-banner: #CEC9B4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--blanco);
    color: var(--negro-oscuro);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden; /* Asegura que no haya scroll horizontal por defecto */
    line-height: 1.6;
}

/* HEADER */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--negro);
    padding: 20px 60px;
    border-bottom: 2px solid var(--rojo);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%; /* Asegura que el encabezado tome todo el ancho */
}

header .logo img {
    width: 190px;
}

/* Estilo para el menú de navegación en escritorio */
nav {
    display: flex;
    gap: 35px; /* Espacio entre los elementos del nav */
    align-items: center; /* Alinea los elementos verticalmente al centro para escritorio */
    flex-wrap: nowrap; /* Evita que los hijos directos del nav se envuelvan */
    flex-grow: 1; /* Permite que el nav tome el espacio disponible */
    justify-content: flex-end; /* Empuja el contenido del nav (enlaces) hacia la derecha */
}

nav a {
    color: var(--hueso);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    position: relative;
    letter-spacing: 1px;
    text-decoration: none;
    padding-bottom: 5px;
    white-space: nowrap; /* Mantiene los enlaces en una sola línea */
    flex-shrink: 0; /* Evita que los enlaces se encojan */
}

nav a:hover {
    color: var(--rojo);
}

nav a::after {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--rojo);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

/* Ocultar íconos sociales en escritorio por defecto */
.mobile-social-icons {
    display: none; /* OCULTA LOS ÍCONOS EN ESCRITORIO */
}

/* --- Estilos para el botón de Menú Hamburguesa (oculto por defecto) --- */
.hamburger-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001;
}

.hamburger-icon {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--hueso);
    margin: 5px 0;
    transition: all 0.3s ease-in-out;
}

/* Estado activo del botón de hamburguesa (para la animación de "X") */
.hamburger-menu-btn.is-active .hamburger-icon:nth-child(2) {
    opacity: 0;
}

.hamburger-menu-btn.is-active .hamburger-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu-btn.is-active .hamburger-icon:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* TITULOS */
.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 700;
    text-align: center;
    letter-spacing: 1.5px;
    margin: 50px auto 25px;
    color: var(--negro-oscuro);
}

h1.section-title {
    font-size: 38px;
    color: var(--rojo);
}

h2.section-title {
    font-size: 28px;
    color: var(--negro-oscuro);
}

/* FILTROS */
.filtros {
    background-color: var(--negro-oscuro);
    padding: 30px 20px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    width: 100%; /* Asegura que la sección de filtros tome todo el ancho */
}

.filtro-formulario {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.filtro-formulario input,
.filtro-formulario select {
    padding: 10px 14px;
    font-size: 14px;
    width: 200px;
    background-color: var(--blanco);
    color: var(--negro-oscuro);
    border: 1px solid #ccc;
    border-radius: 5px;
}
.filtro-formulario select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2212%22%20height%3D%2212%22%20viewBox%3D%220%200%2012%2012%22%3E%3Cpath%20fill%3D%22%231A1A1A%22%20d%3D%22M6%209L0%203h12z%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 30px;
}


/* Franja dinámica de las marcas: fondo gris y más compacto */
.marcas-slider {
    background-color: var(--gris-banner);
    overflow: hidden;
    padding: 5px 0;
    border-top: 2px solid var(--negro);
    border-bottom: 2px solid var(--negro);
    width: 100%; /* Asegura que el slider tome todo el ancho */
}

.marcas-slider-track {
    display: flex;
    width: calc(180px * 15);
    animation: scrollMarcas 20s linear infinite;
    align-items: center;
}

.marcas-slider img {
    width: 80px;
    margin: 0 20px;
    height: auto;
    transition: transform 0.3s ease;
}

.marcas-slider img:hover {
    transform: scale(1.1);
}

@keyframes scrollMarcas {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* CONTENEDOR DE PRODUCTOS */
.products-container {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(280px, 1fr));
    gap: 25px;
    padding: 40px 20px;
    justify-content: center;
    width: 100%; /* Asegura que el contenedor tome todo el ancho */
}

/* TARJETAS DE PRODUCTO */
.moto-card {
    background-color: var(--negro-oscuro);
    border-radius: 10px;
    overflow: hidden;
    max-width: 350px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.moto-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Fondo de la imagen del mismo color de la tarjeta (negro-oscuro) */
.moto-card .image-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--negro-oscuro);
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.moto-card .image-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    display: block;
}

.moto-card-content {
    padding: 6px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2px;
}

.moto-card h3 {
    font-family: 'Designer', sans-serif;
    font-size: 14px;
    color: var(--rojo);
    margin: 0;
    text-transform: uppercase;
    line-height: 1.1;
}

.moto-card p.product-brand {
    font-size: 0.75em;
    color: var(--hueso);
    margin-top: 1px;
    margin-bottom: 1px;
    line-height: 1;
}

.moto-card p.product-price {
    font-size: 0.9em;
    font-weight: bold;
    color: var(--rojo);
    margin-top: 5px;
    margin-bottom: 5px;
}

/* Opciones de producto (contiene las tallas y botón de comprar) */
.product-options {
    margin-top: 8px;
    padding-top: 5px;
    border-top: 1px solid #333;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

/* Disposición de tallas: TALLA: XL, L, C, D (en fila) */
.option-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 100%;
    flex-wrap: wrap;
}

.product-options label {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--hueso);
    font-size: 0.85em;
    margin-bottom: 0;
    flex-shrink: 0;
}

/* --- ESTILOS PARA LOS CHIPS DE TALLA --- */
.talla-options-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3px;
    flex-grow: 1;
}

.talla-chip {
    background-color: var(--negro);
    color: var(--hueso);
    padding: 3px 6px;
    border: 1px solid var(--hueso);
    border-radius: 3px;
    cursor: pointer;
    font-size: 0.7em;
    font-weight: bold;
    transition: all 0.2s ease;
    min-width: 30px;
    text-align: center;
    box-sizing: border-box;
}

.talla-chip:hover:not(.out-of-stock):not(.selected) {
    background-color: var(--rojo);
    border-color: var(--rojo);
    color: var(--blanco);
}

.talla-chip.selected {
    background-color: var(--rojo);
    border-color: var(--rojo);
    color: var(--blanco);
    cursor: default;
}

.talla-chip.out-of-stock {
    background-color: #333;
    color: #888;
    border-color: #555;
    text-decoration: line-through;
    cursor: not-allowed;
    opacity: 0.6;
}

.talla-chip.out-of-stock.selected {
    background-color: #555;
    border-color: #777;
    color: #bbb;
}
/* --- FIN ESTILOS PARA CHIPS DE TALLA --- */

.selected-sku {
    font-size: 0.65em;
    color: #777;
    margin-top: 1px;
    text-align: center;
}

.add-to-cart-btn {
    background-color: var(--rojo);
    color: var(--blanco);
    padding: 5px 12px;
    font-size: 11px;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    margin-top: auto;
    width: fit-content;
    align-self: center;
}

.add-to-cart-btn:hover {
    background-color: #a12424;
}

.add-to-cart-btn:disabled {
    background-color: #555;
    color: #bbb;
    cursor: not-allowed;
    opacity: 0.7;
}

.no-stock-message {
    font-size: 0.7em;
}

/* SKELETON LOADER */
.moto-card-skeleton {
    background-color: var(--negro-oscuro);
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0.7;
    animation: pulse 1.5s infinite ease-in-out;
}

.skeleton-image {
    width: 100%;
    height: 200px;
    background-color: #333;
}

.skeleton-content {
    padding: 6px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.skeleton-line {
    background-color: #333;
    border-radius: 3px;
    height: 9px;
    margin-bottom: 1px;
}

.skeleton-line.title {
    width: 80%;
    height: 14px;
    margin: 4px auto;
}

.skeleton-line.short {
    width: 50%;
    margin: 0 auto;
}

.skeleton-line.price {
    width: 30%;
    height: 12px;
    margin: 5px auto;
}

.skeleton-line.button {
    width: 80px;
    height: 25px;
    margin: 8px auto 0;
    border-radius: 3px;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 0.7;
    }
}


/* WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.whatsapp-float img:hover {
    transform: scale(1.08);
}

/* FOOTER */
footer {
    width: 100%;
    background-color: var(--rojo);
    color: var(--blanco);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    padding: 20px 20px 10px;
    border-top: 3px solid var(--negro);
    text-align: left;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 10px auto;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    padding: 0 15px;
}

.footer-section h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--negro);
    font-size: 24px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: left;
}

.footer-section p {
    margin-bottom: 5px;
    color: var(--blanco);
}

.footer-section a {
    color: var(--blanco);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: var(--hueso);
    text-decoration: underline;
}

.map-link {
    display: inline-block;
    margin-top: 5px;
    background-color: var(--negro);
    color: var(--blanco);
    padding: 6px 12px;
    border-radius: 5px;
    font-size: 0.8em;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.2s ease;
}

.map-link:hover {
    background-color: #333;
    text-decoration: none;
}

.location-info iframe {
    width: 100%;
    height: 180px;
    border: 0;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    display: block;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    justify-content: flex-start;
    align-items: center;
}

.social-icons a {
    display: block;
    width: 35px;
    height: 35px;
    transition: transform 0.2s ease-in-out;
}

.social-icons a:hover {
    transform: scale(1.1);
    text-decoration: none;
}

.social-icons img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-bottom {
    text-align: center;
    padding-top: 10px;
    border-top: 1px solid var(--negro);
    color: var(--negro);
    font-size: 11px;
    margin-top: 10px;
}

/* RESPONSIVE - Media queries consolidadas y ajustadas */
@media (max-width: 1024px) {
    header {
        padding: 20px 20px; /* Reduce el padding para escritorios más pequeños */
    }
    nav {
        gap: 15px; /* Reduce aún más el espacio entre ítems del nav */
    }
    /* .mobile-social-icons está oculto por 'display: none' global */

    .products-container {
        grid-template-columns: repeat(auto-fill,minmax(220px, 1fr));
        gap: 12px;
        padding: 25px 8px;
    }
    .moto-card {
        max-width: none;
    }
    .moto-card .image-wrapper {
        height: 100px;
    }
    .moto-card-content {
        padding: 6px 8px;
        gap: 1px;
    }
    .moto-card h3 {
        font-size: 13px;
    }
    .moto-card p.product-brand {
        font-size: 0.7em;
    }
    .moto-card p.product-price {
        font-size: 0.9em;
    }
    .product-options {
        margin-top: 6px;
        padding-top: 4px;
        gap: 5px;
    }
    .option-group {
        flex-direction: row;
        justify-content: center;
        gap: 4px;
    }
    .product-options label {
        margin-bottom: 0;
        font-size: 0.75em;
    }
    .talla-chip {
        padding: 2px 6px;
        font-size: 0.65em;
        min-width: 28px;
    }
    .add-to-cart-btn {
        padding: 4px 10px;
        font-size: 10px;
    }
    .selected-sku {
        font-size: 0.6em;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 20px;
        align-items: center;
    }

    header .logo {
        margin-right: auto;
    }

    .hamburger-menu-btn {
        display: block;
    }

    header nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100%;
        background-color: var(--negro-oscuro);
        flex-direction: column;
        /* Reducir el padding-top aquí para acercar el contenido al botón de cierre */
        padding: 40px 20px 20px; /* Ajustado el padding-top de 80px a 40px */
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.4);
        transition: right 0.4s ease-in-out;
        z-index: 999;
        align-items: flex-start;
        gap: 25px;
    }

    header nav.menu-open {
        right: 0;
    }

    header nav a {
        font-size: 22px;
        padding: 10px 0;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    header nav a:last-child {
        border-bottom: none;
    }

    /* Estilos para iconos de redes sociales en el menú móvil (aquí se hacen visibles) */
    .mobile-social-icons {
        display: flex; /* HACE LOS ÍCONOS VISIBLES EN MÓVIL */
        justify-content: flex-start;
        gap: 15px;
        margin-top: 20px;
        padding-left: 10px;
        margin-left: 0; /* Reinicia el margen de escritorio para móvil */
    }

    .mobile-social-icons a {
        padding: 0;
        border: none;
        width: 35px;
        height: 35px;
        display: block;
        transition: transform 0.2s ease;
    }

    .mobile-social-icons a img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .mobile-social-icons a:hover {
        transform: scale(1.1);
    }
}

@media (max-width: 480px) {
    .products-container {
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
        padding: 15px 8px;
    }
    .moto-card .image-wrapper {
        height: 100px;
    }
    .moto-card .image-wrapper img {
        max-width: 80%;
        max-height: 80%;
    }
    .moto-card-content {
        padding: 6px 8px;
        gap: 1px;
    }
    .moto-card h3 {
        font-size: 12px;
    }
    .moto-card p.product-brand {
        font-size: 0.65em;
    }
    .moto-card p.product-price {
        font-size: 0.8em;
        margin-top: 2px;
        margin-bottom: 2px;
    }
    .product-options {
        margin-top: 4px;
        padding-top: 2px;
        gap: 2px;
    }
    .option-group {
        flex-direction: row;
        justify-content: center;
        gap: 1px;
    }
    .product-options label {
        font-size: 0.7em;
        margin-bottom: 0;
    }
    .talla-options-wrapper {
        gap: 1px;
    }
    .talla-chip {
        padding: 1px 4px;
        font-size: 0.6em;
        min-width: 25px;
    }
    .add-to-cart-btn {
        padding: 3px 6px;
        font-size: 9px;
    }
    .selected-sku {
        font-size: 0.55em;
    }
}