/* =================================
   BOTÓN NATIVO DE WOOCOMMERCE
   (reemplaza al antiguo .bt-buy-button estático)
================================= */

.bt-wc-add-to-cart form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.bt-wc-add-to-cart .quantity {
    margin: 0;
}

.bt-wc-add-to-cart .qty {
    width: 64px;
    height: 52px;
    background: #151515;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    color: #ffffff;
    text-align: center;
    font-size: 15px;
}

.bt-wc-add-to-cart .single_add_to_cart_button,
.bt-wc-add-to-cart button[type="submit"] {
    flex: 1 1 200px;
    display: block;
    width: 100%;
    background: #ff6a00;
    color: #ffffff;
    text-align: center;
    padding: 16px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background .15s ease, transform .1s ease;
}

.bt-wc-add-to-cart .single_add_to_cart_button:hover {
    background: #e85d00;
}

.bt-wc-add-to-cart .single_add_to_cart_button:active {
    transform: translateY(1px);
}

.bt-wc-add-to-cart .single_add_to_cart_button.disabled {
    opacity: .5;
    cursor: not-allowed;
}

/* Producto agotado */
.bt-wc-add-to-cart p.stock.out-of-stock {
    color: #ff5252;
    font-weight: 700;
    font-size: 13px;
    width: 100%;
}

.bt-wc-add-to-cart p.stock.in-stock {
    color: #4caf50;
    font-size: 13px;
    width: 100%;
}

/* Variaciones (productos con Color/Talla/etc.) */
.bt-wc-add-to-cart table.variations {
    width: 100%;
    border: none;
    margin-bottom: 4px;
}

.bt-wc-add-to-cart table.variations td,
.bt-wc-add-to-cart table.variations th {
    border: none;
    padding: 4px 0;
}

.bt-wc-add-to-cart table.variations label {
    color: #999999;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
}

.bt-wc-add-to-cart .variations select {
    width: 100%;
    background: #151515;
    border: 1px solid #2a2a2a;
    color: #ffffff;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 14px;
}

.bt-wc-add-to-cart .woocommerce-variation-price .price {
    color: #ffffff;
    font-size: 20px;
    font-weight: 700;
}

.bt-wc-add-to-cart .woocommerce-variation-add-to-cart {
    width: 100%;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bt-wc-add-to-cart a.reset_variations {
    color: #999999;
    font-size: 12px;
    display: inline-block;
    margin-top: 6px;
}

/* =================================
   PRECIO (WooCommerce price html)
================================= */
.bt-price-row .price {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
}

.bt-price-row .price ins {
    text-decoration: none;
    color: #ffffff;
}

.bt-price-row .price del {
    color: #777777;
    font-weight: 400;
    font-size: 18px;
    opacity: 1;
}

.bt-price-row .price .woocommerce-Price-amount {
    font-size: inherit;
}


/* =================================
   GUARANTEES
================================= */

.bt-guarantees {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}


.bt-guarantee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #cccccc;
    font-size: 13px;
}


.bt-guarantee-item svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: #ff6a00;
}


/* =================================
   REVIEW
================================= */

.bt-review {
    margin-top: 25px;
}


.bt-review-header {
    display: flex;
    align-items: center;
    gap: 12px;
}


.bt-review-header img {
    width: 45px;
    height: 45px;
    max-width: 45px;
    max-height: 45px;
    border-radius: 50%;
    object-fit: cover;
}


.bt-review-stars {
    color: #ffc107;
    font-size: 18px;
    letter-spacing: 2px;
    margin-top: 12px;
}


.bt-review p {
    color: #cccccc;
    line-height: 1.5;
}

.bt-verified {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #4caf50;
    font-size: 12px;
    font-weight: 600;
}

.bt-blue-check {
    color: #4caf50;
}


/* =================================
   STICKY ADD TO CART (corregido:
   antes había 2 reglas peleando con
   transform + left/right = desalineado)
================================= */

.bt-sticky-cart {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 999999;

    display: flex;
    align-items: center;
    gap: 12px;

    background: #111111;
    border: 1px solid #262626;
    padding: 10px 12px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
}

.bt-sticky-cart img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    object-fit: cover;
    flex-shrink: 0;
}

.bt-sticky-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    gap: 2px;
}

.bt-sticky-info strong {
    color: #ffffff;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bt-sticky-info span {
    color: #ff6a00;
    font-weight: 700;
    font-size: 14px;
}

.bt-sticky-info .price {
    color: #ff6a00;
    font-weight: 700;
    font-size: 14px;
    display: flex;
    gap: 6px;
}

.bt-sticky-info .price del {
    color: #777777;
    font-size: 12px;
}

.bt-sticky-button {
    flex-shrink: 0;
    background: #ff6a00;
    color: #ffffff;
    font-weight: 700;
    font-size: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    white-space: nowrap;
    transition: background .15s ease;
}

.bt-sticky-button:hover {
    background: #e85d00;
}


/* =================================
   CARRITO — contador y feedback
================================= */

.bt-cart {
    position: relative;
}

.bt-cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ff6a00;
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
}

.bt-cart-bump svg {
    animation: bt-cart-bump .5s ease;
}

@keyframes bt-cart-bump {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.3); }
}


/* =================================
   SECCIONES DE LA LANDING — estilo "flow"
   (sin tarjetas con borde, tipografía grande,
   divisores finos en vez de cajas cuadradas)
================================= */

.bt-flow-features,
.bt-flow-benefits,
.bt-flow-faq,
.final-cta {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 25px;
}

/* ---- Features: banda continua ---- */
.bt-flow-features {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    border-top: 1px solid #1e1e1e;
    border-bottom: 1px solid #1e1e1e;
}

.bt-flow-feature {
    flex: 1;
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.bt-flow-feature-icon {
    font-size: 26px;
    line-height: 1;
    flex-shrink: 0;
}

.bt-flow-feature h3 {
    color: #ffffff;
    font-size: 15px;
    margin: 0 0 4px;
}

.bt-flow-feature p {
    color: #999999;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}

.bt-flow-divider {
    width: 1px;
    align-self: stretch;
    background: #1e1e1e;
}

/* ---- Beneficios: lista editorial numerada ---- */
.bt-flow-benefits h2 {
    color: #ffffff;
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 40px;
    max-width: 560px;
    line-height: 1.2;
}

.bt-flow-benefit-list {
    display: flex;
    flex-direction: column;
}

.bt-flow-benefit-row {
    display: flex;
    align-items: baseline;
    gap: 24px;
    padding: 24px 0;
    border-top: 1px solid #1e1e1e;
}

.bt-flow-benefit-row:last-child {
    border-bottom: 1px solid #1e1e1e;
}

.bt-flow-benefit-n {
    font-size: 14px;
    font-weight: 700;
    color: #ff6a00;
    flex-shrink: 0;
    width: 32px;
}

.bt-flow-benefit-row h3 {
    color: #ffffff;
    font-size: 19px;
    margin: 0 0 4px;
}

.bt-flow-benefit-row p {
    color: #999999;
    font-size: 14px;
    margin: 0;
}

/* ---- FAQ: acordeón sin cajas ---- */
.bt-flow-faq h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 24px;
    text-align: center;
}

.bt-flow-faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.bt-flow-faq-item {
    border-bottom: 1px solid #1e1e1e;
}

.bt-flow-faq-item:first-child {
    border-top: 1px solid #1e1e1e;
}

.bt-flow-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 4px;
    background: none;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    text-align: left;
    cursor: pointer;
}

.bt-flow-faq-icon {
    color: #ff6a00;
    font-size: 20px;
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform .2s ease;
}

.bt-flow-faq-item.is-open .bt-flow-faq-icon {
    transform: rotate(45deg);
}

.bt-flow-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
}

.bt-flow-faq-item.is-open .bt-flow-faq-answer {
    max-height: 200px;
}

.bt-flow-faq-answer p {
    color: #999999;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
    padding: 0 4px;
}

/* ---- CTA final: banda de ancho completo ---- */
.final-cta {
    max-width: 100%;
    text-align: center;
    background: linear-gradient(180deg, #151515, #0a0a0a);
    padding: 80px 25px;
    border-top: 1px solid #1e1e1e;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 800;
    margin: 0 0 12px;
}

.bt-cta-subtitle {
    color: #999999;
    font-size: 14px;
    margin: 0 0 28px;
}

.btn-buy {
    display: inline-block;
    background: #ff6a00;
    color: #ffffff;
    font-weight: 700;
    padding: 16px 44px;
    border-radius: 10px;
    font-size: 15px;
    transition: background .15s ease;
}

.btn-buy:hover {
    background: #e85d00;
}

@media (max-width: 768px) {
    .bt-flow-features {
        flex-direction: column;
        gap: 24px;
        padding: 40px 25px;
    }

    .bt-flow-divider {
        display: none;
    }

    .bt-flow-benefits h2,
    .final-cta h2 {
        font-size: 24px;
    }

    .bt-flow-benefits,
    .bt-flow-faq,
    .final-cta {
        padding: 48px 20px;
    }
}


/* =================================
   WHATSAPP FLOTANTE Y REDES DEL FOOTER
================================= */

.bt-whatsapp-float {
    position: fixed;
    bottom: 92px;
    right: 16px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,.35);
    z-index: 999998;
    transition: transform .15s ease;
}

.bt-whatsapp-float:hover {
    transform: scale(1.06);
}

.bt-whatsapp-float svg {
    width: 26px;
    height: 26px;
}

.bt-footer-socials {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 14px;
}

.bt-footer-socials a {
    color: #999999;
    font-size: 13px;
    font-weight: 600;
    transition: color .15s ease;
}

.bt-footer-socials a:hover {
    color: #ff6a00;
}

@media (max-width: 768px) {
    .bt-whatsapp-float {
        bottom: 88px;
        right: 12px;
        width: 46px;
        height: 46px;
    }
}


/* =================================
   TRUST BAR
================================= */

.bt-trust-bar {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 25px !important;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    border-bottom: 1px solid #1e1e1e;
}

.bt-trust-bar-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1 1 140px;
    text-align: center;
}

.bt-trust-bar-item strong {
    color: #ffffff;
    font-size: 17px;
}

.bt-trust-bar-item span {
    color: #999999;
    font-size: 12px;
}


/* =================================
   SHOWCASE (imagen + texto)
================================= */

.bt-showcase {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 25px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.bt-showcase-reverse {
    flex-direction: row-reverse;
}

.bt-showcase-media {
    flex: 1 1 0;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.bt-showcase-media img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.bt-showcase-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #ff6a00;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 999px;
}

.bt-showcase-content {
    flex: 1 1 0;
    color: #ffffff;
}

.bt-showcase-content h2 {
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 14px;
    line-height: 1.2;
}

.bt-showcase-content p {
    color: #999999;
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 20px;
}

.bt-showcase-highlight {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #151515;
    border: 1px solid #262626;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}

.bt-showcase-highlight-icon {
    color: #ff6a00;
    font-weight: 700;
    flex-shrink: 0;
}

.bt-showcase-highlight p {
    margin: 0;
    color: #cccccc;
    font-size: 14px;
}


/* =================================
   STAT CALLOUT (círculo de %)
================================= */

.bt-stat-callout {
    max-width: 900px;
    margin: 0 auto;
    padding: 56px 25px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.bt-stat-circle {
    flex-shrink: 0;
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #151515;
    border: 3px solid #ff6a00;
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bt-stat-content {
    color: #ffffff;
}

.bt-stat-text {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
    line-height: 1.4;
}

.bt-stat-note {
    color: #777777;
    font-size: 12px;
    margin: 0 0 18px;
}


/* =================================
   BENEFICIOS EN CÍRCULO
================================= */

.bt-circle-benefits {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 25px;
    text-align: center;
}

.bt-circle-benefits h2 {
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    margin: 0 0 10px;
}

.bt-circle-subtitle {
    color: #999999;
    font-size: 14px;
    margin: 0 0 40px;
}

.bt-circle-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.bt-circle-col {
    display: flex;
    flex-direction: column;
    gap: 32px;
    flex: 1 1 220px;
}

.bt-circle-media {
    flex: 0 0 260px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px dashed #ff6a00;
    padding: 6px;
}

.bt-circle-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.bt-circle-item {
    text-align: left;
}

.bt-circle-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 8px;
}

.bt-circle-item h3 {
    color: #ffffff;
    font-size: 15px;
    margin: 0 0 4px;
}

.bt-circle-item p {
    color: #999999;
    font-size: 13px;
    margin: 0;
    line-height: 1.5;
}


/* =================================
   COMPARATIVA (nosotros vs otros)
================================= */

.bt-comparison-flow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 64px 25px;
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.bt-comparison-intro {
    flex: 1 1 320px;
}

.bt-comparison-intro h2 {
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 14px;
}

.bt-comparison-intro p {
    color: #999999;
    font-size: 14px;
    margin: 0 0 24px;
    line-height: 1.6;
}

.bt-comparison-table {
    flex: 1 1 420px;
    border: 1px solid #262626;
    border-radius: 14px;
    overflow: hidden;
}

.bt-comparison-head,
.bt-comparison-row {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    align-items: center;
}

.bt-comparison-head {
    padding: 14px 18px;
    background: #151515;
}

.bt-comparison-head span {
    color: #999999;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: center;
}

.bt-comparison-head span:first-child {
    text-align: left;
}

.bt-comparison-head-us {
    color: #ff6a00 !important;
}

.bt-comparison-row {
    padding: 14px 18px;
    border-top: 1px solid #1e1e1e;
}

.bt-comparison-label {
    color: #ffffff;
    font-size: 13px;
}

.bt-comparison-us,
.bt-comparison-them {
    text-align: center;
    font-weight: 700;
}

.bt-comparison-us {
    color: #ff6a00;
}

.bt-comparison-them {
    color: #555555;
}


/* =================================
   RESPONSIVE — secciones nuevas
================================= */

@media (max-width: 768px) {
    .bt-showcase,
    .bt-showcase-reverse {
        flex-direction: column;
    }

    .bt-stat-callout {
        flex-direction: column;
        text-align: center;
    }

    .bt-circle-grid {
        flex-direction: column;
    }

    .bt-circle-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        gap: 20px;
    }

    .bt-circle-item {
        text-align: center;
        flex: 1 1 140px;
    }

    .bt-circle-media {
        order: -1;
    }

    .bt-comparison-flow {
        flex-direction: column;
    }

    .bt-comparison-head span,
    .bt-comparison-label {
        font-size: 11px;
    }
}
