/* Structural Scoped Styling for Product Card Slider Widget - Suffix: e5e4f47b */

.product-slider-widget-container-e5e4f47b {
    position: relative;
    width: 100%;
    overflow: visible;
    padding: 20px 0;
    max-width: 100% !important;
    box-sizing: border-box;
}

.swiper-container-e5e4f47b {
    width: 100%;
    overflow: hidden;
    padding-bottom: 40px !important; /* Space for pagination dots */
}

/* Slider Track Settings - strictly preserve Swiper default transforms */
.swiper-wrapper-e5e4f47b {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    transition-property: transform, -webkit-transform !important;
}

.swiper-slide-e5e4f47b {
    height: auto; /* Required for Equal Heights columns */
    display: flex;
    flex-shrink: 0;
}

/* The Product Card Layout */
.product-card-e5e4f47b {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    outline: none;
    transition: transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.product-card-e5e4f47b:hover {
    transform: translateY(-5px);
}

/* Image Top Area */
.image-area-e5e4f47b {
    position: relative;
    width: 100%;
    height: 250px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-area-e5e4f47b img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Content Area */
.card-content-area-e5e4f47b {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 24px;
}

.card-title-e5e4f47b {
    margin-top: 0;
    margin-bottom: 10px;
    font-family: inherit;
    line-height: 1.3;
}

.card-description-e5e4f47b {
    margin: 0;
    font-family: inherit;
    line-height: 1.5;
    flex-grow: 1; /* Pushes content evenly */
}

/* Custom Navigation Arrows (Outer Edge Positioned) */
.swiper-button-next-e5e4f47b,
.swiper-button-prev-e5e4f47b {
    position: absolute;
    top: calc(50% - 20px);
    width: 44px;
    height: 44px;
    margin-top: 0;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.swiper-button-prev-e5e4f47b {
    left: -22px;
}

.swiper-button-next-e5e4f47b {
    right: -22px;
}

.swiper-button-next-e5e4f47b:hover,
.swiper-button-prev-e5e4f47b:hover {
    transform: scale(1.05);
}

/* Swiper Icon adjustment for custom sizes */
.swiper-button-next-e5e4f47b::after,
.swiper-button-prev-e5e4f47b::after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Prevent global and structural horizontal overflow/scrolling */
html, body {
    overflow-x: hidden;
}

/* Responsive Hide/Offset Arrows on tablet & mobile viewport bounds */
@media screen and (max-width: 1100px) {
    .swiper-button-prev-e5e4f47b {
        left: 10px !important;
    }
    .swiper-button-next-e5e4f47b {
        right: 10px !important;
    }
}

/* Custom Pagination styling */
.swiper-pagination-e5e4f47b {
    bottom: 0 !important;
}

.swiper-pagination-bullet-e5e4f47b {
    width: 10px !important;
    height: 10px !important;
    margin: 0 6px !important;
    border-radius: 50% !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    cursor: pointer;
}

.swiper-pagination-bullet-active-e5e4f47b {
    width: 24px !important; /* Elegant pill shape for active slide */
    border-radius: 5px !important;
}
