/**
 * Carousel styles for RAA Esteban Shop
 */

/* Carousel container */
.raa-estebanshop-cross-sell-carousel {
    width: 100%;
    max-width: 1140px;
    margin: 20px auto;
    padding: 30px 15px;
    box-sizing: border-box;
    clear: both;
}

/* Carousel title */
.raa-estebanshop-carousel-title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e0e0e0;
}

/* Swiper container */
.raa-estebanshop-swiper {
    width: 100%;
    padding-bottom: 50px;
    position: relative;
}

/* Swiper slide */
.raa-estebanshop-swiper .swiper-slide {
    height: auto;
}

/* Product card */
.raa-estebanshop-product-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    height: 100%;
}

.raa-estebanshop-product-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* Product link */
.raa-estebanshop-product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

/* Product image wrapper */
.raa-estebanshop-product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #f9f9f9;
}

.raa-estebanshop-product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Product title */
.raa-estebanshop-product-title {
    font-size: 0.95em;
    font-weight: 500;
    margin: 12px 15px 8px;
    line-height: 1.4;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

/* Product price */
.raa-estebanshop-product-price {
    font-size: 1em;
    font-weight: 600;
    color: #1a1a1a;
    padding: 0 15px 15px;
}

.raa-estebanshop-product-price del {
    color: #999;
    font-weight: 400;
    margin-right: 8px;
}

.raa-estebanshop-product-price ins {
    text-decoration: none;
    color: #e74c3c;
}

/* Product availability */
.raa-estebanshop-product-availability {
    font-size: 0.85em;
    padding: 0 15px 15px;
}

.raa-estebanshop-product-availability .stock {
    margin: 0;
}

.raa-estebanshop-product-availability .in-stock {
    color: #0f834d;
}

.raa-estebanshop-product-availability .out-of-stock {
    color: #e74c3c;
}

/* Swiper navigation */
.raa-estebanshop-swiper .swiper-button-prev,
.raa-estebanshop-swiper .swiper-button-next {
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

.raa-estebanshop-swiper .swiper-button-prev:hover,
.raa-estebanshop-swiper .swiper-button-next:hover {
    background: #fff;
}

.raa-estebanshop-swiper .swiper-button-prev::after,
.raa-estebanshop-swiper .swiper-button-next::after {
    font-size: 16px;
    font-weight: bold;
}

.raa-estebanshop-swiper .swiper-button-prev {
    left: 10px;
}

.raa-estebanshop-swiper .swiper-button-next {
    right: 10px;
}

/* Swiper pagination */
.raa-estebanshop-swiper .swiper-pagination {
    bottom: 10px;
}

.raa-estebanshop-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ccc;
    opacity: 1;
    transition: background 0.3s ease;
}

.raa-estebanshop-swiper .swiper-pagination-bullet-active {
    background: #333;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .raa-estebanshop-cross-sell-carousel {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px 10px;
    }

    .raa-estebanshop-carousel-title {
        font-size: 1.25em;
    }

    .raa-estebanshop-swiper .swiper-button-prev,
    .raa-estebanshop-swiper .swiper-button-next {
        width: 35px;
        height: 35px;
    }

    .raa-estebanshop-swiper .swiper-button-prev::after,
    .raa-estebanshop-swiper .swiper-button-next::after {
        font-size: 14px;
    }

    .raa-estebanshop-product-title {
        font-size: 0.9em;
        margin: 10px 12px 6px;
    }

    .raa-estebanshop-product-price {
        font-size: 0.95em;
        padding: 0 12px 12px;
    }
}

@media (max-width: 480px) {
    .raa-estebanshop-swiper .swiper-button-prev,
    .raa-estebanshop-swiper .swiper-button-next {
        display: none;
    }
}
