/* =================================
   LAYOUT DEL HERO (faltaba por completo
   la versión de escritorio — solo existía
   la versión mobile dentro del media query)
================================= */

.bt-product-hero {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 25px;
}

.bt-product-hero .bt-gallery,
.bt-product-hero .bt-product-info {
    flex: 1 1 0;
    min-width: 0;
}

.bt-divider {
    border: none;
    border-top: 1px solid #262626;
    margin: 20px 0;
}


/* =================================
   PRODUCT INFO
================================= */

.bt-product-info {
    color: #ffffff;
}


/* Rating */

.bt-product-info .bt-rating {
    display: flex;
    align-items: center;
    gap: 10px;
}


.bt-product-info .bt-stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
}


.bt-product-info .bt-rating-text {
    color: #999999;
    font-size: 14px;
}


/* Title */

.bt-product-info .bt-title {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
    line-height: 1.2;
    margin: 12px 0;
}


/* Description */

.bt-product-info .bt-description {
    color: #b8b8b8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}


/* Price */

.bt-product-info .bt-price-row {
    display: flex;
    align-items: center;
    gap: 12px;
}


.bt-product-info .bt-price-current {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
}


.bt-product-info .bt-price-old {
    color: #777777;
    text-decoration: line-through;
}


.bt-product-info .bt-discount {
    background: #ff6a00;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 700;
}