.my-products-carousel-wrapper-b957dd7b {
    position: relative;
    padding: 0 50px; /* Space for external arrows */
    display: block;
}

.my-products-carousel-b957dd7b {
    overflow: hidden;
    padding-bottom: 40px; /* Space for pagination dots */
}

.my-products-carousel-b957dd7b .swiper-slide {
    height: auto; /* ensure equal height columns */
}

.my-products-carousel-wrapper-b957dd7b .product-slide {
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.my-products-carousel-wrapper-b957dd7b .product-slide:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.my-products-carousel-wrapper-b957dd7b .product-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex-grow: 1;
}

.my-products-carousel-wrapper-b957dd7b .product-image img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 15px;
}

.my-products-carousel-wrapper-b957dd7b .product-title {
    font-size: 18px;
    margin: 0 0 10px;
    color: #333;
}

.my-products-carousel-wrapper-b957dd7b .product-price {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Price colors as requested */
.my-products-carousel-wrapper-b957dd7b .product-price .amount {
    color: #000; /* Regular price black */
}
.my-products-carousel-wrapper-b957dd7b .product-price ins .amount {
    color: #FF69B4; /* Sale price hot pink */
}
.my-products-carousel-wrapper-b957dd7b .product-price del .amount {
    color: #000;
    opacity: 0.6;
}

/* External Arrows positioning */
.my-products-carousel-wrapper-b957dd7b .custom-swiper-btn-prev,
.my-products-carousel-wrapper-b957dd7b .custom-swiper-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    margin-top: -20px; /* Offset for pagination space */
    z-index: 10;
    cursor: pointer;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hardcode exact physical placements regardless of language */
.my-products-carousel-wrapper-b957dd7b .custom-swiper-btn-next {
    left: 0 !important;
    right: auto !important;
}

.my-products-carousel-wrapper-b957dd7b .custom-swiper-btn-prev {
    right: 0 !important;
    left: auto !important;
}

/* Ensure Swiper default icons point in correct direction */
.my-products-carousel-wrapper-b957dd7b .custom-swiper-btn-prev::after,
.my-products-carousel-wrapper-b957dd7b .custom-swiper-btn-next::after {
    font-family: swiper-icons;
    font-size: 24px;
    text-transform: none !important;
    letter-spacing: 0;
    font-variant: initial;
    line-height: 1;
}

/* Visually pointing correctly */
.my-products-carousel-wrapper-b957dd7b .custom-swiper-btn-prev::after {
    content: 'next'; 
}
.my-products-carousel-wrapper-b957dd7b .custom-swiper-btn-next::after {
    content: 'prev';
}

.my-products-carousel-b957dd7b .swiper-pagination {
    bottom: 0px;
}

.my-products-carousel-b957dd7b .swiper-pagination-bullet-active {
    background: #333;
}

.my-products-carousel-wrapper-b957dd7b .product-add-to-cart {
    margin-top: 15px;
}
.my-products-carousel-wrapper-b957dd7b .product-add-to-cart .button {
    display: inline-block;
    width: 100%;
    padding: 10px 15px;
    background: #333;
    color: #fff;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 17px; /* Increased by 3px from 14px */
    transition: background 0.3s;
}
.my-products-carousel-wrapper-b957dd7b .product-add-to-cart .button:hover {
    background: #555;
}