.variant-box {
    margin-bottom: 15px;
}
.single-product-style1__review i {
    color: var(--cleanon-base)!important;
}
.size-options {
    display: flex;
    gap: 10px;
}

.size-btn {
    padding: 8px 14px;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}
.product-details__reveiw {
    border-bottom: none!important;
}
.icon-star {
    color: #ddd !important;   /* default GREY */
    font-size: 16px;
}

.icon-star.active {
    color: #f1ab21 !important; /* ONLY active stars yellow */
}

.size-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Color */
.color-options {
    display: flex;
    gap: 10px;
}

.color-box {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: 0.3s;
}
.product-details__select-size ul {
    gap:0px!important;
}

.color-box.active {
    /*border: 2px solid #000;*/
    /*transform: scale(1.1);*/
}
/* Common Button Style */
.product-details__buttons-boxes .thm-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    color: #fff;
    border: none;
}

/* 📘 Catalog Button (Primary Blue) */
.product-details__buttons-1 .thm-btn {
    background: #89632d;
}

.product-details__buttons-1 .thm-btn:hover {
    background: #5e3e0f;
    transform: translateY(-2px);
}

/* ❌ Disabled Catalog */
.product-details__buttons-1 .thm-btn.disabled {
    background: #6c757d;
    cursor: not-allowed;
}

/* 💚 WhatsApp Button */
.whatsapp-btn {
    background: #25D366;
}

.whatsapp-btn:hover {
    background: #1ebe5d;
    transform: translateY(-2px);
}

/* Icon spacing */
.thm-btn i {
    font-size: 14px;
}
.product-details__social-link a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    margin-right: 8px;
    transition: 0.3s ease;
    font-size: 16px;
}

/* Facebook */
.product-details__social-link a:nth-child(1) {
    background: #1877f2;
}

/* WhatsApp */
.product-details__social-link a:nth-child(2) {
    background: #25d366;
}

/* Instagram */
.product-details__social-link a:nth-child(3) {
    background: radial-gradient(circle at 30% 107%, 
        #fdf497 0%, #fdf497 5%, 
        #fd5949 45%, #d6249f 60%, 
        #285AEB 90%);
}

/* Hover effect */
.product-details__social-link a:hover {
    transform: scale(1.1);
    opacity: 0.9;
}
    .old-price{
    text-decoration: line-through;
    color: #999;
}
.product-price-box{
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

/* 💰 Current Price */
.current-price{
    font-size: 40px;
    font-weight: 600;
    color: mediumseagreen;
    letter-spacing: 0.2px;
}
.review-list-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.single-review {
    padding: 12px 0;
    border-bottom: 1px solid #f1f1f1;
}

.single-review:last-child {
    border-bottom: none;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-header strong {
    font-size: 14px;
}

.review-text {
    margin: 5px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}

.stars {
    font-size: 14px;
}

/* 🏷️ MRP */
.old-price{
    font-size: 17px;
    font-weight: 500;
    color: #888;
    text-decoration: line-through;
}

/* 🔥 Discount Badge */
.discount-badge{
    background: linear-gradient(135deg, #ff3b30, #ff6b6b);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 🟢 Extra Deal Label */
.deal-badge{
    background: #111;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 5px;
    letter-spacing: 0.4px;
}

/* 📱 Mobile Responsive */
@media(max-width: 768px){
    .current-price{
        font-size: 22px;
    }

    .old-price{
        font-size: 15px;
    }

    .discount-badge,
    .deal-badge{
        font-size: 11px;
        padding: 3px 7px;
    }
}
.spec-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.spec-item{
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.spec-item:hover{
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.spec-item .label{
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.spec-item .value{
    color: #666;
    font-size: 14px;
    text-align: right;
}

/* Mobile Responsive */
@media(max-width: 576px){
    .spec-grid{
        grid-template-columns: 1fr;
    }
}
.review-form {
    max-width: 500px;
    margin: auto;
}

.review-group {
    margin-bottom: 15px;
}

.review-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s;
}

.review-group input:focus {
    border-color: #186121;
    outline: none;
    box-shadow: 0 0 0 2px rgba(241,171,33,0.2);
}

/* Star Rating */
.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    direction: rtl;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 40px;
    color: #ccc;
    cursor: pointer;
    transition: 0.3s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f1ab21;
}

/* Button */
.review-btn {
    width: 100%;
    padding: 12px;
    background: #186121;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s;
}

.review-btn:hover {
    background: #186121;
}

/* Mobile */
@media (max-width: 576px) {
    .star-rating label {
        font-size: 24px;
    }
}
/* Common Input + Textarea Style */
.review-group input,
.review-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 14px;
    background: #fafafa;
    transition: 0.3s;
    font-family: inherit;
}

/* Focus Effect */
.review-group input:focus,
.review-group textarea:focus {
    border-color: #186121;
    background: #fff;
    box-shadow: 0 0 0 2px rgba(241,171,33,0.15);
    outline: none;
}

/* Textarea Specific */
.review-group textarea {
    min-height: 120px;
    resize: vertical; /* user can resize only vertical */
    line-height: 1.5;
}

/* Rating Label */
.rating-label {
    display: block;
    font-size: 14px;
    margin-bottom: 8px;
    color: #555;
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 6px;
    direction: rtl;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 26px;
    color: #ccc;
    cursor: pointer;
    transition: 0.2s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f1ab21;
}

/* Button */
.review-btn {
    width: 100%;
    padding: 12px;
    background: #186121;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
}

.review-btn:hover {
    background: #186121;
}

/* Mobile */
@media (max-width: 576px) {
    .review-group textarea {
        min-height: 100px;
    }
}
.review-section {
    padding: 70px 0;
}
.related-products {
    padding: 70px 0px 120px!important;
}
/* LEFT FORM */
.review-form-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #eee;
}

.review-title {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

/* INPUTS */
.review-group {
    margin-bottom: 15px;
}

.review-group input,
.review-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid #e5e5e5;
    background: #fafafa;
    font-size: 14px;
    transition: 0.3s;
}

.review-group textarea {
    min-height: 110px;
    resize: vertical;
}

.review-group input:focus,
.review-group textarea:focus {
    border-color: #186121;
    background: #fff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(241,171,33,0.15);
}

/* STAR */
.star-rating {
    display: flex;
    gap: 6px;
    direction: rtl;
}

.star-rating input {
    display: none;
}

.star-rating label {
    font-size: 26px;
    color: #ccc;
    cursor: pointer;
    transition: 0.2s;
}

.star-rating input:checked ~ label,
.star-rating label:hover,
.star-rating label:hover ~ label {
    color: #f1ab21;
}

/* BUTTON */
.review-btn {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 10px;
    background: #186121;
    color: #fff;
    font-weight: 500;
    transition: 0.3s;
}

.review-btn:hover {
    background: #186121;
}
.product-details__main-tab-box .tab-buttons .tab-btn span:before {
    background-color: #186121!important;
}
/* RIGHT SIDE */
.review-list-card {
    background: #fff;
    padding: 25px;
    border-radius: 14px;
    border: 1px solid #eee;
    height: 100%;
}

.review-subtitle {
    font-size: 22px;
    margin-bottom: 15px;
}

/* REVIEW ITEM */
.review-item {
    padding: 15px 0;
    border-bottom: 1px solid #f1f1f1;
}

.review-item:last-child {
    border-bottom: none;
}

.review-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.review-user {
    font-weight: 600;
    font-size: 16px;
}

.review-stars span {
    font-size: 25px;
    color: #ddd;
}

.review-stars .active-star {
    color: #f1ab21;
}

.review-text {
    margin: 6px 0;
    font-size: 15px;
    color: #555;
}

.review-date {
    font-size: 14px;
    color: black;
}

/* EMPTY */
.no-review {
    color: #999;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .review-list-card {
        margin-top: 20px;
    }
}