.cartdrawerCustomfields.mySwiper {
    margin: 20px 0 0 0; /* Top margin: 20px, other sides: 0 */
    position: relative;
}

.cart_productAddedWrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 5px 0; /* Reduced margin */
    padding: 5px; /* Reduced padding */
    background-color: #f9f9f9;
    border-radius: 5px;
    max-height: 150px;
    overflow: hidden;
}

.imageCartProduct {
    width: 80px;
    height: 80px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.imageCartProduct img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 0; /* Removed border-radius */
}

.cartproductWrapper {
    flex: 1;
    text-align: left;
    width: calc(100% - 100px);
}

.addedproductTitle {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 5px;
}

.addedproductdesc {
    font-size: 12px;
    margin-bottom: 10px;
}

#ProductAdd {
    background-color: #000000; /* Changed background color to black */
    color: white;
    padding: 5px 10px;
    border: none;
    border-radius: 0; /* Removed border-radius */
    cursor: pointer;
    font-size: 14px;
}

#ProductAdd:hover {
    background-color: #333333; /* Darker shade for hover effect */
}

.swiper-button-next,
.swiper-button-prev {
    width: 30px !important;
    height: 30px !important;
    background-color: rgba(0, 0, 0, 0.5) !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    margin-top: 0 !important; /* Ensure no additional margin */
}

.swiper-button-next svg,
.swiper-button-prev svg {
    fill: white !important;
    stroke: none !important;
    width: 15px !important;
    height: 15px !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: none !important; /* Remove default arrow */
}

.swiper-button-next {
    right: 10px !important;
}

.swiper-button-prev {
    left: 10px !important;
}
