/* Pros and Cons */
.pros-cons {
    font-weight: bold;
    padding: 5px 10px;
    color: #fff;
}
.pros-cons.pros {
    background-color: #00bf08;
}
.pros-cons.cons {
    background-color: #bf000a;
}
.apb-details .pro-col .apb-icon-list li i{
    font-style: normal !important;
    color: #58c649;
    margin-right: 8px;
}
.apb-details .cons-col .apb-icon-list li i{
    font-style: normal !important;
    color: #f24f4f;
    margin-right: 8px;
}
.apb-details li{
    list-style: none !important;
}
/* Pros and Cons End */

/* Rating Circle */
.apb-rating-circle-wrapper {
    display: flex;
    justify-content: center;
}
.apb-rating-circle {
    --size: 60px;
    --border: 6px;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    color: #333;
    background: conic-gradient(
        #bf000a calc(var(--rating) * 10%),
        #e0e0e0 0
    );
}
.apb-rating-circle span {
    position: absolute;
    display: block;
    width: calc(var(--size) - var(--border)*2);
    height: calc(var(--size) - var(--border)*2);
    background: white;
    border-radius: 50%;
    line-height: calc(var(--size) - var(--border)*2);
    text-align: center;
    font-size: 13px;
}
/* Rating Circle End */

/* Buttons */
.button {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 6px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
}

.amazon-btn {
    background-color: #ff9900;
    color: #fff;
}

.flipkart-btn {
    background-color: #2874f0;
    color: #fff;
}

.flipkart-btn:hover,
.amazon-btn:hover,
.default-btn:hover {
    opacity: 0.9;
    color: #fff;
}

.default-btn {
    background-color: #444;
    color: #fff;
}
/* Buttons End */

/* Toggle */
.apb-toggle{
    padding: 5px !important;
}
/* Toggle End */

/* Quality Label */
.quality {
    font-size: 12px;
    color: #2a55e5;
}
/* Quality End */

/* Rank Badge */
.apb-rank-badge {
    position: absolute;
    top: 50px;
    left: -15px;
    z-index: 1;
    background: #7c00ff;
    color: white;
    font-weight: bold;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}
/* Rank Badge End */

/* Wishlist Icon */
.wishlist-col a i {
    font-size: 20px;
    color: #bf000a;
    font-style: normal !important;
}
/* Wishlist Icon End */

/* Specifications Icon Lists */
.apb-spec-list li::before {
    content: "• ";
    color: #555;
    margin-right: 5px;
}
/* Specifications Icon Lists End */

/* Short Description */
.apb-short-desc {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5em !important;
    max-height: calc(1.5em * 3);
}
/* Short Description End */

.apb-product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.apb-product-info a i {
    font-size: 20px;
    color: #bf000a;
    font-style: normal !important;
}