/* Toro & Pampa - Premium Custom CSS */

:root {
    --primary-color: #0f0f0f;       /* Deep premium black */
    --secondary-color: #1a1a1a;     /* Accent black */
    --gold-color: #bfa15f;          /* Elegance gold/bronze */
    --white-color: #ffffff;
    --light-bg: #f8f9fa;            /* Clean light grey */
    --border-color: #e5e5e5;
    --price-color: #c0392b;         /* Terracotta/Red for cash price */
    --whatsapp-color: #00a884;      /* WhatsApp standard green */
    --whatsapp-hover: #008f70;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Montserrat', sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

@media (prefers-reduced-motion: reduce) {
    *{
        transition: none !important;
        animation: none !important;
    }
}

html, body {
    font-family: var(--font-body);
    color: var(--primary-color);
    background-color: var(--white-color);
    overflow-x: clip;
    width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6, .font-heading {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Top Announcement Bar */
/* Header & Navbar */
.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 1.8rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-color) !important;
    position: relative;
    padding: 8px 16px !important;
    transition: var(--transition-smooth);
}

.nav-link::after {
    display: none;
}

.search-input {
    border-radius: 0;
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
    padding: 8px 12px;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Hero Carousel (Slider) */
.hero-carousel .carousel-item {
    height: 70vh;
    min-height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-carousel .carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.65));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    font-weight: 300;
    line-height: 1.6;
}

.btn-hero {
    background-color: var(--white-color);
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 2px;
    border-radius: 50px;
    padding: 12px 35px;
    font-size: 0.85rem;
    border: 2px solid var(--white-color);
    transition: var(--transition-smooth);
}

.btn-hero:hover {
    background-color: transparent;
    color: var(--white-color);
}

@media (max-width: 768px) {
    .hero-carousel .carousel-item {
        height: 55vh;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 0.95rem;
    }
}

/* Product Cards */
.product-card {
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    background: var(--white-color);
    transition: var(--transition-smooth);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border-color: rgba(0,0,0,0.15);
}

.product-image-container {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: var(--light-bg);
    overflow: hidden;
}

.product-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image {
    transform: scale(1.08);
}

.product-card-body {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-brand {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #888;
    margin-bottom: 5px;
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 2.8em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.product-title a:hover {
    color: var(--gold-color);
}

.price-original {
    font-size: 0.85rem;
    text-decoration: line-through;
    color: #888;
    margin-bottom: 2px;
}

.price-cash {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--price-color);
    margin-bottom: 2px;
}

.price-cash-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--price-color);
}

.price-installments {
    font-size: 0.75rem;
    color: #555;
    margin-bottom: 15px;
}

.btn-whatsapp-cta {
    background-color: var(--whatsapp-color);
    color: var(--white-color);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 5px;
    border: none;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    transition: var(--transition-smooth);
}

.btn-whatsapp-cta:hover {
    background-color: var(--whatsapp-hover);
    color: var(--white-color);
}

.btn-cart-add {
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    border-radius: 5px;
    border: none;
    padding: 10px 15px;
    transition: var(--transition-smooth);
    width: 100%;
}

.btn-cart-add:hover {
    background-color: var(--gold-color);
}

.badge-featured {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 10px;
    text-transform: uppercase;
    z-index: 5;
}

.badge-out-of-stock {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #7f8c8d;
    color: var(--white-color);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 5px 10px;
    text-transform: uppercase;
    z-index: 5;
}

/* Sidebar Filters */
.sidebar-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 15px;
}

.filter-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.filter-list li {
    margin-bottom: 8px;
}

.filter-link {
    color: #555;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

.filter-link:hover, .filter-link.active {
    color: var(--gold-color);
    padding-left: 5px;
}

/* Cart Sidebar (Off-canvas) */
.offcanvas-cart {
    width: 400px !important;
}

@media (max-width: 576px) {
    .offcanvas-cart {
        width: 100% !important;
    }
}

.cart-item {
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    gap: 15px;
    align-items: center;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid var(--border-color);
    background-color: var(--light-bg);
}

.cart-item-details {
    flex-grow: 1;
}

.cart-item-title {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.cart-item-price {
    font-size: 0.85rem;
    color: var(--price-color);
    font-weight: 700;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.btn-qty {
    width: 24px;
    height: 24px;
    padding: 0;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: transparent;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.btn-qty:hover {
    background-color: var(--primary-color);
    color: var(--white-color);
}

.qty-input {
    width: 30px;
    text-align: center;
    font-size: 0.8rem;
    border: none;
    font-weight: 600;
}

.cart-item-remove {
    color: #e74c3c;
    background: none;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cart-item-remove:hover {
    color: #c0392b;
}

/* Quick View Modal */
.modal-content {
    border-radius: 0;
    border: none;
}

.modal-product-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.modal-product-desc {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.variant-selector {
    margin-bottom: 20px;
}

.variant-selector label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    display: block;
}

.variant-select {
    border-radius: 0;
    border: 1px solid var(--border-color);
    padding: 10px;
    font-size: 0.85rem;
}

.variant-select:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

/* Featured Products Carousel */
.featured-carousel-container {
    position: relative;
    padding: 0 40px;
}

.featured-carousel-prev, .featured-carousel-next {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    opacity: 0.8;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--transition-smooth);
}

.featured-carousel-prev:hover, .featured-carousel-next:hover {
    background-color: var(--gold-color);
    opacity: 1;
}

/* Commercial Conditions Block */
.conditions-bar {
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 25px 0;
    font-size: 0.8rem;
    line-height: 1.6;
    color: #555;
}

/* Footer */
footer {
    background-color: #0d1424;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    padding: 55px 0 0 0;
}


footer h5 {
    color: var(--white-color);
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

footer a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: var(--transition-smooth);
}

footer a:hover {
    color: var(--gold-color);
    padding-left: 3px;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    background-color: #0b0f19;
    margin-top: 40px;
    padding: 20px 20px 15px;
    font-size: 0.75rem;
}

/* Botón flotante de WhatsApp (fijo, visible en todo momento) */
.whatsapp-float {
    position: fixed;
    left: 24px;
    bottom: 24px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    z-index: 1040;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    background-color: #1ebe5a;
    color: #fff;
    transform: scale(1.06);
}

@media (max-width: 576px) {
    .whatsapp-float {
        left: 16px;
        bottom: 16px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }
}

/* Responsive badges / buttons */
.badge-cart-count {
    background-color: var(--gold-color);
    color: var(--primary-color);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 6px;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right: -5px;
}

/* ==========================================================================
   Site Header (nav simple, ver luntai-reference.html secc. 1)
   --overlay: transparente, absoluto sobre el hero (solo home)
   --solid: fondo negro sólido, en flujo normal (resto de páginas)
   ========================================================================== */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    z-index: 20;
}

.site-header--overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
}

.site-header--solid {
    position: sticky;
    top: 0;
    background-color: #0b0f19;
    z-index: 1030;
}

.site-header__logo span {
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    font-size: 1.4rem;
    letter-spacing: 2px;
    color: #fff;
    text-transform: uppercase;
}

.site-header__nav {
    display: flex;
    gap: 6px;
}

.site-header__nav a {
    position: relative;
    display: inline-block;
    font-family: 'Rajdhani', var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    padding: 12px 22px;
    border-radius: 0;
    background-color: transparent;
    border: 1px solid transparent;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

/* Recuadro blanco (solo borde), sin distinguir si ya estás en esa página */
.site-header__nav a:hover,
.site-header__nav a.activo {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

.site-header__nav a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--gold-color);
    transition: width .2s ease;
}

.site-header__nav a:hover::after,
.site-header__nav a.activo::after {
    width: 22px;
}

.site-header__btn {
    width: 68px;
    height: 68px;
    background-color: var(--accent-red);
    border: 0;
    cursor: pointer;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.site-header__btn-dots {
    display: grid;
    grid-template-columns: repeat(4, 5px);
    grid-template-rows: repeat(3, 5px);
    gap: 5px;
    transition: gap .3s ease;
}

.site-header__btn:hover .site-header__btn-dots {
    gap: 8px;
}

.site-header__btn-dots span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #fff;
    transition: var(--transition-smooth);
}

/* ---- Panel lateral de información (botón rojo) ---- */
.site-info-backdrop {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    z-index: 1049;
}

.site-info-backdrop.is-open {
    opacity: 1;
    visibility: visible;
}

.site-info-panel {
    position: fixed;
    top: 110px;
    right: 24px;
    bottom: 24px;
    width: 420px;
    max-width: calc(90vw - 24px);
    background-color: #fff;
    z-index: 1050;
    padding: 45px;
    overflow-y: auto;
    border-radius: 20px;
    transform: translateX(calc(100% + 40px));
    transition: transform .4s cubic-bezier(.25, .8, .25, 1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.site-info-panel.is-open {
    transform: translateX(0);
}

.site-info-panel-close {
    position: absolute;
    top: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #111;
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.site-info-panel-close:hover {
    background-color: #111;
    color: #fff;
    border-color: #111;
}

.site-info-panel-title {
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.25px;
    font-size: 2rem;
    color: #111;
    margin-bottom: 20px;
}

.site-info-panel-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 34px;
}

.site-info-panel-heading {
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.05rem;
    color: #111;
    margin-bottom: 18px;
}

.site-info-panel-list {
    list-style: none;
    padding: 0;
    margin: 0 0 34px;
}

.site-info-panel-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: #6c757d;
    font-size: 0.92rem;
    line-height: 1.5;
}

.site-info-panel-list i {
    color: var(--accent-red);
    font-size: 1.05rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.site-info-panel-nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 30px;
}

.site-info-panel-nav a {
    font-family: 'Rajdhani', var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    transition: color .2s ease, border-color .2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-info-panel-nav a:hover,
.site-info-panel-nav a.activo {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.site-info-panel-nav a i {
    font-size: 0.95rem;
    opacity: 0.5;
    transition: opacity .2s ease, color .2s ease;
}

.site-info-panel-nav a:hover i,
.site-info-panel-nav a.activo i {
    opacity: 1;
    color: var(--primary-color);
}

@media (max-width: 480px) {
    .site-info-panel {
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        padding: 90px 28px 40px;
        transform: translateX(100%);
    }
}

@media (max-width: 991.98px) {
    .site-header {
        padding: 16px 20px;
    }
    .site-header__nav {
        display: none;
    }
}

/* ==========================================================================
   Luntai Home - Racing Style (inspirado en dev-luntai-dev.pantheonsite.io)
   Clases usadas únicamente por views/inicio.php
   ========================================================================== */

.font-rajdhani {
    font-family: 'Rajdhani', var(--font-heading);
}

.font-body-home {
    font-family: 'Ubuntu', var(--font-body);
    color: var(--gray-text, #808080);
}

/* Eyebrow: etiqueta chica en rojo, muy espaciada (ej. "PERFORMANCE") */
.luntai-eyebrow {
    font-family: 'Heebo', var(--font-body);
    color: var(--accent-red);
    font-weight: 500;
    letter-spacing: 11px;
    font-size: 0.875rem;
    line-height: 1;
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

/* CTA link: texto uppercase + línea larga con punta de flecha, sin fondo */
.cta-arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    font-family: 'Rajdhani', var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 1rem;
    text-decoration: none;
    color: inherit;
    transition: gap .25s ease, color .25s ease;
}

.cta-arrow-link .arrow {
    display: inline-block;
    width: 60px;
    height: 1px;
    background-color: currentColor;
    position: relative;
    transition: width .25s ease;
}

.cta-arrow-link .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3.5px;
    width: 8px;
    height: 8px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.cta-arrow-link:hover {
    color: var(--accent-red);
    gap: 22px;
}

.cta-arrow-link:hover .arrow {
    width: 80px;
}

/* Texto vertical decorativo */
.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 1;
    white-space: nowrap;
}

/* ---- Hero ---- */
.luntai-hero {
    position: relative;
    background-color: #0b0f19;
    padding: 100px 0;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-sizing: border-box;
}
.luntai-hero-floating-img {
    position: absolute;
    left: 10%;
    top: 50%;
    transform: translateY(-50%);
    max-width: 40%;
    max-height: 80%;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
}

@keyframes float-slow-hero {
    0%, 100% {
        transform: translateY(-50%) translateY(0);
    }
    50% {
        transform: translateY(-50%) translateY(-18px);
    }
}

@media (max-width: 991.98px) {
    .luntai-hero-floating-img {
        left: 50%;
        top: 30%;
        transform: translate(-50%, -50%);
        max-width: 60%;
        max-height: 35%;
        opacity: 0.25;
    }
}

@keyframes float-slow-hero-mobile {
    0%, 100% {
        transform: translate(-50%, -50%) translateY(0);
    }
    50% {
        transform: translate(-50%, -50%) translateY(-10px);
    }
}

.luntai-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 24px;
    padding-right: 7%;
}

.luntai-hero-block {
    max-width: 600px;
}

/* Entrada del texto del hero: aparece con fade + leve desplazamiento, en cascada */
@keyframes hero-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.luntai-hero-block > * {
    opacity: 0;
    animation: hero-fade-up 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.luntai-hero-block > *:nth-child(1) { animation-delay: 0.1s; }
.luntai-hero-block > *:nth-child(2) { animation-delay: 0.25s; }
.luntai-hero-block > *:nth-child(3) { animation-delay: 0.4s; }
.luntai-hero-block > *:nth-child(4) { animation-delay: 0.55s; }

@media (prefers-reduced-motion: reduce) {
    .luntai-hero-block > * {
        opacity: 1;
        animation: none;
    }
}

@media (max-width: 991.98px) {
    .luntai-hero-content {
        padding-right: 24px;
    }
}

.luntai-hero-watermark-letter {
    display: inline-block;
    opacity: 0;
    animation: hero-fade-up 0.6s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
    .luntai-hero-watermark-letter {
        opacity: 1;
        animation: none;
    }
}

.luntai-hero-watermark {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    font-size: clamp(9.3rem, 22.5vw, 20.5rem);
    line-height: 0.914;
    letter-spacing: -0.0486em;
    color: rgba(128, 128, 128, 0.25);
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
    user-select: none;
}

.luntai-hero-title {
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: clamp(2.2rem, 5vw, 4.0625rem);
    line-height: 1;
    color: #fff;
    margin-bottom: 26px;
}

.luntai-hero-title .accent {
    color: var(--accent-red);
}

.luntai-hero-text {
    font-family: 'Ubuntu', var(--font-body);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.667;
    max-width: 420px;
    color: #cfcfcf;
}

.luntai-hero-indicator {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 2px;
}

.luntai-hero-indicator .num {
    writing-mode: vertical-rl;
}

.luntai-hero-indicator .line {
    width: 1px;
    height: 70px;
    background: rgba(255, 255, 255, 0.25);
}

/* Botones pill del hero (relleno rojo / outline blanco) */
.btn-luntai {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 15px 26px;
    font-family: 'Rajdhani', var(--font-heading);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-decoration: none;
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.btn-luntai .arrow {
    display: inline-block;
    width: 30px;
    height: 1px;
    background-color: currentColor;
    position: relative;
}

.btn-luntai .arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform: rotate(45deg);
}

.btn-luntai-filled {
    background-color: var(--accent-red);
    color: #111;
    border: 1px solid var(--accent-red);
}

.btn-luntai-filled:hover {
    background-color: #fff;
    color: #111;
    border-color: #fff;
}

.btn-luntai-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-luntai-outline:hover {
    background-color: #fff;
    color: #111;
    border-color: #fff;
}

@media (max-width: 768px) {
    .luntai-hero {
        min-height: 100vh;
        padding: 60px 0;
        text-align: center;
    }
    .luntai-hero-title {
        font-size: 2.1rem;
    }
    .luntai-hero-watermark,
    .luntai-hero-indicator {
        display: none;
    }
}

/* ---- Cards de línea de producto (imagen + watermark horizontal grande) ---- */
.cat-card {
    position: relative;
    display: block;
    height: 420px;
    overflow: hidden;
    background-color: #0b0f19;
    color: #fff;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-sizing: border-box;
}

.cat-card-vtext {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.07);
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    font-size: clamp(4rem, 11vw, 7.5rem);
    letter-spacing: 8px;
    text-transform: uppercase;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.cat-card-img {
    position: absolute;
    right: 5%;
    bottom: 0;
    width: 55%;
    height: 90%;
    object-fit: contain;
    object-position: right bottom;
    z-index: 1;
    transition: var(--transition-smooth);
}

.cat-card:hover .cat-card-img {
    transform: scale(1.06);
}

.cat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(11,15,25,0.35) 0%, rgba(11,15,25,0.1) 45%, rgba(11,15,25,0.85) 100%);
}

.cat-card-top {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    z-index: 3;
}

.cat-card-cta {
    position: absolute;
    left: 30px;
    bottom: 30px;
    z-index: 3;
}

.cat-card-subtitle {
    font-family: 'Heebo', var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-red);
    margin-bottom: 4px;
}

.cat-card-title {
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.5rem;
    letter-spacing: 0.6px;
    color: #fff;
}

.cat-card .cta-arrow-link {
    color: #fff;
}

/* ---- Sección Rendimiento (Performance) ---- */
.stats-section {
    background-color: #0b0f19;
    padding: 110px 0;
}

.stats-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 60px;
}

.stats-header-title {
    font-size: 2.4rem;
    line-height: 1.05;
}

.stats-header-divider {
    width: 1px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

@media (max-width: 576px) {
    .stats-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
    }
    .stats-header-divider {
        display: none;
    }
}

/* Indicador circular (CSS puro, conic-gradient, sin librerías) */
.stat-circle {
    --pct: 0;
    --size: 130px;
    width: var(--size);
    height: var(--size);
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: conic-gradient(var(--accent-red) calc(var(--pct) * 1%), rgba(255, 255, 255, 0.12) 0);
}

.stat-circle::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background-color: #0b0f19;
}

.stat-circle-num {
    position: relative;
    z-index: 1;
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    font-size: 2.2rem;
    color: #fff;
}

.stat-circle-num .unit {
    font-size: 1.1rem;
    color: var(--accent-red);
}

.stat-title {
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1.05rem;
    color: #fff;
    margin-bottom: 8px;
}

.stat-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ---- Carrusel de categorías de uso (Urbanas/Ciclomotores/Enduro) ---- */
.category-slider {
    position: relative;
    background-color: #0b0f19;
    padding: 90px 0 80px;
    overflow: hidden;
}

.category-slider-viewport {
    overflow: hidden;
    position: relative;
}

.category-track {
    display: flex;
    transition: transform .5s cubic-bezier(.25, .8, .25, 1);
    will-change: transform;
}

.category-slide {
    position: relative;
    flex: 0 0 82%;
    max-width: 1600px;
    height: 230px;
    margin: 0 10px;
    overflow: hidden;
}

.category-slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(1);
    transition: filter 0.6s ease;
}

.category-slide.is-active .category-slide-bg {
    filter: grayscale(0);
}

.category-slide-fg {
    position: absolute;
    left: 26%;
    bottom: 0;
    height: 90%;
    width: auto;
    max-width: 620px;
    z-index: 2;
    object-fit: contain;
    filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.5));
}

.category-slide-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 320px;
    max-width: 34%;
    z-index: 3;
    background-color: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.category-slide-mark {
    position: absolute;
    left: 24px;
    bottom: -10px;
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 4.5rem;
    line-height: 1;
    letter-spacing: 4px;
    color: rgba(17, 17, 17, 0.12);
    white-space: nowrap;
    pointer-events: none;
}

.category-slide-info {
    position: relative;
    z-index: 1;
    margin-top: auto;
}

.category-slide-title {
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.4rem;
    letter-spacing: 0.6px;
    color: #171400;
    margin-bottom: 14px;
}

.category-slide-cta {
    color: #171400;
    font-size: 0.75rem;
}

.category-slide-cta:hover {
    color: var(--accent-red);
}

.category-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1600px;
    margin: 30px auto 0;
    padding: 0 20px;
}

.category-pagination-nums {
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.category-pagination-nums #categoryCurrent {
    color: #fff;
}

.category-pagination-bar {
    width: min(60vw, 700px);
    flex: 0 0 auto;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    position: relative;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.category-pagination-bar:hover {
    background-color: rgba(251, 213, 56, 0.5);
}

.category-pagination-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background-color: var(--accent-red);
    transition: left 0.4s cubic-bezier(.25, .8, .25, 1), width 0.2s ease;
}

.category-pagination-bar:hover .category-pagination-fill {
    background-color: var(--accent-red);
}

@media (max-width: 991.98px) {
    .category-slide {
        flex: 0 0 92%;
        height: 190px;
    }
    .category-slide-panel {
        width: 220px;
        padding: 26px 20px;
    }
    .category-slide-fg {
        left: 40%;
        width: auto;
        height: 90%;
    }
}

@media (max-width: 576px) {
    .category-slide {
        flex: 0 0 100%;
        height: 230px;
    }
    .category-slide-panel {
        width: 100%;
        max-width: 100%;
        height: 45%;
        bottom: 0;
        top: auto;
    }
    .category-slide-fg {
        left: 50%;
        top: 5%;
        bottom: auto;
        width: auto;
        height: 90%;
        transform: translateX(-50%);
    }
}

/* ---- Banner "Te hace rodar" ---- */
.rodar-banner {
    position: relative;
    min-height: 100vh;
    background-color: #000;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.rodar-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.3) 45%, rgba(0,0,0,.15) 100%);
    z-index: 1;
}

.rodar-banner--right {
    justify-content: flex-end;
    min-height: 60vh;
}

.rodar-banner--right::before {
    background: linear-gradient(270deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,.1) 100%);
}

.rodar-banner-text {
    position: relative;
    z-index: 2;
    padding: 0 60px;
}

.rodar-banner-title {
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 4.5rem);
    line-height: 1;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .rodar-banner-text {
        padding: 0 24px;
    }
}

/* ---- Banner Adrenalina (reutilizado en tienda.php cuando el filtro = Cubiertas) ---- */
.adrenalina-section {
    position: relative;
    background-color: #0b0f19;
    padding: 90px 0;
    overflow: hidden;
}

.adrenalina-vtext {
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.06);
    font-size: clamp(6rem, 16vw, 15rem);
    letter-spacing: 4px;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.adrenalina-content {
    position: relative;
    z-index: 1;
}

.adrenalina-title {
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2.6rem;
    color: #fff;
    line-height: 1.15;
    margin: 10px 0 20px;
}

.adrenalina-text {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 560px;
}

.adrenalina-section .cta-arrow-link {
    color: #fff;
    margin-top: 24px;
}

.adrenalina-media {
    position: relative;
    z-index: 1;
    min-height: 480px;
}

.adrenalina-media-main {
    position: relative;
    left: 11%;
    z-index: 1;
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.6));
}

.adrenalina-media-detail {
    position: absolute;
    left: 9%;
    transform: translateX(-50%);
    top: 22%;
    z-index: 2;
}

.adrenalina-media-link {
    position: absolute;
    left: 9%;
    top: 0;
    transform: translateX(-50%);
    z-index: 2;
    display: inline-block;
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: color .2s ease;
    cursor: pointer;
}

.adrenalina-media-link:hover {
    color: var(--accent-red);
}

.adrenalina-media-link .triangle {
    color: var(--accent-red);
    font-size: 0.65rem;
    margin-left: 4px;
}

.adrenalina-media-frame {
    position: relative;
    width: 140px;
    height: 200px;
    padding: 10px;
}

.adrenalina-media-frame::before,
.adrenalina-media-frame::after {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
}

.adrenalina-media-frame::before {
    top: 0;
    left: 0;
    border-top: 1px solid var(--accent-red);
    border-left: 1px solid var(--accent-red);
}

.adrenalina-media-frame::after {
    bottom: 0;
    right: 0;
    border-bottom: 1px solid var(--accent-red);
    border-right: 1px solid var(--accent-red);
}

.adrenalina-media-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: rgba(255, 255, 255, 0.03);
}

@media (max-width: 991.98px) {
    .adrenalina-vtext {
        display: none;
    }
}

/* ---- Galería de cámaras (tienda.php cuando el filtro = Cámaras) ---- */
.camara-gallery-section {
    background-color: #0b0f19;
    padding: 90px 0;
}

.camara-gallery {
    display: flex;
    gap: 16px;
    height: 460px;
}

.camara-gallery-main {
    position: relative;
    flex: 1 1 55%;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.camara-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.camara-gallery-main:hover img {
    transform: scale(1.05);
}

.camara-gallery-grid {
    flex: 1 1 45%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
}

.camara-gallery-thumb {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.camara-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.camara-gallery-thumb:hover img {
    transform: scale(1.08);
}

.camara-gallery-thumb.active {
    border-color: var(--accent-red);
}

@media (max-width: 767.98px) {
    .camara-gallery {
        flex-direction: column;
        height: auto;
    }
    .camara-gallery-main {
        height: 260px;
    }
    .camara-gallery-grid {
        height: 260px;
    }
}

/* ---- Página de Contacto / Mayoristas (fondo blanco, minimal, rojo) ---- */
.contact-page-section {
    background-color: #fff;
    padding: 70px 0 100px;
}

.contact-page-eyebrow {
    font-family: 'Heebo', var(--font-body);
    color: var(--accent-red);
    font-weight: 500;
    letter-spacing: 11px;
    font-size: 0.875rem;
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.contact-page-title {
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2.8rem;
    color: #111;
    line-height: 1;
    margin-bottom: 24px;
}

.contact-page-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-page-info {
    padding-right: 40px;
    border-right: 1px solid #e5e5e5;
}

.contact-page-office-title {
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
    color: #111;
    margin-bottom: 20px;
}

.contact-page-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-page-info-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #6c757d;
    font-size: 0.95rem;
}

.contact-page-info-list i {
    color: var(--accent-red);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-page-form {
    padding-left: 40px;
}

.contact-page-field {
    margin-bottom: 30px;
}

.contact-page-field label {
    display: block;
    font-weight: 600;
    color: #111;
    font-size: 0.95rem;
    margin-bottom: 14px;
}

.contact-page-field input,
.contact-page-field textarea {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 6px 0;
    font-size: 0.95rem;
    color: #111;
    background: transparent;
    outline: none;
    transition: border-color .2s ease;
    resize: none;
}

.contact-page-field input:focus,
.contact-page-field textarea:focus {
    border-color: var(--accent-red);
}

.contact-page-submit {
    background-color: var(--accent-red);
    color: #111;
    border: none;
    padding: 14px 32px;
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    border-radius: 3px;
    transition: var(--transition-smooth);
}

.contact-page-submit:hover {
    background-color: #111;
    color: var(--accent-red);
}

@media (max-width: 991.98px) {
    .contact-page-info {
        padding-right: 0;
        border-right: none;
        margin-bottom: 40px;
    }
    .contact-page-form {
        padding-left: 0;
    }
}

/* ---- Página Nosotros ---- */
.nosotros-header-section {
    padding-bottom: 90px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.nosotros-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(4rem, 10vw, 8rem);
    color: rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
}

.nosotros-video-link {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #111;
    text-decoration: none;
    margin-bottom: 14px;
}

.nosotros-video-link .triangle {
    color: var(--accent-red);
    font-size: 0.65rem;
}

.nosotros-video-link:hover {
    color: var(--accent-red);
}

.nosotros-photo {
    position: relative;
    z-index: 1;
    width: 92%;
    border-radius: 4px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.nosotros-features {
    background-color: #fff;
    padding-bottom: 90px;
}

.nosotros-feature-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.nosotros-feature-icon {
    width: 46px;
    height: 46px;
    flex-shrink: 0;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-red);
    font-size: 1.2rem;
}

.nosotros-feature-title {
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.05rem;
    color: #111;
    margin-bottom: 8px;
}

.nosotros-feature-desc {
    color: #6c757d;
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

.rodar-banner-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Rajdhani', var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: clamp(5rem, 14vw, 11rem);
    color: rgba(255, 255, 255, 0.06);
    white-space: nowrap;
    z-index: 1;
    pointer-events: none;
}

/* Al pasar el mouse por una opción del nav (que no sea la activa), toda la
   pantalla se atenúa con un overlay fijo, para que se note en cualquier página
   sin importar si el contenido de fondo es claro u oscuro. */
.nav-hover-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    z-index: 1020;
}

/* En páginas de fondo oscuro/azulado, un negro encima queda muy duro:
   se usa un blanco suave y muy tenue para no "apagar" del todo el fondo. */
body.dark-theme .nav-hover-overlay {
    background-color: rgba(255, 255, 255, 0.03);
}

.nav-hover-overlay.is-visible {
    opacity: 1;
}

