/*Write your custom style or CSS code here*/
/* ===== Modal Recorrência - Ultra Clean ===== */

#modalExample .modal-dialog {
    max-width: 480px;
}

#modalExample .modal-content {
    border-radius: 18px;
    border: none;
    box-shadow: 0 40px 80px rgba(0,0,0,0.25);
    overflow: hidden;
}

.recorrencia-header {
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    padding: 18px 22px;
    color: #fff;
}

.recorrencia-header .modal-title {
    font-weight: 600;
    font-size: 16px;
}

#modalExample .modal-body {
    padding: 35px 30px;
    text-align: center;
}

.recorrencia-icon {
    font-size: 50px;
    margin-bottom: 18px;
}

.recorrencia-title {
    font-weight: 600;
    margin-bottom: 10px;
}

.recorrencia-description {
    font-size: 14.5px;
    color: #666;
    margin-bottom: 22px;
}

.recorrencia-benefits {
    text-align: left;
    max-width: 280px;
    margin: 0 auto 25px;
}

.recorrencia-benefits div {
    font-size: 14px;
    margin-bottom: 8px;
    color: #444;
}

.recorrencia-benefits span {
    color: #16a34a;
    font-weight: bold;
    margin-right: 6px;
}

#modalExample .modal-footer {
    border-top: none;
    justify-content: center;
    gap: 10px;
    padding-bottom: 30px;
}

.btn-recorrencia {
    background: #16a34a;
    border: none;
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    color: #fff;
    transition: 0.25s ease;
}

.btn-recorrencia:hover {
    background: #15803d;
    transform: translateY(-1px);
}

#modalExample .btn-light {
    background: #f3f4f6;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    color: #444;
}


/* custom image product */

/* Remove comportamento absoluto do tema */
.product-image {
    position: relative !important;
}

/* Container da imagem */
.product-image .prod-info-abso {
    position: relative !important;
    width: 100%;
    height: 180px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    box-sizing: border-box;
}

/* Imagem responsiva */
.product-image .prod-info-abso img {
    position: relative !important;
    max-width: 100% !important;
    max-height: 160px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
}

/* Remove possíveis estilos herdados do tema */
.product-overbox img {
    width: auto !important;
}

/* Mobile */
@media (max-width: 576px) {
    .product-image .prod-info-abso {
        height: 140px;
        padding: 10px;
    }

    .product-image .prod-info-abso img {
        max-height: 120px !important;
    }
}
