:root {
    /* Color Palette */
    --color-bg: #0d0d0d;
    --color-bg-darker: #050505;
    --color-card: #141414;
    --color-card-border: #222;
    --color-accent: #ff5500;  /* Action Orange */
    --color-accent-hover: #ff7733;
    --color-text: #ffffff;
    --color-text-muted: #a3a3a3;
    
    /* Typography */
    --font-main: 'Outfit', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-main);
    background-color: var(--color-bg);
    color: var(--color-text);
}

body {
    overflow-x: hidden;
}

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

h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.1;
}

.text-accent {
    color: var(--color-accent);
}

/* Utilities */
.section {
    padding: 6rem 5%;
}

.bg-darker {
    background-color: var(--color-bg-darker);
}

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

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 3rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.text-left {
    text-align: left;
    margin-bottom: 1.5rem;
}

.description-text {
    color: var(--color-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }
.text-center { text-align: center; }
.w-full { width: 100%; display: block; text-align: center; }
.max-w-sm { max-width: 320px; margin-left: auto; margin-right: auto; }

/* Buttons */
.btn-primary, .btn-outline, .btn-text {
    display: inline-block;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #fff;
    border: 2px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    border-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 85, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-card-border);
}

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

.btn-text {
    background-color: transparent;
    color: var(--color-text-muted);
    padding: 0.9rem 1rem;
}
.btn-text:hover {
    color: #fff;
}

/* Urgencia Banner */
.urgencia-banner {
    background-color: #0d0d0d;
    color: #ff5500;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid rgba(255, 85, 0, 0.2);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    z-index: 100;
    transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
    background-color: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo {
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    cursor: pointer;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.nav-links .btn-outline {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}
.hamburger span {
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background:
        linear-gradient(115deg, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.88) 43%, rgba(0, 0, 0, 0.58) 100%),
        linear-gradient(180deg, rgba(255, 85, 0, 0.10) 0%, transparent 38%),
        #050505;
    display: flex;
    align-items: center;
    padding: 110px 5% 0 5%;
    position: relative;
    overflow: hidden;
}

.hero-bike-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(58vw, 920px);
    height: 100%;
    background: url('assets/....png') no-repeat center center/cover;
    z-index: 1;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;

    /* Difuminar bordes: la bici emerge del fondo sin corte duro */
    mask-image:
        linear-gradient(to bottom, black 60%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    mask-composite: intersect;
    -webkit-mask-image:
        linear-gradient(to bottom, black 60%, transparent 100%),
        linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
    -webkit-mask-composite: source-in;
}

/* Ocultar en desktop, solo se usa en mobile */
.hero-bike-mobile-wrapper {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(to right, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.82) 34%, rgba(0, 0, 0, 0.32) 72%, rgba(0, 0, 0, 0.48) 100%),
        linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, transparent 38%);
    z-index: 2;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 3;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content {
    max-width: 600px;
    margin-top: 8vh;
    margin-bottom: 2rem;
    position: relative;
    z-index: 4;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 0.9;
    font-style: italic;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1.1rem;
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.5;
}

.hero-price-highlight {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    margin: 0.6rem 0 1.8rem;
    color: #ffffff;
    font-size: clamp(1.1rem, 3vw, 1.6rem);
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.55);
    position: relative;
}

.hero-price-highlight::before {
    content: '⚡ PRECIO ESPECIAL';
    display: block;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ff5500;
    background: rgba(255, 85, 0, 0.12);
    border: 1px solid rgba(255, 85, 0, 0.3);
    border-radius: 999px;
    padding: 0.2rem 0.75rem;
    margin-bottom: 0.4rem;
    width: fit-content;
    animation: pricePulse 2.5s ease-in-out infinite;
}

@keyframes pricePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 85, 0, 0); }
    50% { box-shadow: 0 0 12px 3px rgba(255, 85, 0, 0.2); }
}

.hero-price-highlight span {
    color: #ff5500;
    font-size: clamp(3rem, 9vw, 6.5rem);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.9;
    text-shadow: 0 0 40px rgba(255, 85, 0, 0.35), 0 4px 20px rgba(0,0,0,0.6);
    display: block;
}

.btn-whatsapp-hero {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-accent);
    color: #fff;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    gap: 1rem;
    transition: transform 0.3s, background-color 0.3s;
}

.btn-whatsapp-hero:hover {
    transform: scale(1.05);
    background-color: var(--color-accent-hover);
}

.btn-whatsapp-hero .wa-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-whatsapp-hero .btn-text-content {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.btn-whatsapp-hero .btn-text-content strong {
    font-size: 1.1rem;
}

.btn-whatsapp-hero .btn-text-content span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
    line-height: 1.2;
    color: #ccc;
}

.hero-features .feature svg {
    width: 28px;
    height: 28px;
    opacity: 0.8;
}

.hero-price-card {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 2rem;
    width: min(100%, 760px);
    gap: 3rem;
    position: relative;
    z-index: 4;
}

.price-left {
    display: flex;
    flex-direction: column;
}

.bike-model {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.bike-specs {
    font-size: 0.8rem;
    color: #aaa;
    letter-spacing: 1px;
}

.price-divider {
    width: 1px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.2);
}

.price-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hasta {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #aaa;
}

.cuotas {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
}

.cuotas .num {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
}

.cuotas .text {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.1;
}

.con-todas {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.hero-brands {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #888;
    font-weight: 800;
    font-style: italic;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 4;
}

/* Grids & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.grid-single {
    grid-template-columns: 1fr;
}

.card {
    background-color: var(--color-card);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.4s ease, border-color 0.4s ease;
    border: 1px solid var(--color-card-border);
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 85, 0, 0.4);
}

.card-img-wrapper {
    height: 350px;
    overflow: hidden;
    position: relative;
    background-color: #000;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 0.8s ease, opacity 0.4s ease;
}

.card:hover .card-img {
    transform: scale(1.08);
    opacity: 1;
}

/* Testimonios Section */
.testimonios-section {
    background-color: var(--color-bg-darker);
}

.testimonios-heading {
    text-align: center;
    margin-bottom: 3rem;
}

.clientes-contador {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    color: var(--color-accent);
    font-weight: 800;
    font-size: 1.2rem;
}

.contador-numero {
    font-size: 2rem;
    color: #ff5500;
}

.contador-texto {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonio-card {
    background-color: var(--color-card);
    border: 1px solid var(--color-card-border);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.testimonio-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 85, 0, 0.4);
}

.testimonio-content {
    text-align: center;
}

.testimonio-texto {
    color: var(--color-text);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonio-autor {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.autor-nombre {
    font-weight: 700;
    color: var(--color-accent);
    font-size: 1rem;
}

.autor-barrio {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-section {
    --pricing-accent: #d7ff32;
    --pricing-warning: #ffd84d;
    --pricing-panel: #101010;
    --pricing-line: rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(180deg, rgba(215, 255, 50, 0.06), transparent 34%),
        var(--color-bg-darker);
}

.pricing-heading {
    max-width: 780px;
    margin: 0 auto 2rem;
    text-align: center;
}

.pricing-heading .section-title {
    margin-bottom: 1rem;
}

.pricing-heading p {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.55;
}

.pricing-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--pricing-warning);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-kicker::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pricing-warning);
    box-shadow: 0 0 18px rgba(255, 216, 77, 0.7);
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.pricing-card {
    display: grid;
    grid-template-columns: 1fr;
    overflow: hidden;
    background: var(--pricing-panel);
    border: 1px solid var(--pricing-line);
    border-radius: 8px;
}

.pricing-card-featured {
    border-color: rgba(215, 255, 50, 0.36);
    box-shadow: 0 18px 50px rgba(215, 255, 50, 0.08);
}

.pricing-img-wrap {
    height: 190px;
    background: #000;
    overflow: hidden;
}

.pricing-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
}

.pricing-content {
    display: flex;
    flex-direction: column;
    padding: 1.2rem;
}

.pricing-tag {
    width: fit-content;
    margin-bottom: 0.8rem;
    padding: 0.28rem 0.7rem;
    border-radius: 999px;
    background: rgba(215, 255, 50, 0.12);
    color: var(--pricing-accent);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-content h3 {
    margin-bottom: 0.85rem;
    font-size: 1.45rem;
}

.pricing-price {
    margin-bottom: 1rem;
    color: var(--color-text-muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.pricing-price strong {
    display: block;
    margin-top: 0.1rem;
    color: var(--pricing-warning);
    font-size: clamp(2rem, 10vw, 2.8rem);
    line-height: 0.95;
}

.pricing-no-price {
    color: var(--pricing-warning);
    font-size: 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
}

.pricing-list {
    display: grid;
    gap: 0.55rem;
    margin: 0 0 1.25rem;
    padding: 0;
    color: var(--color-text-muted);
    list-style: none;
    font-size: 0.95rem;
}

.pricing-list li {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.pricing-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--pricing-accent);
}

.pricing-btn {
    width: 100%;
    margin-top: auto;
    text-align: center;
}

/* ===== SECCIÓN BICICLETAS DESTACADAS ===== */
#bicicletas {
    background:
        linear-gradient(180deg, rgba(215, 255, 50, 0.04) 0%, transparent 30%),
        var(--color-bg);
}

.section-heading {
    max-width: 720px;
    margin: 0 auto 3.5rem;
    text-align: center;
}

.section-heading .section-title {
    margin-bottom: 0.75rem;
    font-size: clamp(2rem, 5vw, 3.2rem);
}

.section-intro {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 700px) {
    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2rem;
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 2rem;
    }
}

.product-card {
    display: flex;
    flex-direction: column;
    background-color: var(--color-card);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    overflow: hidden;
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.35s ease,
                border-color 0.35s ease;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.product-card:hover,
.product-card:focus-visible {
    transform: translateY(-8px);
    border-color: rgba(255, 85, 0, 0.5);
    box-shadow: 0 16px 48px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,85,0,0.15);
    outline: none;
}

/* --- Imagen con overlay gradient --- */
.product-img-wrapper {
    position: relative;
    height: 280px;
    overflow: hidden;
    background: #060606;
}

@media (min-width: 1024px) {
    .product-img-wrapper {
        height: 300px;
    }
}

.product-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 45%,
        rgba(0,0,0,0.55) 80%,
        rgba(0,0,0,0.85) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

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

/* Badge flotante sobre la imagen */
.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: 0.28rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 85, 0, 0.9);
    backdrop-filter: blur(6px);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Precio flotante sobre la imagen (esquina inferior derecha) */
.product-price-overlay {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    z-index: 2;
    background: rgba(10,10,10,0.75);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,85,0,0.35);
    border-radius: 8px;
    padding: 0.35rem 0.9rem;
    color: #ff5500;
    font-weight: 900;
    font-size: 1.15rem;
    line-height: 1;
    letter-spacing: -0.5px;
    white-space: nowrap;
}

/* --- Contenido bajo la imagen --- */
.product-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.4rem 1.5rem 1.6rem;
    gap: 0;
}

.product-content h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.3px;
}

.product-specs {
    display: grid;
    gap: 0.5rem;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
}

.product-specs li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.3;
}

.product-specs li::before {
    content: '';
    flex: 0 0 auto;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,85,0,0.12);
    border: 1.5px solid rgba(255,85,0,0.4);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpolyline points='2,6 5,9 10,3' fill='none' stroke='%23ff5500' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10px;
}

/* Badge de cuotas dentro de la card */
.product-cuotas {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
}

.cuotas-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.22rem 0.65rem;
    border-radius: 999px;
    background: rgba(255, 85, 0, 0.1);
    border: 1px solid rgba(255, 85, 0, 0.3);
    color: #ff5500;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.cuotas-sub {
    font-size: 0.72rem;
    color: var(--color-text-muted);
    font-weight: 500;
    white-space: nowrap;
}

/* Separador sutil antes del botón */
.product-divider {
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.07);
    margin-bottom: 1.4rem;
    margin-top: 0.75rem;
    padding-top: 0;
}

.product-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.85rem 1.2rem;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 8px;
    border: none;
    letter-spacing: 0.3px;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.product-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37,211,102,0.3);
}

.product-btn svg {
    flex-shrink: 0;
}

.bike-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}

.bike-modal.active {
    display: flex;
}

.bike-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(6px);
}

.bike-modal-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    width: min(960px, 100%);
    max-height: min(720px, 92vh);
    overflow: hidden;
    background: var(--color-card);
    border: 1px solid var(--color-card-border);
    border-radius: 8px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.bike-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
}

.bike-modal-img-wrapper {
    min-height: 420px;
    background: #000;
}

.bike-modal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bike-modal-content {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    overflow-y: auto;
}

.bike-modal-content h3 {
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    margin-bottom: 1.2rem;
}

.bike-modal-specs {
    font-size: 1rem;
    margin-bottom: 2rem;
}

.card-content {
    padding: 2.5rem;
    position: relative;
}

.badge {
    background-color: rgba(255, 85, 0, 0.15);
    color: var(--color-accent);
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
}

.card-price-badge {
    color: #d7ff32;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.card-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.card-content p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.view-more {
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    cursor: pointer;
}

.grid-row-card {
    display: flex;
    flex-direction: row;
}

.grid-row-card .card-img-wrapper {
    flex: 1;
    height: 450px;
}

.grid-row-card .card-content {
    flex: 1;
    padding: 4rem;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact Area */
.contact-box {
    background-color: var(--color-card);
    padding: 4rem 3rem;
    border-radius: 8px;
    margin: 0 auto;
    max-width: 800px;
    border: 1px solid var(--color-card-border);
    position: relative;
    overflow: hidden;
}

/* Glowing pseudo element for contact box */
.contact-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background-color: var(--color-accent);
}

.contact-info {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    gap: 1.5rem;
    background-color: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 6px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.05rem;
    color: #fff;
}

.info-item .icon {
    font-size: 1.5rem;
}

.contact-cta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
}

.btn-location {
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.04);
}

/* Footer */
.footer {
    padding: 3rem 5%;
    border-top: 1px solid var(--color-card-border);
    background-color: var(--color-bg-darker);
    text-align: center;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 1rem;
}

.footer p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slider-fade {
    transition: opacity 0.5s ease-in-out;
}

.slider-fade.fade-out {
    opacity: 0;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s ease, transform 0.3s ease, color 0.3s ease;
}

.slider-arrow:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

.slider-arrow svg {
    width: 28px;
    height: 28px;
}

/* =============================================
   HERO — DESKTOP SIZING (min-width: 1024px)
   ============================================= */
@media (min-width: 1024px) {
    .hero {
        min-height: 85vh;
        padding-top: 90px;
        padding-bottom: 2rem;
    }

    .hero h1 {
        font-size: clamp(2.4rem, 4.5vw, 4.2rem);
    }

    .hero-content {
        margin-top: 4vh;
        margin-bottom: 1.5rem;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .grid-row-card {
        flex-direction: column;
    }
    .grid-row-card .card-content {
        padding: 2.5rem;
    }
    .grid-row-card .card-img-wrapper {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background-color: rgba(5, 5, 5, 0.98);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: right 0.4s ease;
    }

    .nav-links a {
        font-size: 1.5rem;
    }

    .navbar {
        padding: 5px 5%; /* Mínimo posible */
        min-height: 50px;
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
        z-index: 101;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .navbar .logo img {
        height: 40px !important; /* Mínimo absoluto para salvar espacio */
    }

    .btn-nav-mobile {
        display: none !important; /* Ocultamos botón secundario como solicitaste */
    }
    
    .hamburger {
        margin-left: 0;
    }

    .hero {
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: space-between; /* Como pediste */
        padding: 50px 16px 8px 16px; /* 50px exactos para salvar la altura del navbar */
    }
    
    .hero-container {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding: 0;
        margin: 0;
    }

    .hero-bike-layer {
        display: none; /* Ocultamos el fondo absoluto en celular */
    }

    .hero-bike-mobile-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: flex-end; /* Anclamos el contenedor al fondo */
        flex-grow: 1; 
        width: 100%;
        margin: 0;
    }

    .hero-bike-img-mobile {
        width: 100%;
        height: 50vh; /* Bajamos estrictamente a 50vh para que SIEMPRE entre sin scroll */
        object-fit: contain;
        object-position: bottom center; /* La gravedad hace su trabajo: las ruedas tocan el piso */
        margin: 0; 
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        height: 100%;
        min-height: 100%; /* Forzamos a que ocupe todo el 100vh */
        flex-shrink: 0; /* Evitamos que la tarjeta de precio lo comprima */
        margin-top: 0;
    }

    .hero h1 {
        font-size: 2rem; 
        line-height: 1; /* Cero aire entre las dos líneas */
        margin: 0; /* Cero margen arriba y abajo */
    }
    
    .hide-on-mobile {
        display: none !important;
    }

    .hero h1, .hero p, .btn-whatsapp-hero {
        max-width: 100%;
    }

    .btn-whatsapp-hero {
        padding: 10px 15px; 
        margin: 0 auto; /* Cero aire con respecto a la foto o texto */
    }
    
    .btn-full-width-mobile {
        width: 100%;
        justify-content: center;
    }

    .btn-whatsapp-hero .btn-text-content strong {
        font-size: 0.85rem; /* Letra un poco más grande */
    }
    .btn-whatsapp-hero .btn-text-content span {
        font-size: 0.75rem;
    }

    .hero-features {
        display: none !important; /* Ocultamos para cumplir con el orden estricto y que la bici toque el fondo */
    }
    
    .feature {
        flex-direction: row;
        text-align: left;
        gap: 0.5rem;
    }
    
    .feature svg {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255,255,255,0.3);
        border-radius: 50%;
        padding: 6px;
    }
    
    .feature span {
        font-size: 0.75rem;
    }

    .slider-arrow {
        display: none; /* In case the new ones don't match exactly, just clear this out or let the new one override cleanly */
    }

    .hero-overlay {
        background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.3) 100%);
        z-index: 0; /* En mobile el overlay no tapa la bici */
    }

    .hero-price-card {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
        align-items: center;
        text-align: center;
        margin: 2rem auto;
    }
    
    .price-right {
        align-items: center;
    }

    .price-divider {
        width: 100%;
        height: 1px;
    }

    .hero-brands {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }
    
    .contact-box {
        padding: 2rem 1.5rem;
    }
}

/* =============================================
   RESPONSIVE FIXES - MOBILE
   ============================================= */

/* --- Sección general --- */
@media (max-width: 768px) {

    /* Sección padding reducido */
    .section {
        padding: 3rem 5%;
    }

    /* Section titles más chicos */
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
        letter-spacing: -0.5px;
    }

    /* Grid de bicis: columna única siempre */
    .grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Altura de imagen en cards más razonable */
    .card-img-wrapper {
        height: 220px;
    }

    /* Padding interno de cards */
    .card-content {
        padding: 1.5rem;
    }

    /* Accesorios: imagen arriba, texto abajo */
    .grid-row-card {
        flex-direction: column;
    }

    .grid-row-card .card-img-wrapper {
        height: 220px;
        flex: none;
    }

    .grid-row-card .card-content {
        flex: none;
        padding: 1.5rem;
    }

    /* Hero price card: compacto */
    .hero-price-card {
        width: 100%;
        margin: 1rem 0;
        padding: 1rem 1.2rem;
        gap: 1rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .cuotas .num {
        font-size: 2.5rem;
    }

    /* Marcas: scroll horizontal en lugar de wrap desordenado */
    .hero-brands {
        overflow-x: auto;
        flex-wrap: nowrap;
        gap: 1.2rem;
        padding-bottom: 0.5rem;
        font-size: 0.9rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    .hero-brands::-webkit-scrollbar {
        display: none;
    }

    /* Contact box: padding ajustado */
    .contact-box {
        padding: 1.5rem 1rem;
    }

    /* Info items: columna */
    .contact-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }

    .info-item {
        font-size: 0.9rem;
    }

    .contact-cta {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    /* Botón WhatsApp contacto: ancho completo */
    .contact-cta .btn-primary,
    .contact-cta .btn-outline {
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 1rem;
        font-size: 1rem;
    }

    /* Footer logo más pequeño */
    .footer-logo img {
        height: 80px !important;
    }

    /* Description text más chico */
    .description-text {
        font-size: 0.95rem;
    }

    /* Botón outline en accesorios */
    .btn-outline {
        display: block;
        text-align: center;
        width: 100%;
    }
}

/* --- Pantallas muy chicas (≤ 390px) --- */
@media (max-width: 390px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .btn-whatsapp-hero .btn-text-content strong {
        font-size: 0.78rem;
    }

    .price {
        font-size: 2rem;
    }

    .card-img-wrapper {
        height: 180px;
    }

    .section-title {
        font-size: 1.5rem;
    }
}

/* =============================================
   HERO RESPONSIVE REWORK
   ============================================= */

@media (min-width: 769px) and (max-width: 1100px) {
    .hero-bike-layer {
        right: 0;
        width: 62vw;
        height: 100%;
    }

    .hero-content {
        max-width: 520px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        height: auto;
        align-items: stretch;
        justify-content: flex-start;
        padding: 58px 16px 0;
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.86) 52%, rgba(0, 0, 0, 0.98) 100%),
            #050505;
    }

    .hero-overlay {
        background:
            linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, transparent 42%, rgba(0, 0, 0, 0.82) 100%);
        z-index: 1;
    }

    .hero-container {
        min-height: calc(100svh - 58px);
        justify-content: flex-start;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-height: 0;
        height: auto;
        flex-shrink: 1;
        gap: 0.75rem;
        margin: 0;
        padding-top: 0.4rem;
        text-align: center;
    }

    .hero h1 {
        font-size: clamp(2rem, 11vw, 3.25rem);
        line-height: 0.92;
        margin: 0;
        max-width: 11ch;
    }

    .btn-whatsapp-hero {
        width: min(100%, 360px);
        min-height: 52px;
        justify-content: center;
        padding: 0.7rem 0.9rem;
        margin: 0;
        gap: 0.65rem;
        border-radius: 6px;
    }

    .btn-whatsapp-hero .wa-icon svg {
        width: 26px;
        height: 26px;
    }

    .btn-whatsapp-hero .btn-text-content strong {
        font-size: clamp(0.78rem, 3.4vw, 0.95rem);
        white-space: normal;
    }

    .btn-whatsapp-hero .btn-text-content span {
        font-size: 0.68rem;
    }

    .hero-bike-mobile-wrapper {
        display: flex;
        align-items: stretch;
        justify-content: center;
        width: calc(100% + 32px);
        min-height: 260px;
        flex: 1 1 40vh;
        margin: 0.25rem -16px 0;
        overflow: hidden;
        background: #000;
    }

    .hero-bike-img-mobile {
        width: 100%;
        height: min(42svh, 390px);
        min-height: 260px;
        object-fit: cover;
        object-position: center center;
        filter: none;
    }

    .hero-price-card {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 0.85rem;
        margin: 0.75rem 0 0;
        padding: 0.85rem;
        border-radius: 8px;
    }

    .price-left {
        min-width: 0;
        text-align: left;
    }

    .bike-model,
    .bike-specs,
    .con-todas {
        letter-spacing: 0;
    }

    .bike-model {
        font-size: 0.72rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 100%;
    }

    .price {
        font-size: clamp(1.8rem, 8vw, 2.6rem);
    }

    .bike-specs {
        font-size: 0.68rem;
        line-height: 1.25;
    }

    .price-divider {
        width: 1px;
        height: 54px;
        flex: 0 0 auto;
    }

    .price-right {
        flex: 0 0 auto;
        align-items: flex-start;
    }

    .hasta,
    .con-todas {
        font-size: 0.62rem;
    }

    .cuotas {
        gap: 0.35rem;
        margin: 0.2rem 0;
    }

    .cuotas svg {
        width: 20px;
        height: 20px;
    }

    .cuotas .num {
        font-size: 2rem;
    }

    .cuotas .text {
        font-size: 0.72rem;
    }

    .slider-arrow {
        top: calc(58px + 42svh);
        bottom: auto;
        width: 42px;
        height: 42px;
        background: rgba(0, 0, 0, 0.58);
        transform: translateY(-50%);
    }

    .slider-arrow:hover {
        transform: translateY(-50%) scale(1.05);
    }

    .slider-arrow.prev {
        left: 12px;
    }

    .slider-arrow.next {
        right: 12px;
    }

    .hero-brands {
        width: calc(100% + 32px);
        margin: 0.8rem -16px 0;
        padding: 0.8rem 16px 1rem;
        border-top-color: rgba(255, 255, 255, 0.08);
    }
}

@media (max-width: 390px) {
    .hero-bike-mobile-wrapper {
        min-height: 230px;
    }

    .hero-bike-img-mobile {
        height: 36svh;
        min-height: 230px;
    }

    .hero-price-card {
        gap: 0.65rem;
        padding: 0.75rem;
    }

    .bike-specs {
        display: none;
    }

    .price-divider {
        height: 48px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 6px 5%;
        min-height: 62px;
    }

    .navbar .logo img {
        height: 58px !important;
    }

    .hero {
        padding-top: 68px;
    }

    .hero-container {
        min-height: calc(100svh - 68px);
    }

    .slider-arrow {
        top: calc(68px + 42svh);
    }
}

@media (max-width: 768px) {
    .section-heading {
        margin-bottom: 2rem;
    }

    .section-intro {
        font-size: 0.95rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .product-card {
        display: grid;
        grid-template-columns: 42% 1fr;
        min-height: 190px;
    }

    .product-img-wrapper {
        height: 100%;
        min-height: 190px;
    }

    .product-content {
        padding: 1rem;
    }

    .product-topline {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.45rem;
        margin-bottom: 0.75rem;
    }

    .product-content h3 {
        font-size: 1.05rem;
        margin-bottom: 0.75rem;
    }

    .product-specs {
        gap: 0.35rem;
        margin-bottom: 1rem;
        font-size: 0.82rem;
    }

    .product-btn {
        padding: 0.7rem 0.75rem;
        font-size: 0.82rem;
    }

    .bike-modal {
        padding: 0.75rem;
    }

    .bike-modal-panel {
        grid-template-columns: 1fr;
        max-height: 92vh;
        overflow-y: auto;
    }

    .bike-modal-img-wrapper {
        min-height: 0;
        height: 260px;
    }

    .bike-modal-content {
        padding: 1.25rem;
    }

    .bike-modal-content h3 {
        font-size: 1.55rem;
    }
}

@media (min-width: 700px) {
    .pricing-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }

    .pricing-card {
        min-height: 100%;
    }
}

@media (min-width: 900px) {
    .pricing-heading {
        margin-bottom: 3rem;
    }

    .pricing-img-wrap {
        height: 230px;
    }

    .pricing-content {
        padding: 1.5rem;
    }

    .pricing-card-featured {
        transform: translateY(-10px);
    }
}

@media (max-width: 390px) {
    .product-card {
        grid-template-columns: 1fr;
    }

    .product-img-wrapper {
        height: 180px;
        min-height: 0;
    }
}

/* =============================================
   MEDIOS DE PAGO
   ============================================= */
.pagos-section {
    background:
        linear-gradient(180deg, rgba(255, 85, 0, 0.05) 0%, transparent 100%),
        #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 1.6rem 5%;
}

.pagos-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Grupo individual (Visa+MC / Resto) */
.pagos-group {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

/* Logos Visa + MC */
.pagos-logos {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.pago-logo {
    display: block;
    object-fit: contain;
    /* Fondo oscuro → filtro para hacer los logos visibles */
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.pago-logo:hover {
    opacity: 1;
}

.pago-logo--visa {
    height: 22px;
    width: auto;
}

.pago-logo--mc {
    height: 32px;
    width: auto;
    /* Mastercard tiene sus propios colores; restauramos parcialmente */
    filter: none;
    opacity: 0.9;
}

/* Ícono tarjeta genérica */
.pagos-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text-muted);
    flex-shrink: 0;
}

/* Info (badge + descripción) */
.pagos-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.pagos-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.22rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.pagos-badge--highlight {
    background: rgba(255, 85, 0, 0.12);
    border: 1px solid rgba(255, 85, 0, 0.35);
    color: #ff5500;
}

.pagos-badge--secondary {
    background: rgba(255, 85, 0, 0.12);
    border: 1px solid rgba(255, 85, 0, 0.3);
    color: var(--color-accent);
}

.pagos-desc {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    font-weight: 500;
    letter-spacing: 0.3px;
    margin: 0;
}

/* Separador vertical desktop / horizontal mobile */
.pagos-sep {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
    .pagos-inner {
        flex-direction: column;
        gap: 1.4rem;
        align-items: flex-start;
    }

    .pagos-sep {
        width: 100%;
        height: 1px;
    }

    .pagos-group {
        width: 100%;
    }
}

/* ---- FLECHAS DEL SLIDER HERO ---- */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(10, 10, 10, 0.7);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.slider-arrow:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    transform: translateY(-50%) scale(1.1);
}
.slider-arrow.prev { left: 2%; }
.slider-arrow.next { right: 2%; }

.slider-arrow svg { width: 24px; height: 24px; }

/* ---- FLECHAS DE GALERÍA (TARJETAS) ---- */
.pg-arrows {
    position: absolute;
    inset: 0;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0.5rem;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-img-wrapper:hover .pg-arrows {
    opacity: 1;
}
.pg-arrow {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.2s, transform 0.2s;
}
.pg-arrow:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}
.pg-arrow svg { width: 18px; height: 18px; }

@media (max-width: 768px) {
    .slider-arrow {
        display: flex !important;
        top: 35%; /* Ajuste para mobile, sobre la imagen */
        bottom: auto;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
    }
    .slider-arrow svg { width: 20px; height: 20px; }
    
    .product-btn {
        width: 100%;
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
        white-space: normal;
        text-align: center;
        flex-wrap: wrap;
    }
    .pg-arrows { opacity: 1; /* Siempre visibles en mobile */ }
}

/* Admin polish fixes: pagos + mobile layout */
.pagos-logos {
    min-height: 38px;
}

.pago-logo {
    filter: none;
}

.pago-logo--visa,
.pago-logo--mc {
    width: 72px;
    height: 34px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .urgencia-banner {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 10000;
        min-height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.45rem 0.75rem;
        line-height: 1.15;
    }

    .navbar {
        top: 32px;
        min-height: 62px;
    }

    .hero {
        padding-top: 104px;
    }

    .hero-container {
        min-height: calc(100svh - 104px);
    }

    .slider-arrow {
        top: 56% !important;
    }

    .product-btn {
        min-height: 46px;
        padding: 0.72rem 0.7rem;
        gap: 0.4rem;
        line-height: 1.15;
        overflow: visible;
        white-space: normal;
        word-break: normal;
    }
}

@media (max-width: 520px) {
    .product-card {
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .product-img-wrapper {
        height: 210px;
        min-height: 0;
    }

    .product-content {
        padding: 1rem;
    }
}
