.hab-ps-add-to-cart .quantity, .hab-ps-add-to-cart .single_add_to_cart_button{
    display: none;
}

.hab-product-showcase {
    display: flex;
    gap: 40px;
}

.hab-ps-left {
    width: 50%;
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.08), 0px 10px 20px rgba(0, 0, 0, 0.05);
}

.hab-ps-right {
    width: 50%;
}

.hab-ps-right .hab-ps-add-to-cart{
    margin-top: 20px;
}

.hab-ps-right .hab-bundle-picker{
    width: 100%;
}

.hab-ps-thumbs .swiper-slide {
    opacity: 0.4;
    cursor: pointer;
}
.hab-ps-thumbs .swiper-slide-thumb-active {
    opacity: 1;
}

.hab-ps-title{
    margin: 0;
}

.hab-ps-title-gradient {
    background: linear-gradient(90deg, #ff8a00, #e52e71, #9b00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hab-ps-right .product-tabs-star-rating{
    margin-top: 0;
}

.hab-ps-heading{
    margin-bottom: 10px;
}

.hab-ps-price, .hab-ps-heading{
    margin-top: 10px;
}

.hab-ps-description > p, .hab-ps-description > ul{
    margin-bottom: 5px;
}

.hab-ps-description > ul > li > p, .hab-ps-promo-description > p{
    margin-bottom: 0;
}



.hab-ps-price{
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.hab-ps-price del {
    color: #999;
}

.hab-ps-price ins{
    background: white !important;
    color: #434347;
}

.hab-ps-price ins, .hab-ps-price del{
    font-size: 24px;
    font-weight: bold;
}



/* Wrapper so arrows overlay the thumbnail row */
.hab-ps-thumbs-wrapper {
    position: relative;
    margin-top: 20px;
}

/* BUTTON STYLE — exact match to screenshot */
.hab-ps-thumb-prev,
.hab-ps-thumb-next {
    position: absolute;               /* ⬅ IMPORTANT */
    top: 50%;                         /* ⬅ align vertically */
    transform: translateY(-50%);      /* ⬅ align vertically */
    background-color: #fff;
    border: 1px solid #edecf6;
    height: 26px;
    width: 26px;
    border-radius: 3px;               /* square-rounded corners */
    display: flex;                    /* center arrow */
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
}

/* left / right placement */
.hab-ps-thumb-prev { left: -16px; }
.hab-ps-thumb-next { right: -16px; }

/* ARROW SHAPE — thin ">" and "<" */
.hab-ps-thumb-prev::after,
.hab-ps-thumb-next::after {
    content: "";
    display: block;
    width: 6px;
    height: 6px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: #000;
    padding: 2px;
}

/* Rotate to form < and > */
.hab-ps-thumb-prev::after {
    transform: rotate(135deg);
}

.hab-ps-thumb-next::after {
    transform: rotate(-45deg);
}

/* Hover effect */
.hab-ps-thumb-prev:hover,
.hab-ps-thumb-next:hover {
    background: #fafafa;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* Disable Swiper's default arrows ONLY inside this widget */
.hab-product-showcase .swiper-button-prev::after,
.hab-product-showcase .swiper-button-next::after {
    display: none !important;
    content: none !important;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .hab-product-showcase {
        flex-direction: column;
        gap: 20px;
    }

    .hab-ps-left,
    .hab-ps-right {
        width: 100%;
    }

    .hab-ps-add-to-cart .hab-main-action{
        padding: 8px;
    }

    /* Thumbnail wrapper with flex for arrows + thumbs */
    .hab-ps-thumbs-wrapper {
        display: flex;
        align-items: center; 
        justify-content: space-between; 
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .hab-ps-thumbs {
        flex: 1;
        margin: 0 10px;              
    }

    .hab-ps-thumb-prev {
        order: 0;                     
    }

    .hab-ps-thumb-next {
        order: 2;                    
    }

    .hab-ps-thumbs .swiper-slide {
        width: 60px !important;
        opacity: 0.6;
    }

    .hab-ps-thumbs .swiper-slide-thumb-active {
        opacity: 1;
    }

    /* arrows size */
    .hab-ps-thumb-prev,
    .hab-ps-thumb-next {
        width: 22px;
        height: 22px;
    }

    .hab-ps-right .hab-main-action{
        width: 70% !important;
    }
}

.hab-ps-add-to-cart .hab-main-action{
    width: 70% !important;
}