/**
 * MakeMais Product Carousel
 * Estilos do carrossel de produtos para Elementor
 */

/* Container principal */
.makemais-product-carousel-wrapper {
    position: relative;
    width: 100%;
}

.makemais-product-carousel {
    overflow: hidden;
}

/* Card do produto */
.makemais-product-card {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.makemais-product-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Imagem do produto */
.makemais-product-image {
    position: relative;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 4px;
}

.makemais-product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.makemais-product-card:hover .makemais-product-image img {
    transform: scale(1.05);
}

/* Badge de promoção */
.makemais-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 3px;
    z-index: 2;
    text-transform: uppercase;
}

/* Conteúdo do card */
.makemais-product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    text-align: center;
}

/* Título do produto */
.makemais-product-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    line-height: 1.4;
}

.makemais-product-title a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: inherit;
}

.makemais-product-title a:hover {
    color: #0073aa;
}

/* Avaliação em estrelas */
.makemais-product-rating {
    margin-bottom: 8px;
}

.makemais-product-rating .star-rating {
    display: inline-block;
    font-size: 14px;
}

/* Preço */
.makemais-product-price {
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 600;
    color: #333333;
}

.makemais-product-price del {
    color: #999999;
    font-weight: 400;
    font-size: 14px;
    margin-right: 5px;
}

.makemais-product-price ins {
    text-decoration: none;
    color: #333333;
}

/* Botão Adicionar ao Carrinho */
.makemais-add-to-cart {
    margin-top: auto;
}

.makemais-add-to-cart a {
    display: inline-block;
    width: 100%;
    padding: 10px 20px;
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.makemais-add-to-cart a:hover {
    background-color: #555555;
    color: #ffffff;
}

.makemais-add-to-cart a.added::after {
    content: '';
    margin-left: 5px;
}

.makemais-add-to-cart a.loading {
    opacity: 0.7;
}

/* Setas de navegação */
.makemais-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #333333;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.makemais-carousel-arrow:hover {
    background-color: #555555;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.makemais-carousel-arrow:hover svg {
    fill: currentColor;
}

.makemais-carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.makemais-arrow-prev {
    left: -20px;
}

.makemais-arrow-next {
    right: -20px;
}

.makemais-carousel-arrow.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Paginação (Dots) */
.makemais-carousel-pagination {
    text-align: center;
    margin-top: 20px;
}

.makemais-carousel-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #cccccc;
    opacity: 1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.makemais-carousel-pagination .swiper-pagination-bullet-active {
    background-color: #333333;
    transform: scale(1.2);
}

/* Mensagem de sem produtos */
.makemais-no-products {
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
    color: #666666;
}

/* Responsividade */
@media (max-width: 1024px) {
    .makemais-arrow-prev {
        left: 10px;
    }

    .makemais-arrow-next {
        right: 10px;
    }

    .makemais-carousel-arrow {
        width: 35px;
        height: 35px;
    }

    .makemais-carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
}

@media (max-width: 768px) {
    .makemais-product-title {
        font-size: 14px;
    }

    .makemais-product-price {
        font-size: 16px;
    }

    .makemais-carousel-arrow {
        width: 32px;
        height: 32px;
    }

    .makemais-carousel-arrow svg {
        width: 18px;
        height: 18px;
    }

    .makemais-arrow-prev {
        left: 5px;
    }

    .makemais-arrow-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .makemais-product-card {
        padding: 10px;
    }

    .makemais-add-to-cart a {
        padding: 8px 15px;
        font-size: 13px;
    }

    .makemais-carousel-arrow {
        width: 28px;
        height: 28px;
    }

    .makemais-carousel-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* Swiper fixes */
.makemais-product-carousel .swiper-slide {
    height: auto;
}

.makemais-product-carousel .swiper-wrapper {
    align-items: stretch;
}

/* WooCommerce button loading state */
.makemais-add-to-cart .added_to_cart {
    display: none;
}

/* Star rating colors */
.makemais-product-rating .star-rating span::before {
    color: #ffb900;
}
