/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/

/* ============================================
   HOME - Cards de produto conforme print
   ============================================ */
body.home .home-product-section {
    max-width: 1240px;
    margin: 0 auto 60px auto;
    padding: 0 18px;
}

body.home .home-product-section__header {
    text-align: left;
    margin-bottom: 34px;
}

body.home .home-product-section__title {
    font-size: 36px;
    font-weight: 800;
    margin: 0 0 10px 0;
    color: #111;
}

body.home .home-product-section__description {
    font-size: 18px;
    color: #555;
    margin: 0 auto;
    max-width: 760px;
    line-height: 1.6;
}

body.home .home-product-section__empty-msg {
    text-align: center;
    font-size: 18px;
    color: #6b6b6b;
    margin: 40px auto;
}

body.home .home-product-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 22px;
}

@media (max-width: 1440px) {
    body.home .home-product-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}

@media (max-width: 1280px) {
    body.home .home-product-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 1024px) {
    body.home .home-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 820px) {
    body.home .home-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }
}

@media (max-width: 360px) {
    body.home .home-product-grid {
        grid-template-columns: 1fr;
    }
}

body.home .home-product-card-col .col-inner {
    padding: 0 !important;
    height: 100%;
}

body.home .home-product-card {
    background: #ffffff;
    border-radius: 22px;
    border: 1px solid #f3f3f3;
    box-shadow: 0 10px 28px rgba(15, 16, 23, 0.07);
    padding: 22px 18px 24px 18px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    height: 100%;
    text-align: left;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.home .home-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

body.home .home-product-card__image-inner {
    width: calc(100% + 16px);
    margin-left: -8px;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #f4f4f4;
    display: block;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,0.02);
}

body.home .home-product-card__image-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

body.home .home-product-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
}

body.home .home-product-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #141414;
    text-decoration: none;
    line-height: 1.45;
    min-height: 70px;
    max-height: 5.4em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    word-break: break-word;
    margin-top: 4px;
}

body.home .home-product-card__price-old {
    font-size: 15px;
    color: #7a7a7a;
    text-decoration: line-through;
}

body.home .home-product-card__price-current {
    font-size: 23px;
    font-weight: 800;
    color: #0f0f0f;
}

body.home .home-product-card__price-line {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 10px;
}

body.home .home-product-card__price-prefix {
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
    color: #6a6a6a;
}

body.home .home-product-card__installment {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 6px;
    font-size: 14px;
    color: #6f6f6f;
    margin-top: 6px;
}

body.home .home-product-card__installment-icon {
    width: 16px;
    height: 16px;
    color: #a4a4a4;
}

body.home .home-product-card__image-link {
    display: block;
}

body.home .home-product-card__cta {
    margin-top: 16px;
    background: #232323;
    color: #fff;
    padding: 11px 20px;
    border-radius: 28px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    width: auto;
    min-width: 140px;
    align-self: flex-start;
    box-shadow: none;
    transition: background 0.2s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

body.home .home-product-card__cta::after {
    content: '→';
    margin-left: 6px;
    font-size: 15px;
}

body.home .home-product-card__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(208, 0, 0, 0.4);
}

body.home .home-product-card__cta:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(208, 0, 0, 0.35);
}

body.home .home-product-card__cta:active {
    transform: translateY(0);
}

body.home .home-product-card__cta.is-loading,
body.home .home-product-card__cta:disabled {
    opacity: 0.75;
    cursor: not-allowed;
}

/* ============================================
   SINGLE PRODUCT - Layout mobile conforme print
   ============================================ */
@media (max-width: 768px) {
    body.single-product,
    body.single-product #wrapper,
    body.single-product .page-wrapper,
    body.single-product .site-main {
        background: #ffffff !important;
    }

    .single-product .site-main,
    .single-product #main,
    .single-product .container,
    .single-product .product-main,
    .single-product .product-container {
        margin: 0 !important;
        padding: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        max-width: 100% !important;
    }

    .single-product .product-main {
        display: block !important;
        border-radius: 0 !important;
    }

    .single-product .product-gallery.col,
    .single-product .product-info.summary.col {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding: 0 !important;
    }

    .single-product .product-gallery {
        margin-bottom: 24px !important;
        padding: 0 20px !important;
    }

    .single-product .woocommerce-product-gallery__wrapper,
    .single-product .woocommerce-product-gallery__image,
    .single-product .woocommerce-product-gallery__image a {
        width: 100% !important;
        display: block !important;
    }

    .single-product .woocommerce-product-gallery__image img,
    .single-product .product-gallery img {
        width: 100% !important;
        height: auto !important;
        border-radius: 20px !important;
        object-fit: cover !important;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12) !important;
    }

    .single-product .woocommerce-product-gallery .flex-control-thumbs {
        margin-top: 12px !important;
        display: flex !important;
        gap: 8px !important;
        overflow-x: auto !important;
        padding: 0 !important;
        scrollbar-width: none;
    }

    .single-product .woocommerce-product-gallery .flex-control-thumbs::-webkit-scrollbar {
        display: none;
    }

    .single-product .woocommerce-product-gallery .flex-control-thumbs li {
        width: 68px !important;
        flex: 0 0 68px !important;
        margin: 0 !important;
    }

    .single-product .woocommerce-product-gallery .flex-control-thumbs li img {
        border-radius: 12px !important;
        border: 2px solid #e8e8e8 !important;
        transition: border-color 0.2s ease !important;
        background: #ffffff !important;
        box-shadow: none !important;
    }

    .single-product .woocommerce-product-gallery .flex-control-thumbs li img.flex-active,
    .single-product .woocommerce-product-gallery .flex-control-thumbs li img:hover {
        border-color: #1a5f3f !important;
    }

    .single-product .product-info.summary {
        background: #ffffff !important;
        padding: 0 20px 40px 20px !important;
    }

    .single-product .woocommerce-breadcrumb {
        font-size: 12px !important;
        color: #8e8e8e !important;
        margin: 0 0 18px 0 !important;
        text-transform: none !important;
        letter-spacing: 0 !important;
    }

    .single-product .woocommerce-breadcrumb a {
        color: #8e8e8e !important;
    }

    .single-product .product-badges-wrapper {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin: 0 0 14px 0 !important;
    }

    .single-product .product-badge {
        padding: 5px 10px !important;
        border-radius: 4px !important;
        font-size: 9px !important;
        letter-spacing: 0.08em !important;
        text-transform: uppercase !important;
        font-weight: 700 !important;
        background: #f0f0f0 !important;
        color: #5a5a5a !important;
        border: none !important;
    }

    .single-product .product-badge.badge-exclusive {
        background: #1a5f3f !important;
        color: #ffffff !important;
    }

    .single-product .product-badge.badge-bestseller {
        background: #d32f2f !important;
        color: #ffffff !important;
    }

    .single-product .product-info.summary .product_title {
        font-size: 20px !important;
        line-height: 1.4 !important;
        font-weight: 700 !important;
        color: #1a5f3f !important;
        margin: 0 0 20px 0 !important;
        text-align: left !important;
    }

    .single-product .product-info.summary .price {
        font-size: 32px !important;
        font-weight: 700 !important;
        color: #000000 !important;
        margin: 0 0 8px 0 !important;
        text-align: left !important;
        line-height: 1.2 !important;
    }

    .single-product .product-info.summary .price del {
        display: none !important;
    }

    .single-product .product-info.summary .price ins {
        text-decoration: none !important;
        font-weight: 700 !important;
    }

    .single-product .product-installment-info {
        display: flex !important;
        align-items: center !important;
        gap: 7px !important;
        font-size: 14px !important;
        color: #333333 !important;
        margin: 0 0 16px 0 !important;
        text-align: left !important;
        font-weight: 400 !important;
    }

    .single-product .product-installment-info strong {
        font-weight: 600 !important;
        color: #000000 !important;
    }

    .single-product .product-installment-info::before {
        content: '';
        width: 20px;
        height: 14px;
        border: 2px solid #2c2c2c;
        border-radius: 3px;
        display: inline-block;
        flex-shrink: 0;
        background: #ffffff;
        box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.08);
    }

    .single-product .payment-methods-link {
        margin: 0 0 20px 0 !important;
        display: inline-block !important;
        font-size: 13px !important;
        font-weight: 400 !important;
        color: #666666 !important;
        text-decoration: underline !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

    .single-product .payment-methods-link::before {
        content: '+';
        margin-right: 4px;
        font-weight: 600;
    }

    .single-product .payment-methods-link:hover {
        color: #1a5f3f !important;
    }

    .single-product .variations {
        margin: 0 0 18px 0 !important;
        padding: 0 !important;
        border: none !important;
    }

    .single-product .variations td.label {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #2c2c2c !important;
        padding-bottom: 10px !important;
    }

    .single-product .variations .variation-buttons {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 10px !important;
        justify-content: flex-start !important;
    }

    .single-product .variations .variation-button {
        min-width: 100px !important;
        padding: 12px 18px !important;
        border-radius: 8px !important;
        border: 1px solid #d8d8d8 !important;
        background: #ffffff !important;
        font-weight: 600 !important;
        text-transform: none !important;
        font-size: 14px !important;
        color: #2c2c2c !important;
        box-shadow: none !important;
        transition: all 0.2s ease !important;
    }

    .single-product .variations .variation-button.selected {
        background: #1a5f3f !important;
        color: #ffffff !important;
        border-color: #1a5f3f !important;
    }

    .single-product form.cart {
        gap: 16px !important;
        padding: 0 !important;
        border: none !important;
        margin-top: 22px !important;
    }

    .single-product form.cart .quantity {
        align-self: center !important;
        border-radius: 10px !important;
        border: 1px solid #d8d8d8 !important;
        overflow: hidden !important;
        background: #ffffff !important;
        display: inline-flex !important;
    }

    .single-product form.cart .quantity button,
    .single-product form.cart .quantity .minus,
    .single-product form.cart .quantity .plus {
        width: 44px !important;
        height: 44px !important;
        font-size: 18px !important;
        font-weight: 700 !important;
        background: #f8f8f8 !important;
        color: #2c2c2c !important;
        border: none !important;
    }

    .single-product form.cart .quantity .qty {
        width: 60px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        text-align: center !important;
        border: none !important;
    }

    .single-product form.cart .quantity button:focus,
    .single-product form.cart .quantity .minus:focus,
    .single-product form.cart .quantity .plus:focus {
        outline: none !important;
        background: #eeeeee !important;
    }

    .single-product .single_add_to_cart_button {
        width: 100% !important;
        border-radius: 10px !important;
        padding: 16px !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.04em !important;
        background: #28a745 !important;
        color: #ffffff !important;
        border: none !important;
        box-shadow: 0 8px 20px rgba(40, 167, 69, 0.3) !important;
        transition: all 0.2s ease !important;
    }

    .single-product .single_add_to_cart_button:hover {
        background: #218838 !important;
        box-shadow: 0 10px 24px rgba(40, 167, 69, 0.4) !important;
        transform: translateY(-1px) !important;
    }
}

@media (max-width: 768px) {
    body.home .home-product-card {
        border-radius: 18px;
        padding: 16px;
    }

    body.home .home-product-card__image-inner {
        aspect-ratio: 2 / 3;
        border-radius: 14px;
    }

    body.home .home-product-card__title {
        font-size: 16px;
        min-height: auto;
    }

    body.home .home-product-card__price-current {
        font-size: 21px;
    }

    body.home .home-product-card__cta {
        font-size: 16px;
        padding: 12px;
    }
}


/* ============================================
   MELHORIAS NA PÁGINA DE PRODUTO
   ============================================ */

/* ===== BOTÃO DE COMPRAR ARREDONDADO E MELHORADO ===== */
.product-info.summary .single_add_to_cart_button,
.product-info.summary button[type="submit"].single_add_to_cart_button,
.product-info.summary .button.single_add_to_cart_button,
.product-info.summary form.cart .single_add_to_cart_button,
.product-info.summary form.cart button[type="submit"],
.product-info.summary .cart .single_add_to_cart_button,
.product-info.summary .cart button[type="submit"] {
    border-radius: 8px !important; /* Arredondamento sutil seguindo padrão do site */
    -webkit-border-radius: 8px !important;
    -moz-border-radius: 8px !important;
    background: #28a745 !important; /* Verde sólido padrão */
    color: #fff !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    padding: 16px 32px !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(40, 167, 69, 0.3) !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    width: 100% !important;
    max-width: 100% !important;
    cursor: pointer !important;
    display: inline-block !important;
    outline: none !important;
    -webkit-outline: none !important;
    -moz-outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    outline-offset: 0 !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

.product-info.summary .single_add_to_cart_button:hover,
.product-info.summary .single_add_to_cart_button:focus,
.product-info.summary .single_add_to_cart_button:active,
.product-info.summary button[type="submit"].single_add_to_cart_button:hover,
.product-info.summary button[type="submit"].single_add_to_cart_button:focus,
.product-info.summary button[type="submit"].single_add_to_cart_button:active,
.product-info.summary .button.single_add_to_cart_button:hover,
.product-info.summary .button.single_add_to_cart_button:focus,
.product-info.summary .button.single_add_to_cart_button:active,
.product-info.summary form.cart .single_add_to_cart_button:hover,
.product-info.summary form.cart .single_add_to_cart_button:focus,
.product-info.summary form.cart .single_add_to_cart_button:active,
.product-info.summary form.cart button[type="submit"]:hover,
.product-info.summary form.cart button[type="submit"]:focus,
.product-info.summary form.cart button[type="submit"]:active,
.product-info.summary .cart .single_add_to_cart_button:hover,
.product-info.summary .cart .single_add_to_cart_button:focus,
.product-info.summary .cart .single_add_to_cart_button:active,
.product-info.summary .cart button[type="submit"]:hover,
.product-info.summary .cart button[type="submit"]:focus,
.product-info.summary .cart button[type="submit"]:active {
    background: #218838 !important; /* Verde mais escuro no hover */
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5) !important;
    transform: translateY(-1px) !important;
    outline: none !important;
    -webkit-outline: none !important;
    -moz-outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    outline-offset: 0 !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
    -webkit-box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5) !important;
    -moz-box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5) !important;
}

/* ===== AUMENTAR TAMANHO DA IMAGEM DO PRODUTO ===== */
.product-gallery {
    flex: 0 0 auto !important;
    padding-right: 0 !important;
}

.product-gallery .product-images {
    width: 100% !important;
}

.product-gallery .woocommerce-product-gallery__image img,
.product-gallery .product-image-main img,
.product-gallery img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 0 !important;
}

/* Estilizar thumbnails da galeria */
.product-gallery .flex-control-thumbs {
    margin-top: 15px !important;
    display: flex !important;
    gap: 10px !important;
    flex-wrap: wrap !important;
}

.product-gallery .flex-control-thumbs li {
    width: auto !important;
    margin: 0 !important;
}

.product-gallery .flex-control-thumbs li img {
    border-radius: 4px !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease !important;
}

.product-gallery .flex-control-thumbs li img:hover,
.product-gallery .flex-control-thumbs li img.flex-active {
    border-color: #28a745 !important;
}

/* Aumenta a largura da coluna da galeria - Desktop */
@media (min-width: 769px) {
    .product-container {
        max-width: 1200px !important;
        padding: 40px 20px !important;
    }

    .product-container .row {
        gap: 60px !important;
    }

    .product-container .row .product-gallery.col {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }

    .product-container .row .product-info.summary.col {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
        padding-left: 0 !important;
    }
}

/* ===== AJUSTAR CORES DOS PREÇOS ===== */
/* Preço riscado (antigo) - menor e verde */
.product-info.summary .price del,
.product-info.summary .price .woocommerce-Price-amount.amount del,
.product-info.summary .price-wrapper del,
.product-info.summary .price-wrapper .woocommerce-Price-amount.amount del {
    font-size: 16px !important;
    color: #28a745 !important;
    text-decoration: line-through !important;
    opacity: 1 !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}

/* Preço atual (com desconto) - maior e preto */
.product-info.summary .price ins,
.product-info.summary .price .woocommerce-Price-amount.amount ins,
.product-info.summary .price-wrapper ins {
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #333 !important;
    text-decoration: none !important;
    line-height: 1.2 !important;
}

/* Preço normal (sem desconto) - maior e preto */
.product-info.summary .price .woocommerce-Price-amount.amount:not(del) {
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #333 !important;
    line-height: 1.2 !important;
}

.product-info.summary .price .woocommerce-Price-amount {
    font-weight: 700 !important;
    color: #1f1f1f !important;
}

.product-info.summary .price del .woocommerce-Price-amount {
    font-weight: 500 !important;
    color: #28a745 !important;
}

.product-info.summary .price .woocommerce-Price-currencySymbol {
    font-weight: inherit !important;
}

/* ===== MELHORIAS GERAIS DE ESPAÇAMENTO E LAYOUT ===== */
/* Container principal do produto */
.product-container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
}

.product-container .row {
    align-items: flex-start !important;
    gap: 50px !important;
    margin: 0 !important;
}

/* Garantir que o container principal tenha espaçamento adequado */
.single-product .product-main {
    padding: 0 !important;
}

.product-info.summary {
    padding: 0 !important;
    background: transparent !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
}

/* Tags/Badges do produto */
.product-badges-wrapper {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 15px !important;
    margin-top: 0 !important;
}

.product-badge {
    display: inline-block !important;
    padding: 6px 12px !important;
    border-radius: 4px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    line-height: 1.2 !important;
}

.product-badge.badge-sold {
    background: #f5f5f5 !important;
    color: #666 !important;
}

.product-badge.badge-exclusive {
    background: #e8f5e9 !important;
    color: #1a5f3f !important;
}

.product-badge.badge-bestseller {
    background: #d32f2f !important;
    color: #fff !important;
}

/* Link Formas de Pagamento */
.payment-methods-link {
    display: inline-block !important;
    margin-top: 12px !important;
    font-size: 14px !important;
    color: #666 !important;
    text-decoration: underline !important;
    cursor: pointer !important;
    transition: color 0.2s ease !important;
}

.payment-methods-link:hover {
    color: #28a745 !important;
}

/* Logos de Cartões */
.payment-cards-logos {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 20px !important;
    margin-bottom: 0 !important;
    flex-wrap: wrap !important;
}

.payment-card-logo {
    height: 24px !important;
    width: auto !important;
    object-fit: contain !important;
    opacity: 0.8 !important;
    transition: opacity 0.2s ease !important;
}

.payment-card-logo:hover {
    opacity: 1 !important;
}

/* Seção Devoluções Gratuitas */
.returns-section {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-top: 25px !important;
    margin-bottom: 0 !important;
    padding: 16px !important;
    background: #f9f9f9 !important;
    border-radius: 8px !important;
    border: 1px solid #e0e0e0 !important;
}

.returns-icon {
    flex-shrink: 0 !important;
    width: 32px !important;
    height: 32px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: #e8f5e9 !important;
    border-radius: 50% !important;
}

.returns-icon svg {
    width: 20px !important;
    height: 20px !important;
}

.returns-content {
    flex: 1 !important;
}

.returns-content strong {
    display: block !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #333 !important;
    margin-bottom: 4px !important;
}

.returns-content p {
    margin: 0 !important;
    font-size: 13px !important;
    color: #666 !important;
    line-height: 1.5 !important;
}

.returns-content a {
    color: #28a745 !important;
    text-decoration: underline !important;
}

.returns-content a:hover {
    color: #218838 !important;
}

/* Seção Cálculo de Entrega */
.shipping-calculator-section {
    margin-top: 25px !important;
    margin-bottom: 0 !important;
}

.shipping-label {
    display: block !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 10px !important;
}

.shipping-input-wrapper {
    display: flex !important;
    gap: 8px !important;
    align-items: stretch !important;
}

.shipping-cep-input {
    flex: 1 !important;
    padding: 12px 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    color: #333 !important;
    outline: none !important;
    transition: border-color 0.2s ease !important;
}

.shipping-cep-input:focus {
    border-color: #28a745 !important;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1) !important;
}

.shipping-cep-input::placeholder {
    color: #999 !important;
}

.shipping-calculate-btn {
    padding: 12px 24px !important;
    background: #333 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    white-space: nowrap !important;
}

.shipping-calculate-btn:hover {
    background: #000 !important;
    transform: translateY(-1px) !important;
}

.shipping-calculate-btn:active {
    transform: translateY(0) !important;
}

.shipping-result {
    margin-top: 12px !important;
    padding: 12px 16px !important;
    background: #e8f5e9 !important;
    border-radius: 6px !important;
    font-size: 14px !important;
    color: #1a5f3f !important;
    font-weight: 500 !important;
}

.product-info.summary .product_title {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #1a5f3f !important;
    margin-bottom: 20px !important;
    margin-top: 15px !important;
    line-height: 1.4 !important;
    padding: 0 !important;
}

.product-info.summary .price-wrapper,
.product-info.summary .price {
    margin: 20px 0 0 0 !important;
    padding: 0 !important;
    display: block !important;
    align-items: baseline !important;
    gap: 0 !important;
}

/* Parcelamento abaixo do preço */
.product-installment-info {
    display: block !important;
    margin-top: 8px !important;
    margin-bottom: 0 !important;
    font-size: 14px !important;
    color: #666 !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}

/* Esconde preço duplicado que aparece após variações */
.product-info.summary .woocommerce-variation-price {
    display: none !important;
}

.product-info.summary form.cart .woocommerce-variation-price {
    display: none !important;
}

.product-info.summary .single_variation_wrap .woocommerce-variation-price {
    display: none !important;
}

.product-info.summary .single_variation .woocommerce-variation-price {
    display: none !important;
}

/* Garantir que apenas o preço principal seja visível */
.product-info.summary > .price-wrapper,
.product-info.summary > .price {
    display: flex !important;
}

/* Limpar espaçamento extra */
.product-info.summary .price-wrapper > .price {
    margin: 0 !important;
}

.product-info.summary .woocommerce-product-details__short-description {
    margin: 25px 0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    color: #555 !important;
}

.product-info.summary .woocommerce-product-details__short-description strong {
    display: inline-block;
    margin-right: 6px;
}

.product-info.summary .cart {
    margin: 30px 0 20px 0 !important;
}

/* ===== AVISO DE DESCONTO PIX ===== */
.pix-highlight {
    margin: 0 0 0 0;
    padding: 16px 20px;
    background: #f9fafb;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    display: none !important; /* Ocultar por enquanto conforme print */
}

.pix-highlight__title {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

.pix-highlight__value {
    margin: 0;
    font-size: 14px;
    color: #374151;
    line-height: 1.5;
}

.pix-highlight__value strong {
    color: #047857;
}

.delivery-info {
    display: none !important; /* Ocultar por enquanto conforme print */
    align-items: center;
    gap: 10px;
    margin: 16px 0 0 0;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #cce5d6;
    background: #eefbf5;
    color: #0f5132;
    font-weight: 600;
    font-size: 15px;
}

.delivery-info strong {
    color: #0c3d25;
}

.delivery-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    flex-shrink: 0;
}

.product-info.summary .woocommerce-message,
.product-info.summary .woocommerce-info,
.product-info.summary .woocommerce-error,
.product-info.summary .woocommerce-notice {
    margin-bottom: 16px !important;
}

/* Melhora espaçamento entre variações */
.product-info.summary .variations {
    margin: 30px 0 !important;
    width: 100% !important;
    align-items: flex-start !important;
}

.product-info.summary .variations td.label {
    font-weight: 600 !important;
    color: #333 !important;
    font-size: 14px !important;
    padding-bottom: 10px !important;
    padding-top: 0 !important;
}

/* Converter variações para botões (não dropdown) */
.product-info.summary .variations td.value {
    position: relative !important;
}

.product-info.summary .variations td.value.has-variation-buttons select {
    display: none !important;
}

.product-info.summary .variations .variation-buttons {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-top: 8px !important;
}

.product-info.summary .variations .variation-button {
    padding: 10px 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    background: #fff !important;
    color: #333 !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    min-width: 120px !important;
    text-align: center !important;
}

.product-info.summary .variations .variation-button:hover {
    border-color: #999 !important;
    background: #f9f9f9 !important;
}

.product-info.summary .variations .variation-button.selected {
    border-color: #1a5f3f !important;
    background: #e8f5e9 !important;
    color: #1a5f3f !important;
    font-weight: 600 !important;
}

/* Fallback para quando JS não carregar - select padrão */
.product-info.summary .variations td.value:not(.has-variation-buttons) select {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 16px !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    background: #fff !important;
    font-size: 14px !important;
    color: #333 !important;
    cursor: pointer !important;
}

.product-info.summary .variations td.value:not(.has-variation-buttons) select:hover {
    border-color: #999 !important;
}

.product-info.summary .variations td.value:not(.has-variation-buttons) select:focus {
    border-color: #28a745 !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(40, 167, 69, 0.1) !important;
}

.product-info.summary .variations tr {
    margin-bottom: 15px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    border: none !important;
}

.product-info.summary .variations td {
    padding: 10px 0 !important;
    text-align: center !important;
    width: 100% !important;
    border: none !important;
}

.product-info.summary .variations td.label {
    text-align: center !important;
    width: 100% !important;
}

.product-info.summary .variations td.value {
    text-align: center !important;
    width: 100% !important;
}

.product-info.summary .variations td.value select {
    margin: 0 auto !important;
    display: block !important;
    max-width: 100%;
}

.product-info.summary .variations:before,
.product-info.summary .variations:after,
.product-info.summary .variations tr:before,
.product-info.summary .variations tr:after,
.product-info.summary .variations td:before,
.product-info.summary .variations td:after {
    display: none !important;
    content: none !important;
}

.product-info.summary table.variations,
.product-info.summary table.variations th,
.product-info.summary table.variations td {
    border: none !important;
    background: transparent !important;
    box-shadow: none !important;
    width: 100% !important;
}

.product-info.summary table.variations {
    width: 100% !important;
    table-layout: fixed !important;
}

.product-info.summary table.variations tr {
    width: 100% !important;
}

.product-info.summary table.variations td.value,
.product-info.summary table.variations td.label {
    width: 100% !important;
}

.product-info.summary form.cart {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 14px !important;
    width: 100% !important;
    max-width: 100% !important;
}

.product-info.summary form.cart .quantity {
    margin: 0 auto !important;
    align-self: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.product-info.summary form.cart .quantity .qty,
.product-info.summary form.cart .quantity input.qty {
    width: 60px !important;
    text-align: center !important;
    border: none !important;
    box-shadow: none !important;
    font-weight: 600 !important;
    font-size: 16px !important;
}

.product-info.summary form.cart .quantity .minus,
.product-info.summary form.cart .quantity .plus,
.product-info.summary form.cart .quantity button {
    width: 46px !important;
    height: 46px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: none !important;
    background: #fff !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #28a745 !important;
}

.product-info.summary form.cart .quantity .minus:focus,
.product-info.summary form.cart .quantity .minus:active,
.product-info.summary form.cart .quantity .plus:focus,
.product-info.summary form.cart .quantity .plus:active,
.product-info.summary form.cart .quantity button:focus,
.product-info.summary form.cart .quantity button:active {
    background: #f1f3f5 !important;
    color: #218838 !important;
    border: none !important;
    box-shadow: none !important;
}

.product-info.summary form.cart .quantity .minus:hover,
.product-info.summary form.cart .quantity .plus:hover,
.product-info.summary form.cart .quantity button:hover {
    background: #f1f3f5 !important;
    color: #218838 !important;
}

.product-info.summary form.cart .single_add_to_cart_button {
    width: 100% !important;
    max-width: 100% !important;
}

/* ===== REMOVER PONTILHADOS E ARREDONDAR SELETORES ===== */
.product-info.summary select,
.product-info.summary .variations select,
.product-info.summary .variations .value select,
.product-info.summary input[type="text"],
.product-info.summary input[type="number"],
.product-info.summary .quantity input[type="number"],
.product-info.summary .qty,
.product-info.summary .input-text,
.product-info.summary input,
.product-info.summary textarea {
    border-radius: 4px !important; /* Arredondamento sutil seguindo padrão do site */
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    border: 1px solid #ddd !important;
    outline: none !important;
    -webkit-outline: none !important;
    -moz-outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

.product-info.summary select:focus,
.product-info.summary select:active,
.product-info.summary select:hover,
.product-info.summary .variations select:focus,
.product-info.summary .variations select:active,
.product-info.summary .variations select:hover,
.product-info.summary input[type="text"]:focus,
.product-info.summary input[type="text"]:active,
.product-info.summary input[type="number"]:focus,
.product-info.summary input[type="number"]:active,
.product-info.summary .quantity input[type="number"]:focus,
.product-info.summary .quantity input[type="number"]:active,
.product-info.summary .qty:focus,
.product-info.summary .qty:active,
.product-info.summary .input-text:focus,
.product-info.summary .input-text:active,
.product-info.summary input:focus,
.product-info.summary input:active {
    border-color: #28a745 !important;
    outline: none !important;
    -webkit-outline: none !important;
    -moz-outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    outline-offset: 0 !important;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
}

/* Remove outline pontilhado de TODOS os elementos */
.product-info.summary *:focus,
.product-info.summary *:active,
.product-info.summary button:focus,
.product-info.summary button:active,
.product-info.summary a:focus,
.product-info.summary a:active {
    outline: none !important;
    -webkit-outline: none !important;
    -moz-outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    outline-offset: 0 !important;
}

/* Remove pontilhados especificamente do botão quando selecionado/focado */
.product-info.summary button.single_add_to_cart_button::-moz-focus-inner,
.product-info.summary button[type="submit"]::-moz-focus-inner {
    border: 0 !important;
    padding: 0 !important;
    outline: none !important;
}

.product-info.summary button.single_add_to_cart_button:focus-visible,
.product-info.summary button[type="submit"]:focus-visible {
    outline: none !important;
    -webkit-outline: none !important;
    -moz-outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    outline-offset: 0 !important;
    box-shadow: 0 4px 20px rgba(40, 167, 69, 0.4) !important;
}

/* Remove highlight do navegador em mobile */
.product-info.summary button,
.product-info.summary button:active,
.product-info.summary button:focus {
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
}

/* Arredonda botões de quantidade */
.product-info.summary .quantity .minus,
.product-info.summary .quantity .plus,
.product-info.summary .qty-button,
.product-info.summary .quantity button {
    border-radius: 4px !important; /* Arredondamento sutil seguindo padrão do site */
    -webkit-border-radius: 4px !important;
    -moz-border-radius: 4px !important;
    border: 1px solid #ddd !important;
    outline: none !important;
    -webkit-outline: none !important;
    -moz-outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
}

.product-info.summary .quantity .minus:focus,
.product-info.summary .quantity .minus:active,
.product-info.summary .quantity .plus:focus,
.product-info.summary .quantity .plus:active,
.product-info.summary .qty-button:focus,
.product-info.summary .qty-button:active,
.product-info.summary .quantity button:focus,
.product-info.summary .quantity button:active {
    outline: none !important;
    -webkit-outline: none !important;
    -moz-outline: none !important;
    outline-width: 0 !important;
    outline-style: none !important;
    outline-color: transparent !important;
    outline-offset: 0 !important;
    border-color: #28a745 !important;
}

@media (min-width: 1200px) {
    /* Remove todos os containers padrão do Flatsome */
    .single-product .site-main,
    .single-product #main,
    .single-product .container,
    .single-product .row:not(.product-main) {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    /* Card principal centralizado */
    .single-product .product-main {
        max-width: 1200px !important;
        margin: 50px auto 50px auto !important;
        background: #ffffff !important;
        border-radius: 24px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 70px !important;
        padding: 56px 64px 56px 64px !important;
        position: relative !important;
        min-height: 680px !important;
    }
    
    /* Remove padding do product-container */
    .single-product .product-container {
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        max-width: 100% !important;
    }
    
    /* Remove padding do row interno */
    .single-product .product-container .row {
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        background: transparent !important;
    }
    
    /* Galeria - lado esquerdo */
    .single-product .product-gallery.col {
        width: 48% !important;
        max-width: 520px !important;
        flex: 0 0 48% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Informações - lado direito */
    .single-product .product-info.summary.col {
        width: 52% !important;
        max-width: 600px !important;
        flex: 0 0 52% !important;
        padding: 0 0 0 40px !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    /* Imagens da galeria com border-radius */
    .single-product .product-gallery .woocommerce-product-gallery__image img,
    .single-product .product-gallery .product-image-main img,
    .single-product .product-gallery img {
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    }
    
    /* Thumbnails */
    .single-product .product-gallery .flex-control-thumbs {
        margin-top: 20px !important;
        gap: 12px !important;
    }
    
    .single-product .product-gallery .flex-control-thumbs li img {
        border-radius: 8px !important;
    }
}

@media (min-width: 1200px) {
    /* Remove todos os containers padrão do Flatsome */
    .single-product .site-main,
    .single-product #main,
    .single-product .container,
    .single-product .row:not(.product-main) {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    /* Card principal centralizado */
    .single-product .product-main {
        max-width: 1200px !important;
        margin: 50px auto 50px auto !important;
        background: #ffffff !important;
        border-radius: 24px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 70px !important;
        padding: 56px 64px 56px 64px !important;
        position: relative !important;
        min-height: 680px !important;
    }
    
    /* Remove padding do product-container */
    .single-product .product-container {
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        max-width: 100% !important;
    }
    
    /* Remove padding do row interno */
    .single-product .product-container .row {
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        background: transparent !important;
    }
    
    /* Galeria - lado esquerdo */
    .single-product .product-gallery.col {
        width: 48% !important;
        max-width: 520px !important;
        flex: 0 0 48% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Informações - lado direito */
    .single-product .product-info.summary.col {
        width: 52% !important;
        max-width: 600px !important;
        flex: 0 0 52% !important;
        padding: 0 0 0 40px !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    /* Imagens da galeria com border-radius */
    .single-product .product-gallery .woocommerce-product-gallery__image img,
    .single-product .product-gallery .product-image-main img,
    .single-product .product-gallery img {
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    }
    
    /* Thumbnails */
    .single-product .product-gallery .flex-control-thumbs {
        margin-top: 20px !important;
        gap: 12px !important;
    }
    
    .single-product .product-gallery .flex-control-thumbs li img {
        border-radius: 8px !important;
    }
}

@media (min-width: 1200px) {
    /* Remove todos os containers padrão do Flatsome */
    .single-product .site-main,
    .single-product #main,
    .single-product .container,
    .single-product .row:not(.product-main) {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    /* Card principal centralizado */
    .single-product .product-main {
        max-width: 1200px !important;
        margin: 50px auto 50px auto !important;
        background: #ffffff !important;
        border-radius: 24px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 70px !important;
        padding: 56px 64px 56px 64px !important;
        position: relative !important;
        min-height: 680px !important;
    }
    
    /* Remove padding do product-container */
    .single-product .product-container {
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        max-width: 100% !important;
    }
    
    /* Remove padding do row interno */
    .single-product .product-container .row {
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        background: transparent !important;
    }
    
    /* Galeria - lado esquerdo */
    .single-product .product-gallery.col {
        width: 48% !important;
        max-width: 520px !important;
        flex: 0 0 48% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Informações - lado direito */
    .single-product .product-info.summary.col {
        width: 52% !important;
        max-width: 600px !important;
        flex: 0 0 52% !important;
        padding: 0 0 0 40px !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    /* Imagens da galeria com border-radius */
    .single-product .product-gallery .woocommerce-product-gallery__image img,
    .single-product .product-gallery .product-image-main img,
    .single-product .product-gallery img {
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    }
    
    /* Thumbnails */
    .single-product .product-gallery .flex-control-thumbs {
        margin-top: 20px !important;
        gap: 12px !important;
    }
    
    .single-product .product-gallery .flex-control-thumbs li img {
        border-radius: 8px !important;
    }
}

    /* Card principal centralizado */
    .single-product .product-main {
        max-width: 1200px !important;
        margin: 50px auto 50px auto !important;
        background: #ffffff !important;
        border-radius: 24px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 70px !important;
        padding: 56px 64px 56px 64px !important;
        position: relative !important;
        min-height: 680px !important;
    }
    
    /* Remove padding do product-container */
    .single-product .product-container {
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        max-width: 100% !important;
    }
    
    /* Remove padding do row interno */
    .single-product .product-container .row {
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        background: transparent !important;
    }
    
    /* Galeria - lado esquerdo */
    .single-product .product-gallery.col {
        width: 48% !important;
        max-width: 520px !important;
        flex: 0 0 48% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Informações - lado direito */
    .single-product .product-info.summary.col {
        width: 52% !important;
        max-width: 600px !important;
        flex: 0 0 52% !important;
        padding: 0 0 0 40px !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    /* Imagens da galeria com border-radius */
    .single-product .product-gallery .woocommerce-product-gallery__image img,
    .single-product .product-gallery .product-image-main img,
    .single-product .product-gallery img {
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    }
    
    /* Thumbnails */
    .single-product .product-gallery .flex-control-thumbs {
        margin-top: 20px !important;
        gap: 12px !important;
    }
    
    .single-product .product-gallery .flex-control-thumbs li img {
        border-radius: 8px !important;
    }
}



/* ===== REMOVER BANNER PROMOCIONAL "30% OFF" ===== */
.product-info.summary .woocommerce-message,
.product-info.summary .woocommerce-message--promo,
.product-info.summary .promo-banner,
.product-info.summary .banner-promo,
.product-info.summary [class*="promo"],
.product-info.summary [class*="banner"],
.product-info.summary [class*="30"],
.product-info.summary [class*="OFF"],
.single-product .promo-banner,
.single-product .banner-promo,
.single-product [class*="promo"],
.single-product [class*="banner"],
.single-product [class*="30"],
.single-product [class*="OFF"],
.woocommerce-message.woocommerce-message--promo,
.woocommerce-message[class*="promo"],
.woocommerce-message[class*="banner"],
div:has-text("30% OFF"),
div:has-text("30%"),
div:has-text("OFF em toda"),
div:has-text("Aproveite enquanto") {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
}


/* ===== REMOVER BANNER PROMOCIONAL "30% OFF" - FORÇA MÁXIMA ===== */

/* Remover banner por conteúdo de texto usando seletores avançados */
.product-info.summary > div:has(> *:contains("30% OFF")),
.product-info.summary > div:has(> *:contains("30%")),
.product-info.summary > div:has(> *:contains("OFF em toda")),
.product-info.summary > div:has(> *:contains("Aproveite enquanto")),
.single-product > div:has(> *:contains("30% OFF")) {
    display: none !important;
}

/* Remover qualquer elemento com fundo vermelho */
[style*="background.*red"],
[style*="background.*#d32f2f"],
[style*="background.*#f44336"],
[style*="background.*rgb(211, 47, 47)"],
[style*="background.*rgb(244, 67, 54)"] {
    display: none !important;
}


.product-info.summary *,
.single-product * {
    position: relative;
}

.product-info.summary .woocommerce-message,
.product-info.summary .woocommerce-message--promo,
.product-info.summary .promo-banner,
.product-info.summary .banner-promo,
.product-info.summary [class*="promo"],
.product-info.summary [class*="banner"],
.single-product .promo-banner,
.single-product .banner-promo,
.single-product [class*="promo"],
.single-product [class*="banner"],
.woocommerce-message.woocommerce-message--promo,
.woocommerce-message[class*="promo"],
.woocommerce-message[class*="banner"],
div[style*="red"],
div[style*="background.*red"],
div[style*="background.*#"],
button[style*="red"],
button[style*="background.*red"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}


/* Remover banner promocional por qualquer método possível */
.product-info.summary > *:nth-child(n),
.single-product .product-main > * {
    position: relative;
}

/* Remover qualquer elemento que contenha texto "30% OFF" ou similar */
.product-info.summary *,
.single-product * {
    text-rendering: optimizeLegibility;
}

/* Forçar remoção de qualquer banner vermelho */
[style*="background: red"],
[style*="background: #d32f2f"],
[style*="background: #f44336"],
[style*="background-color: red"],
[style*="background-color: #d32f2f"],
[style*="background-color: #f44336"],
button[style*="red"],
div[style*="red"]:has-text("30%"),
div[style*="red"]:has-text("OFF") {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
    width: 0 !important;
}

/* AJUSTES FINAIS PIXEL-PERFECT */
@media (min-width: 1200px) {
    /* Garantir que não há espaçamento extra */
    .product-info.summary > *:first-child {
        margin-top: 0 !important;
    }
    
    /* Ajuste fino no título */
    .product-info.summary .product_title {
        letter-spacing: -0.2px !important;
    }
    
    /* Preço com espaçamento exato */
    .product-info.summary .price {
        letter-spacing: 0 !important;
    }
    
    /* Botões de variação - grid 2x3 perfeito */
    .product-info.summary .variations .variation-buttons {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    /* Garantir que quantidade fique centralizada */
    .product-info.summary form.cart .quantity {
        margin: 0 auto !important;
    }
}



/* Remover elementos que contenham texto específico */
.product-info.summary > *:has-text("30% OFF"),
.product-info.summary > *:has-text("30%"),
.product-info.summary > *:has-text("OFF em toda"),
.product-info.summary > *:has-text("Aproveite enquanto"),
.single-product > *:has-text("30% OFF") {
    display: none !important;
}

/* AJUSTES PIXEL-PERFECT CONFORME PRINT 2 */
@media (min-width: 1200px) {
    /* Badges - espaçamento exato */
    .product-badges-wrapper {
        margin-bottom: 18px !important;
        margin-top: 0 !important;
        gap: 10px !important;
    }
    
    /* Título - ajuste fino */
    .product-info.summary .product_title {
        font-size: 24px !important;
        margin-bottom: 22px !important;
        margin-top: 12px !important;
        line-height: 1.45 !important;
    }
    
    /* Preço - espaçamento exato */
    .product-info.summary .price-wrapper,
    .product-info.summary .price {
        margin: 22px 0 0 0 !important;
    }
    
    /* Parcelamento - espaçamento exato */
    .product-installment-info {
        margin-top: 10px !important;
        font-size: 15px !important;
    }
    
    /* Link Formas de Pagamento */
    .payment-methods-link {
        margin-top: 14px !important;
        margin-bottom: 0 !important;
    }
    
    /* Variações - espaçamento exato */
    .product-info.summary .variations {
        margin: 28px 0 !important;
    }
    
    .product-info.summary .variations td.label {
        padding-bottom: 12px !important;
    }
    
    /* Botões de variação - grid perfeito */
    .product-info.summary .variations .variation-buttons {
        gap: 12px !important;
        margin-top: 10px !important;
    }
    
    .product-info.summary .variations .variation-button {
        min-width: 140px !important;
        padding: 12px 18px !important;
        font-size: 14px !important;
    }
    
    /* Quantidade - espaçamento */
    .product-info.summary form.cart {
        margin: 32px 0 22px 0 !important;
        gap: 16px !important;
    }
    
    /* Botão COMPRAR AGORA */
    .product-info.summary .cart {
        margin: 32px 0 22px 0 !important;
    }
    
    /* Logos cartões */
    .payment-cards-logos {
        margin-top: 22px !important;
        gap: 14px !important;
    }
    
    /* Devoluções */
    .returns-section {
        margin-top: 28px !important;
    }
    
    /* Cálculo entrega */
    .shipping-calculator-section {
        margin-top: 28px !important;
    }
}



/* Remover qualquer elemento que contenha texto "30% OFF" */
.product-info.summary *:contains("30% OFF"),
.product-info.summary *:contains("30%"),
.product-info.summary *:contains("OFF em toda"),
.single-product *:contains("30% OFF"),
.single-product *:contains("30%") {
    display: none !important;
}




@media (min-width: 1200px) {
    /* Remove todos os containers padrão do Flatsome */
    .single-product .site-main,
    .single-product #main,
    .single-product .container,
    .single-product .row:not(.product-main) {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    /* Card principal centralizado */
    .single-product .product-main {
        max-width: 1200px !important;
        margin: 50px auto 50px auto !important;
        background: #ffffff !important;
        border-radius: 24px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 70px !important;
        padding: 56px 64px 56px 64px !important;
        position: relative !important;
        min-height: 680px !important;
    }
    
    /* Remove padding do product-container */
    .single-product .product-container {
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        max-width: 100% !important;
    }
    
    /* Remove padding do row interno */
    .single-product .product-container .row {
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        background: transparent !important;
    }
    
    /* Galeria - lado esquerdo */
    .single-product .product-gallery.col {
        width: 48% !important;
        max-width: 520px !important;
        flex: 0 0 48% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Informações - lado direito */
    .single-product .product-info.summary.col {
        width: 52% !important;
        max-width: 600px !important;
        flex: 0 0 52% !important;
        padding: 0 0 0 40px !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    /* Imagens da galeria com border-radius */
    .single-product .product-gallery .woocommerce-product-gallery__image img,
    .single-product .product-gallery .product-image-main img,
    .single-product .product-gallery img {
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    }
    
    /* Thumbnails */
    .single-product .product-gallery .flex-control-thumbs {
        margin-top: 20px !important;
        gap: 12px !important;
    }
    
    .single-product .product-gallery .flex-control-thumbs li img {
        border-radius: 8px !important;
    }
}


/* ===== REMOVER BANNER PROMOCIONAL "30% OFF" - FORÇA MÁXIMA ===== */

/* Remover banner por conteúdo de texto usando seletores avançados */
.product-info.summary > div:has(> *:contains("30% OFF")),
.product-info.summary > div:has(> *:contains("30%")),
.product-info.summary > div:has(> *:contains("OFF em toda")),
.product-info.summary > div:has(> *:contains("Aproveite enquanto")),
.single-product > div:has(> *:contains("30% OFF")) {
    display: none !important;
}

/* Remover qualquer elemento com fundo vermelho */
[style*="background.*red"],
[style*="background.*#d32f2f"],
[style*="background.*#f44336"],
[style*="background.*rgb(211, 47, 47)"],
[style*="background.*rgb(244, 67, 54)"] {
    display: none !important;
}


.product-info.summary .woocommerce-message,
.product-info.summary .woocommerce-message--promo,
.product-info.summary .promo-banner,
.product-info.summary .banner-promo,
.product-info.summary [class*="promo"],
.product-info.summary [class*="banner"],
.single-product .promo-banner,
.single-product .banner-promo,
.single-product [class*="promo"],
.single-product [class*="banner"],
.woocommerce-message.woocommerce-message--promo,
.woocommerce-message[class*="promo"],
.woocommerce-message[class*="banner"],
div[style*="red"],
div[style*="background.*red"],
button[style*="red"],
button[style*="background.*red"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}



@media (min-width: 1200px) {
    /* Remove todos os containers padrão do Flatsome */
    .single-product .site-main,
    .single-product #main,
    .single-product .container,
    .single-product .row:not(.product-main) {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    /* Card principal centralizado */
    .single-product .product-main {
        max-width: 1200px !important;
        margin: 50px auto 50px auto !important;
        background: #ffffff !important;
        border-radius: 24px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 70px !important;
        padding: 56px 64px 56px 64px !important;
        position: relative !important;
        min-height: 680px !important;
    }
    
    /* Remove padding do product-container */
    .single-product .product-container {
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        max-width: 100% !important;
    }
    
    /* Remove padding do row interno */
    .single-product .product-container .row {
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        background: transparent !important;
    }
    
    /* Galeria - lado esquerdo */
    .single-product .product-gallery.col {
        width: 48% !important;
        max-width: 520px !important;
        flex: 0 0 48% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Informações - lado direito */
    .single-product .product-info.summary.col {
        width: 52% !important;
        max-width: 600px !important;
        flex: 0 0 52% !important;
        padding: 0 0 0 40px !important;
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    
    /* Imagens da galeria com border-radius */
    .single-product .product-gallery .woocommerce-product-gallery__image img,
    .single-product .product-gallery .product-image-main img,
    .single-product .product-gallery img {
        border-radius: 12px !important;
        background: #fff !important;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    }
    
    /* Thumbnails */
    .single-product .product-gallery .flex-control-thumbs {
        margin-top: 20px !important;
        gap: 12px !important;
    }
    
    .single-product .product-gallery .flex-control-thumbs li img {
        border-radius: 8px !important;
    }
    
    /* AJUSTES PIXEL-PERFECT CONFORME PRINT 2 */
    /* Badges - espaçamento exato */
    .product-badges-wrapper {
        margin-bottom: 18px !important;
        margin-top: 0 !important;
        gap: 10px !important;
    }
    
    /* Título - ajuste fino */
    .product-info.summary .product_title {
        font-size: 24px !important;
        margin-bottom: 22px !important;
        margin-top: 12px !important;
        line-height: 1.45 !important;
    }
    
    /* Preço - espaçamento exato */
    .product-info.summary .price-wrapper,
    .product-info.summary .price {
        margin: 22px 0 0 0 !important;
    }
    
    /* Parcelamento - espaçamento exato */
    .product-installment-info {
        margin-top: 10px !important;
        font-size: 15px !important;
    }
    
    /* Link Formas de Pagamento */
    .payment-methods-link {
        margin-top: 14px !important;
        margin-bottom: 0 !important;
    }
    
    /* Variações - espaçamento exato */
    .product-info.summary .variations {
        margin: 28px 0 !important;
    }
    
    .product-info.summary .variations td.label {
        padding-bottom: 12px !important;
    }
    
    /* Botões de variação - grid perfeito */
    .product-info.summary .variations .variation-buttons {
        gap: 12px !important;
        margin-top: 10px !important;
    }
    
    .product-info.summary .variations .variation-button {
        min-width: 140px !important;
        padding: 12px 18px !important;
        font-size: 14px !important;
    }
    
    /* Quantidade - espaçamento */
    .product-info.summary form.cart {
        margin: 32px 0 22px 0 !important;
        gap: 16px !important;
    }
    
    /* Botão COMPRAR AGORA */
    .product-info.summary .cart {
        margin: 32px 0 22px 0 !important;
    }
    
    /* Logos cartões */
    .payment-cards-logos {
        margin-top: 22px !important;
        gap: 14px !important;
    }
    
    /* Devoluções */
    .returns-section {
        margin-top: 28px !important;
    }
    
    /* Cálculo entrega */
    .shipping-calculator-section {
        margin-top: 28px !important;
    }
}


/* ===== REMOVER BANNER PROMOCIONAL "30% OFF" - FORÇA MÁXIMA ===== */
.product-info.summary .woocommerce-message,
.product-info.summary .woocommerce-message--promo,
.product-info.summary .promo-banner,
.product-info.summary .banner-promo,
.product-info.summary [class*="promo"],
.product-info.summary [class*="banner"],
.single-product .promo-banner,
.single-product .banner-promo,
.single-product [class*="promo"],
.single-product [class*="banner"],
.woocommerce-message.woocommerce-message--promo,
.woocommerce-message[class*="promo"],
.woocommerce-message[class*="banner"],
div[style*="red"],
div[style*="background.*red"],
button[style*="red"],
button[style*="background.*red"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -9999px !important;
}




/* ===== BREADCRUMBS ===== */
.woocommerce-breadcrumb {
    margin-bottom: 20px !important;
    font-size: 14px !important;
    color: #666 !important;
}

.woocommerce-breadcrumb a {
    color: #666 !important;
    text-decoration: none !important;
    transition: color 0.2s ease !important;
}

.woocommerce-breadcrumb a:hover {
    color: #28a745 !important;
}

.woocommerce-breadcrumb .breadcrumb-separator {
    margin: 0 8px !important;
    color: #999 !important;
}

/* ===== RESPONSIVIDADE ===== */
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

    /* Container principal em mobile */
    .product-container {
        padding: 20px 15px !important;
    }

    .product-container .row {
        gap: 20px !important;
    }

    /* Em mobile, volta ao layout padrão */
    .product-container {
        padding: 20px 15px !important;
    }

    .product-container .row {
        gap: 20px !important;
    }

    .product-container .row .product-gallery.col,
    .product-container .row .product-info.summary.col {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 0 !important;
    }

    .product-gallery {
        padding-right: 0 !important;
    }
    
    .product-info.summary {
        padding: 0 !important;
    }
    
    .product-info.summary .product_title {
        font-size: 22px !important;
        margin-bottom: 15px !important;
        margin-top: 0 !important;
    }
    
    .product-info.summary .price ins,
    .product-info.summary .price .woocommerce-Price-amount.amount:not(del) {
        font-size: 26px !important;
        color: #1f1f1f !important;
    }
    
    .product-info.summary .price del {
        font-size: 14px !important;
        color: #28a745 !important;
    }

    .product-info.summary .price-wrapper,
    .product-info.summary .price {
        margin: 16px 0 !important;
    }
    
    .product-info.summary .single_add_to_cart_button,
    .product-info.summary button[type="submit"].single_add_to_cart_button,
    .product-info.summary form.cart .single_add_to_cart_button,
    .product-info.summary form.cart button[type="submit"] {
        font-size: 15px !important;
        padding: 14px 24px !important;
        border-radius: 8px !important;
        -webkit-border-radius: 8px !important;
        -moz-border-radius: 8px !important;
    }

    .product-info.summary .variations {
        margin: 14px 0 !important;
        gap: 8px !important;
    }

    .product-info.summary .variations td {
        padding: 4px 0 !important;
    }

    .product-info.summary .variations td.value select {
        width: 100% !important;
        min-height: 42px !important;
    }

    .product-info.summary form.cart {
        gap: 10px !important;
    }

    .product-info.summary form.cart .quantity {
        gap: 0 !important;
        border-width: 1px !important;
        transform: scale(0.9);
    }

    .product-info.summary form.cart .quantity .qty,
    .product-info.summary form.cart .quantity input.qty {
        width: 44px !important;
        font-size: 14px !important;
    }

    .product-info.summary form.cart .quantity .minus,
    .product-info.summary form.cart .quantity .plus,
    .product-info.summary form.cart .quantity button {
        width: 38px !important;
        height: 38px !important;
        font-size: 16px !important;
    }

    .product-info.summary .cart {
        margin: 20px 0 16px 0 !important;
    }
    
    .pix-highlight {
        padding: 14px 16px;
        margin: 16px 0;
        border-radius: 8px !important;
    }
    
    .pix-highlight__title {
        font-size: 14px;
        margin-bottom: 5px;
    }
    
    .pix-highlight__value {
        font-size: 13px;
    }
    
    .pix-highlight__value strong {
        font-size: 14px;
    }

    .delivery-info {
        padding: 12px 14px;
        font-size: 14px;
        border-radius: 8px !important;
        margin: 12px 0 0 0 !important;
    }

    .woocommerce-breadcrumb {
        margin-bottom: 15px !important;
        font-size: 13px !important;
    }
}

/* ===== BOTÃO VER MAIS - SOBRE MIM ===== */
.sobre-readmore {
    position: relative;
    margin-top: 20px;
}

.sobre-readmore__inner {
    position: relative;
    transition: max-height 0.4s ease;
}

.sobre-readmore--collapsed .sobre-readmore__inner {
    max-height: 320px;
    overflow: hidden;
}

.sobre-readmore--collapsed .sobre-readmore__inner::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 65%, var(--sobre-readmore-bg, #ffffff) 100%);
    pointer-events: none;
}

.sobre-readmore__toggle {
    margin-top: 18px;
    padding: 12px 26px;
    border: none;
    border-radius: 999px;
    background: #D62828;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(214, 40, 40, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.sobre-readmore__toggle:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(214, 40, 40, 0.3);
    background: #b91e1e;
}

.sobre-readmore__toggle:focus-visible {
    outline: none;
    box-shadow: 0 0 0 3px rgba(214, 40, 40, 0.35);
}

/* ===== ESTILOS DOS BOTÕES DO CARRINHO ===== */
/* Botão Continuar Comprando */
.woocommerce-cart .wc-backward,
.woocommerce-cart a.button.wc-backward,
.woocommerce-cart .button.wc-backward,
.woocommerce-cart .cart-actions-wrapper .wc-backward,
.woocommerce-cart .cart-actions-wrapper a.button.wc-backward,
.woocommerce-cart .continue-shopping,
.woocommerce-cart .continue-shopping a,
.woocommerce-cart .button-continue-shopping {
    background: transparent !important;
    border: 2px solid #28a745 !important;
    color: #28a745 !important;
    border-radius: 6px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    text-decoration: none !important;
    width: 100% !important;
    max-width: 48% !important;
    flex: 1 1 48% !important;
    justify-content: center !important;
    margin: 0 !important;
}

.woocommerce-cart .continue-shopping {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    display: flex !important;
}

.woocommerce-cart .continue-shopping a {
    width: 100% !important;
    box-sizing: border-box !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.woocommerce-cart .cart .actions.clear .continue-shopping,
.woocommerce-cart .cart .actions.clear button[name="update_cart"] {
    flex: 1 1 calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
    min-width: 0 !important;
}

.woocommerce-cart .wc-backward:hover,
.woocommerce-cart a.button.wc-backward:hover,
.woocommerce-cart .button.wc-backward:hover {
    background: #28a745 !important;
    color: #fff !important;
    border-color: #28a745 !important;
}

/* Botão Atualizar Carrinho */
.woocommerce-cart .button[name="update_cart"],
.woocommerce-cart button[name="update_cart"],
.woocommerce-cart input[name="update_cart"],
.woocommerce-cart .cart-actions-wrapper .button[name="update_cart"],
.woocommerce-cart .cart-actions-wrapper button[name="update_cart"],
.woocommerce-cart .cart .actions.clear button[name="update_cart"] {
    background: #28a745 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 14px 28px !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    width: 100% !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.woocommerce-cart .button[name="update_cart"]:hover,
.woocommerce-cart button[name="update_cart"]:hover,
.woocommerce-cart input[name="update_cart"]:hover {
    background: #218838 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4) !important;
}

/* Botão Continuar para Finalização */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart .wc-proceed-to-checkout button.checkout-button,
.woocommerce-cart .checkout-button,
.woocommerce-cart a.checkout-button {
    background: #28a745 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    padding: 16px 32px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3) !important;
}

/* Força verde em todos os botões de checkout (remove qualquer estilo amarelo) */
.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-cart .wc-proceed-to-checkout * {
    background: #28a745 !important;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button.button.alt,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button.button.alt {
    background: #28a745 !important;
    color: #fff !important;
}

.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart .wc-proceed-to-checkout button.checkout-button:hover,
.woocommerce-cart .checkout-button:hover,
.woocommerce-cart a.checkout-button:hover {
    background: #218838 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.5) !important;
}

/* Adiciona seta à direita no botão Continuar para Finalização */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button::after,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::after,
.woocommerce-cart .checkout-button::after,
.woocommerce-cart a.checkout-button::after {
    content: '→' !important;
    font-size: 18px !important;
    font-weight: bold !important;
    margin-left: 4px !important;
}

/* Remove setas padrão do WooCommerce se existirem */
.woocommerce-cart .wc-proceed-to-checkout .checkout-button::before,
.woocommerce-cart .checkout-button::before {
    display: none !important;
}

/* Container dos botões Continuar Comprando e Atualizar Carrinho */
.woocommerce-cart .cart .actions.clear {
    padding: 15px 0 !important;
    width: 100% !important;
}

.woocommerce-cart .cart .actions.clear > * {
    margin: 0 !important;
}

.woocommerce-cart .cart .actions.clear .cart-actions-wrapper {
    width: 100% !important;
    display: flex !important;
    flex-direction: row !important;
    gap: 12px !important;
    align-items: stretch !important;
}

.woocommerce-cart .cart .actions.clear .continue-shopping {
    flex: 1 1 calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    display: flex !important;
}

.woocommerce-cart .cart .actions.clear button[name="update_cart"] {
    flex: 1 1 calc(50% - 6px) !important;
    max-width: calc(50% - 6px) !important;
    min-width: 0 !important;
    margin: 0 !important;
    width: auto !important;
}

/* Remove classes que podem quebrar o layout */
.woocommerce-cart .cart .actions.clear .pull-left,
.woocommerce-cart .cart .actions.clear .text-left {
    float: none !important;
    text-align: center !important;
}

/* Garante que todos os botões do carrinho tenham o estilo verde */
.woocommerce-cart .button,
.woocommerce-cart button.button,
.woocommerce-cart a.button,
.woocommerce-cart input.button {
    border-radius: 6px !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
}

/* Remove estilos de foco padrão */
.woocommerce-cart .button:focus,
.woocommerce-cart button:focus,
.woocommerce-cart a.button:focus,
.woocommerce-cart input.button:focus {
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.3) !important;
}

/* ===== MENSAGEM DE ENTREGA ===== */
.woocommerce-cart .woocommerce-shipping-info {
    margin: 8px 0 0 0 !important;
    color: #666 !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
}

.woocommerce-cart .woocommerce-shipping-info strong {
    color: #333 !important;
    font-weight: 600 !important;
}

/* Esconde o link "Calcular entrega" */
.woocommerce-cart .woocommerce-shipping-calculator,
.woocommerce-cart .woocommerce-shipping-calculator-button,
.woocommerce-cart a.shipping-calculator-button,
.woocommerce-cart .shipping-calculator-form,
.woocommerce-cart a[href*="shipping-calculator"],
.woocommerce-cart .woocommerce-shipping-destination a {
    display: none !important;
    visibility: hidden !important;
}

/* Remove completamente os botões Continuar Comprando e Atualizar Carrinho */
.woocommerce-cart .cart .actions.clear,
.woocommerce-cart .cart-actions-wrapper,
.woocommerce-cart .continue-shopping,
.woocommerce-cart .button[name="update_cart"],
.woocommerce-cart button[name="update_cart"] {
    display: none !important;
    visibility: hidden !important;
}

/* ============================================
   PÁGINA DE PRODUTO - LAYOUT PREMIUM CARD
   IDÊNTICO AO PRINT - DESKTOP PERFEITO
   ============================================ */

/* ===== BACKGROUND CINZA CLARO ===== */
body.single-product {
    background: #f5f7fa !important;
}



/* ===== REMOVER BANNER PROMOCIONAL ===== */
.single-product .woocommerce-message--promo,
.single-product .promo-banner,
.single-product .banner-promo,
.single-product [class*="promo"][class*="banner"],
.single-product [class*="30% OFF"],
.single-product [class*="30%OFF"] {
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

/* ===== MODAL PIX ===== */
.modal-pix {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

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

.modal-pix-content {
    background: #fff;
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-pix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 20px 24px;
    border-bottom: 1px solid #e0e0e0;
}

.modal-pix-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-pix-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.modal-pix-close:hover {
    opacity: 0.7;
}

.modal-pix-body {
    padding: 32px 24px;
}

.modal-pix-pricing {
    text-align: center;
    margin-bottom: 24px;
}

.modal-pix-price-cash {
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    line-height: 1.2;
}

.modal-pix-price-description {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
}

.modal-pix-price-description strong {
    color: #28a745;
    font-weight: 700;
}

.modal-pix-extra {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
}

.modal-pix-extra svg {
    flex-shrink: 0;
}

.modal-pix-extra-text {
    font-size: 14px;
    color: #333;
    line-height: 1.5;
    flex: 1;
}

/* ===== MELHORAR CENTRALIZAÇÃO DO PREÇO ===== */
.product-info.summary .price-wrapper,
.product-info.summary .price {
    text-align: center !important;
    margin: 20px 0 8px 0 !important;
    padding: 0 !important;
}

.product-info.summary .product-installment-info {
    text-align: center !important;
    margin-top: 8px !important;
}

@media (min-width: 1200px) {
    .product-info.summary .price-wrapper,
    .product-info.summary .price,
    .product-info.summary .product-installment-info {
        text-align: left !important;
    }
}

/* ===== ESCONDER PREÇO RANGE E MOSTRAR APENAS PREÇO DA VARIAÇÃO ===== */
.single-product .price .woocommerce-Price-amount:contains("-"),
.single-product .price del + ins + .woocommerce-Price-amount {
    display: none !important;
}

/* Garantir que apenas um preço seja mostrado */
.single-product .price-wrapper .price {
    display: block !important;
}

.single-product .price .woocommerce-Price-amount.amount:first-of-type {
    display: inline !important;
}

/* ===== ESCONDER PREÇO RANGE E MOSTRAR APENAS VALOR DA VARIAÇÃO ===== */
.single-product .price .woocommerce-Price-amount:contains("-") {
    display: none !important;
}

/* Esconder preço range quando variação é selecionada */
.single-product .price-wrapper .price .woocommerce-Price-amount:not(:first-child) {
    display: none !important;
}

/* Garantir que apenas um preço seja mostrado */
.single-product .price-wrapper .price {
    display: block !important;
}

.single-product .price .woocommerce-Price-amount.amount:first-of-type {
    display: inline !important;
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #333 !important;
}

/* ===== ESCONDER PREÇO RANGE E MOSTRAR APENAS VALOR DA VARIAÇÃO ===== */
.single-product .price .woocommerce-Price-amount:contains("-") {
    display: none !important;
}

/* Esconder preço range quando variação é selecionada */
.single-product .price-wrapper .price .woocommerce-Price-amount:not(:first-child) {
    display: none !important;
}

/* Garantir que apenas um preço seja mostrado */
.single-product .price-wrapper .price {
    display: block !important;
}

.single-product .price .woocommerce-Price-amount.amount:first-of-type {
    display: inline !important;
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #333 !important;
}

/* ===== MODAL PIX ===== */
.modal-pix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    backdrop-filter: blur(5px);
}

.modal-pix.active {
    opacity: 1;
    visibility: visible;
}

.modal-pix-content {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal-pix.active .modal-pix-content {
    transform: translateY(0);
}

.modal-pix-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.modal-pix-title {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-transform: uppercase;
}

.modal-pix-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
}

.modal-pix-close:hover {
    opacity: 0.7;
}

.modal-pix-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal-pix-pricing {
    text-align: center;
}

.modal-pix-price-cash {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.modal-pix-price-description {
    font-size: 14px;
    color: #666;
}

.modal-pix-price-description strong {
    color: #1a5f3f;
}

.modal-pix-extra {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f0f8f0;
    border-radius: 8px;
    border: 1px solid #d0e0d0;
    color: #1a5f3f;
    font-size: 14px;
    font-weight: 500;
}

.modal-pix-extra svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.modal-pix-extra svg path {
    fill: #1a5f3f;
}

@media (max-width: 768px) {
    .modal-pix-content {
        margin: 20px;
        max-width: calc(100% - 40px);
    }
}


/* ===== CARD CENTRALIZADO PREMIUM - DESKTOP ===== */
@media (min-width: 1200px) {
    /* Remove todos os backgrounds e estilos dos containers externos */
    .single-product .site-main,
    .single-product #main,
    .single-product .container,
    .single-product .row:not(.product-main) {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }

    /* Card branco centralizado premium */
    .single-product .product-main {
        max-width: 1200px !important;
        margin: 50px auto 50px auto !important;
        background: #ffffff !important;
        border-radius: 24px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 70px !important;
        padding: 56px 64px 56px 64px !important;
        position: relative !important;
        min-height: 680px !important;
    }

    /* Remove padding do product-container */
    .single-product .product-container {
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        max-width: 100% !important;
    }

    .single-product .product-container .row {
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        background: transparent !important;
    }

    /* Galeria - 48% width */
    .single-product .product-gallery.col {
        width: 48% !important;
        max-width: 520px !important;
        flex: 0 0 48% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    /* Info - 52% width */
    .single-product .product-info.summary.col {
        width: 52% !important;
        max-width: 600px !important;
        flex: 0 0 52% !important;
        padding: 0 0 0 40px !important;
        margin: 0 !important;
    }

    /* Imagens da galeria */
    .single-product .product-gallery .woocommerce-product-gallery__image img,
    .single-product .product-gallery .product-image-main img,
    .single-product .product-gallery img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
        border-radius: 0 !important;
    }

    /* Thumbnails */
    .single-product .product-gallery .flex-control-thumbs {
        margin-top: 15px !important;
        display: flex !important;
        gap: 10px !important;
        flex-wrap: wrap !important;
    }

    .single-product .product-gallery .flex-control-thumbs li img {
        border-radius: 4px !important;
        border: 2px solid transparent !important;
        transition: all 0.3s ease !important;
    }

    .single-product .product-gallery .flex-control-thumbs li img:hover,
    .single-product .product-gallery .flex-control-thumbs li img.flex-active {
        border-color: #1a5f3f !important;
    }
}
/* ===== GARANTIR LAYOUT IDÊNTICO - HOME E PRODUTO ===== */

/* HOME - Layout de produtos */
.cat-carousel-container {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr) !important;
    gap: 20px !important;
    padding: 0 !important;
    margin: 0 !important;
}

@media (max-width: 768px) {
    .cat-carousel-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}

/* PÁGINA DE PRODUTO - Card centralizado desktop */
body.single-product {
    background: #f5f7fa !important;
}

@media (min-width: 1200px) {
    .single-product .site-main,
    .single-product #main,
    .single-product .container,
    .single-product .row:not(.product-main) {
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        max-width: 100% !important;
    }
    
    .single-product .product-main {
        max-width: 1200px !important;
        margin: 50px auto 50px auto !important;
        background: #ffffff !important;
        border-radius: 24px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        display: flex !important;
        align-items: flex-start !important;
        gap: 70px !important;
        padding: 56px 64px 56px 64px !important;
        position: relative !important;
        min-height: 680px !important;
    }
    
    .single-product .product-container {
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        max-width: 100% !important;
    }
    
    .single-product .product-container .row {
        margin: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        background: transparent !important;
    }
    
    .single-product .product-gallery.col {
        width: 48% !important;
        max-width: 520px !important;
        flex: 0 0 48% !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .single-product .product-info.summary.col {
        width: 52% !important;
        max-width: 600px !important;
        flex: 0 0 52% !important;
        padding: 0 0 0 40px !important;
        margin: 0 !important;
    }
}

/* Garantir que imagens de produtos na home tenham border-radius */
.cat-item img {
    border-radius: 8px !important;
}

/* Garantir preço único quando variação é selecionada */
.single-product .price-wrapper .price .woocommerce-Price-amount:not(:first-child) {
    display: none !important;
}

.single-product .price .woocommerce-Price-amount.amount:first-of-type {
    display: inline !important;
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #333 !important;
}

/* ===== BANNER PROMOCIONAL VERDE ===== */
.cat-promo-banner {
    background: #1a5f3f !important;
    color: #fff !important;
    text-align: center !important;
    padding: 12px 20px !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
}

/* ===== PREÇO VERMELHO NO MOBILE ===== */
@media (max-width: 768px) {
    .cat-price,
    .cat-price .woocommerce-Price-amount,
    .cat-price span {
        color: #d32f2f !important;
    }
}

/* ===== GARANTIR QUE NÃO HÁ BOTÕES NOS CARDS ===== */
.cat-item .button,
.cat-item button,
.cat-item .add_to_cart_button,
.cat-item .cat-buy {
    display: none !important;
}

/* ===== FORÇAR PREÇO VERMELHO NOS CARDS DE PRODUTO ===== */
.cat-price,
.cat-price .woocommerce-Price-amount,
.cat-price span:not([style*="line-through"]) {
    color: #d32f2f !important;
}

/* ===== GARANTIR BOTÃO COMPRAR AGORA VISÍVEL ===== */
.cat-buy {
    display: block !important;
    margin-top: 12px !important;
}

.cat-buy-btn {
    background: #d32f2f !important;
    color: #fff !important;
    padding: 12px 24px !important;
    border-radius: 4px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    transition: background 0.3s ease !important;
}

.cat-buy-btn:hover {
    background: #b71c1c !important;
    color: #fff !important;
}

/* ===== REMOVER BOTÕES DOS CARDS E CORRIGIR PREÇO ===== */
.cat-buy,
.cat-buy-btn,
.cat-item .button,
.cat-item button {
    display: none !important;
}

/* ===== PREÇO PRETO (NÃO VERMELHO) ===== */
.cat-price,
.cat-price .woocommerce-Price-amount,
.cat-price span:not([style*="line-through"]) {
    color: #111 !important;
}

/* ===== GARANTIR LAYOUT LIMPO ===== */
.cat-item {
    text-align: center !important;
}

.cat-title {
    text-align: center !important;
    margin-top: 12px !important;
}

.cat-price-wrapper {
    text-align: center !important;
    margin-top: 8px !important;
}
