/* Product detail video hero styles */
.video-hero{
    position:relative;
    overflow:hidden;
    height: calc(100vh - 100px);
    display:block;
    background:#111;
    width:100%;
}
.video-hero .bg-video,
.video-hero .bg-image{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:auto;
    object-fit:cover;
    z-index:0;
    pointer-events:none;
}
.video-hero .bg-image{width:100%;height:100%;top:0;left:0;transform:none;object-fit:cover}
.video-hero .video-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
    z-index:1;
    pointer-events:none;
}
.video-hero .hero-content{
    position:relative;
    z-index:2;
    color:#fff;
    padding:40px 0;
    height: 100%;
}
.video-hero .text-accent{color:#c3df00}
.video-hero .hero-title{font-size:2.2rem;margin-top:.5rem}
.video-hero .hero-copy{margin-top:.75rem}

.main-logo-video{
    width: 100%;
}

.product-stats{
    font-family: 'Danaela', sans-serif;
    /* Responsive font: scales from 1rem on small screens up to 4rem on large screens */
    font-size: clamp(1rem, 4vw, 4rem);
    color: #fff;
}

.stat-value{
    /* Responsive stat value: scales from 1.5rem up to 7rem */
    font-size: clamp(1.5rem, 6vw, 7rem);
    font-weight: 700;
}


.product-branding{
    background-image: url('/static/images/product_details/product-background.png');
    background-size: cover;
    background-position: center;
    padding: 60px 0;
    color: #fff;
    min-height: 570px;
    font-size: 25px;
    font-weight: 300;
}

.product-branding p{
    font-size: 15px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 1px;
}

.product-gallery{
    background-image: url('/static/images/product_details/bg-black.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
}

.image-hero{
    background-image: url('/static/images/product_details/bg-gray.jpg');
    height: calc(100vh - 100px);
    background-size: cover;
    background-position: center;
}

.bg-light{
    color: #111 !important;
}



#productGalleryCarousel {
    max-height: 760px;
    
}

#productGalleryCarousel .carousel-inner {
    max-height: 760px;
    
}

#productGalleryCarousel img {
    max-height: 760px !important;
    height: 100% !important;
    object-fit: contain;
}

.dowloads{
    min-height: 430px;
}

.manual-usuario{
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 0;
    height: 430px;
}

.ficha-tecnica{
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 60px 0;
    height: 430px;
}

.respaldo-mb{
    background-image: url('/static/images/product_details/bg-gray.jpg');
    background-size: cover;
    background-position: center;
    color: #000;
    padding: 60px 0;
    min-height: 430px;
}

.video-content{
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    height: auto;    
}

@media (max-width: 767px) {
    .bg-video {
        width: 100%;
        height: auto;
        top: 10 !important; 
        left: 0;
        transform: none;
    }
    .video-content{
        top: 50%;
    }
}

.bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 360-view overrides: ensure images respect intended height and cover */
#360-view-carousel img.main-360-view,
#360-view-carousel img.carousel-frame,
#360-view-carousel .carousel-frame.main-360-view {
    /* make images fill the carousel container height */
    height: 100% !important;
    max-height: none !important;
    width: auto !important;
    display: block !important;
    object-fit: cover !important;
    max-width: 100% !important;
}



img.main-360-view,
 img.carousel-frame {
    min-height: 100% !important;
    max-width: none !important;
    align-self: stretch !important;
    max-width: 100% !important;
}

/* Variant color swatches */
.variant-color-swatch{
    display:inline-block;
    width:30px;
    height:30px;
    border-radius:50%;
    margin:0 5px;
    cursor:pointer;
    box-sizing: border-box;
    border: 2px solid rgba(0,0,0,0.12);
}
.variant-color-swatch.active{
    border-color: #000;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.06) inset;
}


/* Contenedor centrado abajo */
.custom-indicators {
    position: static; /* 👈 clave (quita absolute) */
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* Botones normales */
.custom-indicators button {
    width: 10px;
    height: 10px;
    background-color: #000 !important; /* negro */
    opacity: 0.4;
    border: none;
}

/* Activo */
.custom-indicators .active {
    opacity: 1;
}