/* Style for the product review section */
.productReviewSection {
    margin-top: 20px;
    position: relative;
    width: 100%;
}

.pageHead {
    font-family: "Inter";
}
.productCardBody {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    /* padding-block-start: 20px; */
    gap: 20px;
    width: 100%;
}
.productCardInner {
    justify-content: flex-start;
    gap: 16px;
    position: relative;
}
.productCardImg {
    border-radius: 10px;
    overflow: hidden;
    width: 100%;
    height: 280px;
}

.productCardImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Style for individual review items */
.prReviewItem {
    border-bottom: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 20px;
}

/* Style for review text */
.prReviewPara {
    font-size: 14px;
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    word-wrap: break-word;
    -webkit-line-clamp: 3;
}

/* Style for review stars */
.reviewStars img {
    width: 15%;
    /* Adjust the size as needed */
}

/* Style for review author */
.reviewAuthor {
    font-style: italic;
    color: #555;
    font-weight: 800;
}

/* Style for the product detail section */
.prDetailSection {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Style for the add review button */
.add-review-button {
    position: absolute;
    top: 0;
    right: 0;
    /* background: var(--bg_clr_primary2); */
    color: var(--text_clr_green2);
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
    /* padding-inline: 40px; */
    gap: 6px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    line-height: 1;
}

.add-review-button > i {
    line-height: 1;
}
/*
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.modal-container {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.modal-body {
    margin-bottom: 15px;
}

.modal-footer {
    text-align: right;
} */

.add-review-button:hover {
    color: var(--text_clr_lightOrange);
}

@media only screen and (max-width: 991px) {
    .add-review-button {
        position: relative;
        bottom: 0;
        left: 0;
    }
}


.color-component{
    display: inline-block;
    height: 30px;
    width: 30px;
    position: relative;
    margin: 2px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}
label.isChecked {
    position: relative;
    display: inline-block;
    background-color: rgba(14, 13, 13, 0.5); /* Semi-transparent dark backdrop */
    border-radius: 50%; /* Makes the backdrop circular */
    z-index: 0; /* Ensures it appears behind the checkmark */
}

label.isChecked::after {
    content: "";
    position: absolute;
    top: 9px;
    left: 7px;
    font-size: 16px;
    font-weight: bold;
    border-bottom: 2px solid #fff;
    border-left: 2px solid #fff;
    width: 16px;
    height: 8px;
    transform: rotate(-45deg);
}
