/* Custom Card offer */
.wd-products .wd-entities-title{
    display: -webkit-box;
    display: box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    font-size: .8rem !important;
    line-height: 20px !important;
		text-align: right;
}

/* ==========================================
   Product Price
   ========================================== */

.wd-products .price{
    display: flex !important;
    flex-direction: column-reverse;
    width: 100%;
}

.wd-products .price ins,
.wd-products .price del{
    display: block;
    width: 100%;
    text-align: left;
}

.wd-products .price ins{
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    padding-bottom:2px;
}

.wd-products .price del{
    font-size: 12px;
    
}
.wd-products .price ins bdi{
    color: #2f3a45;
}
.wd-products .price del bdi{
    color: #adb0b5;
}
.wd-products .price .woocommerce-Price-currencySymbol{
    font-size: 0;
}

.wd-products .price .woocommerce-Price-currencySymbol::after{
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
		margin-right: 4px;
    background:url("../images/Icon-Toman.svg") no-repeat center;
    background-size: contain;
}

/* Scale down image Card*/
.wd-products .product-image-link img{
    transform: scale(.92);
    transition: transform .3s ease;
}
/* Resize card */
.wd-products .product-wrapper{
		padding-top:0px !important;
}
/* Hide Wd-buttons */
.wd-products .wd-buttons{
    display: none !important;
}

/* Slider Navigation Arrows */

/* Style the circular navigation buttons */
.wd-btn-arrow{

    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #e5e7eb;

    /* Center the arrow inside the circle */
    display: flex;
    align-items: center;
    justify-content: center;

}

/* Style the arrow icon */
.wd-btn-arrow .wd-arrow-inner{

    /* Default arrow color */
    color: #424750;

    /* Reduce the arrow size */
    transform: scale(.60);

    /* Smooth color transition on hover */
    transition: color .25s ease, transform .25s ease;

}

/* Change only the arrow color on hover */
.wd-btn-arrow:hover .wd-arrow-inner{

    color: #D4B06A !important;

}

/**
 * =====================================================
 * Custom Sale Percentage Badge Styling
 * =====================================================
 */

/* Set price container as reference point for badge positioning */
.price {
    position: relative;
}


/* Style custom sale percentage badge */
.atriro-sale-label {

    /* Position badge vertically centered relative to price */
    position: absolute;
    top: 50%;
    transform: translateY(-50%);

    /* Align badge content */
    display: inline-flex;
    align-items: center;
    justify-content: center;

    /* Brand gradient background */
    background: linear-gradient(135deg,#D4B06A,#B8903C);

    /* Badge text color */
    color: #fff;

    /* Typography settings */
    font-size: 16px !important;
    font-weight: 600;
    line-height: 1;

    /* Badge spacing */
    padding: 6px 10px;

    /* Rounded pill shape */
    border-radius: 50px;

    /* Prevent text wrapping */
    white-space: nowrap;
}


/* Hide default WooCommerce/Woodmart sale badge */
.product-labels .onsale {
    display: none !important;
}