/* Product Slider container styles */
.product-slider-container-4dd5d5ac {
    position: relative;
    padding: 20px 10px 40px 10px;
    width: 100%;
    box-sizing: border-box;
}

/* Product Card structure */
.product-slide-card-4dd5d5ac {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: auto;
    border: 1px solid #f0f0f0;
}

.product-slide-card-4dd5d5ac:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.product-card-inner-4dd5d5ac {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image styling */
.product-image-wrapper-4dd5d5ac {
    position: relative;
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background: #fdfdfd;
    overflow: hidden;
}

.product-image-wrapper-4dd5d5ac img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-slide-card-4dd5d5ac:hover .product-image-wrapper-4dd5d5ac img {
    transform: scale(1.06);
}

/* Typography & Info */
.product-info-4dd5d5ac {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: center;
}

.product-title-4dd5d5ac {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.product-title-4dd5d5ac a {
    color: #333333;
    text-decoration: none;
    transition: color 0.2s;
}

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

.product-price-4dd5d5ac {
    font-size: 15px;
    color: #111111;
    font-weight: 700;
    margin-bottom: 12px;
}

.product-price-4dd5d5ac del {
    color: #888;
    font-size: 13px;
    font-weight: 400;
    margin-right: 4px;
}

.product-price-4dd5d5ac ins {
    text-decoration: none;
}

/* Add to cart action */
.product-action-4dd5d5ac {
    margin-top: auto;
}

.product-action-4dd5d5ac .add-to-cart-btn-4dd5d5ac {
    background-color: #111111;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.product-action-4dd5d5ac .add-to-cart-btn-4dd5d5ac:hover {
    background-color: #333333;
    color: #ffffff;
}

/* Navigation Customization */
.swiper-button-next-4dd5d5ac,
.swiper-button-prev-4dd5d5ac {
    color: #111111;
    background: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: background 0.3s, color 0.3s;
}

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

.swiper-button-next-4dd5d5ac:hover,
.swiper-button-prev-4dd5d5ac:hover {
    background: #111111;
    color: #ffffff;
}

.swiper-pagination-4dd5d5ac .swiper-pagination-bullet-active {
    background: #111111;
}

/* Responsive adjustment */
@media (max-width: 767px) {
    .swiper-button-next-4dd5d5ac,
    .swiper-button-prev-4dd5d5ac {
        display: none; /* Hide navigation on small screens to prioritize swipe space */
    }
}
