.product-image-wrapper {
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.product-badge-custom {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff6b35;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-badge-custom.promotion {
    background: #e74c3c;
}

.product-badge-custom.new {
    background: #2ecc71;
}

.product-badge-custom.combo {
    background: #f39c12;
}

.product-details {
    padding: 20px 0;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.product-desc {
    color: #6c757d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.product-rating-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.stars-custom {
    color: #ffc107;
    margin-right: 8px;
}

.rating-count {
    color: #6c757d;
    font-size: 14px;
}

.product-price-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.current-price-custom {
    font-size: 1.5rem;
    font-weight: 700;
    color: #910221;
}

.original-price-custom {
    color: #6c757d;
    text-decoration: line-through;
    font-size: 1rem;
    margin-left: 10px;
}

.discount-badge {
    background: #28a745;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.product-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-buy-custom {
    background: linear-gradient(135deg, #7e031c, #ad0127);
    border: none;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-buy-custom:hover {
    background: #fff;
    transform: translateY(-2px);
    color: #7e031c;
    border: 1px solid #7e031c;
    text-decoration: none;
}

.btn-buy-custom i {
    margin-left: 8px;
}

.btn-whatsapp-custom {
    background: #25d366;
    border: none;
    color: white;
    padding: 10px 18px;
    border-radius: 20px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.btn-whatsapp-custom:hover {
    background: #128c7e;
    color: white;
    text-decoration: none;
}

.btn-whatsapp-custom i {
    margin-right: 5px;
}

@media (max-width: 768px) {
    .product-price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .rating-count {
        font-size: 12px;
    }
    
    .product-buttons {
        margin-top: 15px;
    }
}



/* FOOTER */

.fw-description p {
    color: #FDFDFD;
    line-height: 1.6;
    margin-bottom: 20px;
}

.fw-social {
    margin-top: 15px;
}

.fw-social h6 {
    color: #FDFDFD;
    font-size: 14px;
    margin-bottom: 10px;
    font-weight: 600;
}

.fw-social ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.fw-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: #f8f9fa;
    border-radius: 50%;
    color: #6c757d;
    transition: all 0.3s ease;
}

.fw-social ul li a:hover {
    background: #ff6b35;
    color: white;
    transform: translateY(-2px);
}

.fw-social ul li a i.fab.fa-whatsapp:hover {
    background: #25d366;
}

.fw-contact-info {
    margin-top: 10px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    gap: 12px;
}

.contact-item .icon {
    width: 20px;
    text-align: center;
    margin-top: 2px;
}

.contact-item .icon i {
    color: #bc002a;
    font-size: 16px;
}

.contact-item .content span {
    display: block;
    font-weight: 600;
    color: #FFF;
    font-size: 14px;
    margin-bottom: 3px;
}

.contact-item .content p {
    color: #FFF;
    font-size: 14px;
    margin: 0;
}

@media (max-width: 768px) {
    .fw-social ul {
        justify-content: flex-start;
    }
    
    .footer-payment-method {
        margin-top: 30px;
    }
    
    .payment-method-img {
        margin-top: 15px;
    }
}

.toast {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #28a745;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}
.toast.show {
    opacity: 1;
    transform: translateY(0);
}

.cart-qty {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
}

.cart-qty button {
    width: 28px;
    height: 28px;
    border: 1px solid #ddd;
    background: #f8f8f8;
    color: #333;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50%;
    cursor: pointer;
    line-height: 1;
    transition: all 0.2s ease;
}

.cart-qty button:hover {
    background: #333;
    color: #fff;
}

.cart-qty input {
    width: 45px;
    height: 28px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.card-btn-2 {
    background-color: #ff8000 !important;
}

.card-btn-2:hover {
    background-color: transparent;
}

@media (max-width: 500px) {
    .header-shop-cart ul.minicart {
        right: -50px;
    }
}

@media (max-width: 400px) {
    .header-shop-cart ul.minicart {
        right: -80px;
    }
}

@media (max-width: 350px) {
    .header-shop-cart ul.minicart {
        right: -85px;
    }
}

@media (max-width: 335px) {
    .header-shop-cart ul.minicart {
        /* right: -90px; */
        width: 300px;
    }
}


/* Customizações para o modal */

.age-verification-modal .modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.warning-icon {
    font-size: 48px;
    color: #e74c3c;
    margin-bottom: 12px;
}

.modal-title {
    font-size: 26px;
    font-weight: bold;
    color: #333;
}

.modal-body {
    font-size: 16px;
    color: #666;
    line-height: 1.3;
    padding: 8px 14px;
}

.btn-confirm {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #fff;
}

.btn-confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
    background: linear-gradient(135deg, #20c997, #28a745);
}

.btn-decline {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    color: #fff;
}

.btn-decline:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 53, 69, 0.3);
    background: linear-gradient(135deg, #e74c3c, #dc3545);
}

.legal-notice {
    font-size: 12px;
    color: #999;
    line-height: 1.3;
}

.legal-notice a {
    color: #007bff;
    text-decoration: none;
}

.legal-notice a:hover {
    text-decoration: underline;
}