.productDetailSection {
    background-color: #faf8f7;
    font-family: "Poppins-Regular";
    padding: 150px 0px !important;
}
.productTitle {
    font-family: "Poppins-SemiBold";
    font-weight: 600;
    font-size: 24px;
    text-align: start;
    letter-spacing: 0%;
}
.price {
    font-family: "Poppins-Medium";
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    letter-spacing: 0%;
}
.stars i {
    font-size: 14px;
    color: #a6a6a6; /* your required color */
}

.stars i:not(:last-child) {
    margin-right: 2px;
}
.rating {
    font-family: "Poppins-Regular";
    font-size: 14px;
}
.favorite-icon {
    font-size: 26px;
    color: #a6a6a6;
    cursor: pointer;
    transition: color 0.3s ease, transform 0.2s ease;
}

.favorite-icon.active {
    color: #ff4b5c;
    transform: scale(1.2);
}

.quantity-control .btn {
    width: 40px;
    font-weight: 600;
}

.quantity-input {
    max-width: 60px;
    text-align: center;
}

/* Thumbnails */
.thumbs {
    width: 150px;
}

.thumbs img {
    width: 100%;
    /* height: 174px; */
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, border 0.2s ease;
    object-fit: contain;
    border: 2px solid transparent;
}

.thumbs img:hover {
    transform: scale(1.05);
}

.thumbs img.active-thumb {
    border: 2px solid #29a3ef;
}

/* Main Image */
.main-img img {
    /* border-radius: 12px; */
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* Product Info */

.info-list {
    list-style-type: disc;
    margin-left: 20px;
}

.info-list li {
    margin-bottom: 6px;
}

/* Buttons */
.btn-primary {
    background-color: #29a3ef;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1890d8;
}

.btn-outline-dark {
    border-radius: 50px;
    padding: 10px 25px;
    font-weight: 500;
}

.addTocartbtn {
    width: 72%;
}

/* Quantity box */
.input-group {
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
    width: 130px !important;
    height: 48px;
    display: flex;
    align-items: center;
}

.input-group .btn {
    background-color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 20px;
    line-height: 1;
    color: #555;
    transition: all 0.3s ease;
    border-radius: 50%;
}

/* .input-group .btn:hover {
  background-color: #29a3ef;
  color: #fff;
} */

.input-group input.form-control {
    border: none;
    font-weight: 600;
    text-align: center;
    height: 40px;
    font-size: 16px;
    padding: 0;
    color: #333;
    background: transparent;
}

.input-group input.form-control:focus {
    box-shadow: none;
    outline: none;
}

/* Alignments */
.quantity-cart-wrapper {
    align-items: center;
    flex-wrap: wrap;
}

.buynowbtn .btn-outline-dark {
    height: 48px;
}
.zoom-wrapper {
    position: relative;
    display: flex;
    gap: 20px;
}

/* Zoom Window */
#zoomWindow {
    position: absolute;
    top: 200px;
    right: 250px;
    width: 425px;
    height: 425px;
    border: 2px solid #ccc;
    background-repeat: no-repeat;
    background-size: 200%;
    display: none;
    z-index: 999;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ------------------------------
   RESPONSIVE DESIGN
------------------------------ */
@media (max-width: 1024px) {
    .thumbs img {
        width: 100%;
        height: 120px;
        border-radius: 8px;
        cursor: pointer;
        transition: transform 0.3s ease, border 0.2s ease;
        object-fit: cover;
        border: 2px solid transparent;
    }
}

@media (max-width: 991px) {
    .thumbs {
        display: flex;
        flex-direction: row;
        justify-content: center;
        gap: 10px;
        width: 100%;
        height: auto;
        margin-top: 15px;
    }

    /* Move thumbnails below carousel */
    .order-lg-1.order-2 {
        order: 3 !important;
    }

    .thumbs img {
        width: 70px;
        height: 90px;
    }

    .addTocartbtn {
        width: 78%;
    }

    .input-group {
        margin-bottom: 10px;
    }

    .btn-outline-dark {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .product-info h2 {
        font-size: 1.3rem;
    }

    .price {
        font-size: 1.2rem;
    }

    .thumbs img {
        width: 60px;
        height: 80px;
    }

    .d-flex.align-items-center.gap-3.mt-4.flex-wrap {
        flex-direction: column;
        gap: 10px;
    }

    .addTocartbtn {
        width: 100%;
    }
    .main-img img {
        height: auto;
    }
}

@media (max-width: 575px) {
    .product-info {
        text-align: center;
    }

    .product-info p {
        font-size: 0.9rem;
    }

    .thumbs img {
        width: 55px;
        height: 75px;
    }

    .input-group {
        width: 120px !important;
    }

    .btn.btn-primary.addTocartbtn {
        width: 100%;
    }

    .main-img img {
        max-height: 350px;
        object-fit: contain;
    }

    .info-list {
        text-align: left;
        margin-left: 0px;
    }
}

@media (max-width: 480px) {
    .productDetailSection {
        padding: 90px 0px !important;
    }
    .price {
        text-align: start;
    }
    .input-group {
        margin-bottom: 0px !important;
    }
    .btn.btn-primary.addTocartbtn {
        width: 60%;
    }
    .quantity-cart-wrapper {
        justify-content: space-between;
    }
}
