.product-details-sub {
    width: 84%;
    margin: auto;
    padding: 20px 0;
}

.image-list {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin: 10px 0;
    flex-wrap: wrap; /* wrap images on small screens */
}

.image-list img {
    width: 100px;
    border: 1px solid var(--second-border-color);
    padding: 3px;
}

.product-details-amin-section {
    width: 100%;
    display: flex;
    gap: 68px;
    /* flex-wrap: wrap; wrap sections on small screens */
}

.product-images {
    width: 40%;
}

.main-image {
    text-align: center;
}

.main-image img {
    width: 100%;
    max-width: 539px;
    padding: 15px;
    border: 1px solid var(--second-border-color);
}

.products-detail-texts {
    width: 60%;
}

.product-headin-del h1 {
    color: var(--heading-color);
    font-weight: 500;
    font-size: 26px;
    letter-spacing: 0.7px;
    text-transform: capitalize;
}

/* Rating & Price */
.rating-star i {
    color: var(--navbar-color);
    font-size: 10px;
    padding-right: 15px;
}

.rating-star i:last-child {
    color: var(--para-color);
}

.rating-star-del,
.product-rating-del,
.product-price-del {
    font-size: 14px;
    display: flex;
    gap: 15px;
    font-weight: 500;
    color: var(--para-color);
}

.carts-buttons{
        display: flex;
    gap: 8px;
}

.prev-price {
    text-decoration: line-through;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
}

.curent-price-del {
    color: #fff;
    font-weight: 500;
    font-size: 23px;
}

.description h2 {
    font-weight: 500;
    color: #fff;
    font-size: 16px;
    letter-spacing: 0.7px;
}

.description p {
    color: var(--para-color);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.7px;
    /* padding: 8px 0; */
    line-height: 21px;
}

/* Product ID & Delivery */
.product-id-delivery {
    width: 100%;
    max-width: 300px;
    /* justify-content: space-between; */
    gap: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

/* Quantity & Color */
.quantity-size-color {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    padding: 15px 0;
}

.quantity-num select {
    height: 30px;
    width: 60px;
    border: 1px solid var(--second-border-color);
    border-radius: 4px;
    font-size: 15px;
    padding: 0 10px;
    outline: none;
}

/* Add to Cart / Wishlist */
.addtocart button,
.addtowishlist button {
    height: 30px;
    width: 150px;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    border: none;
    cursor: pointer;
    transition: all 0.2s linear;
}

.addtowishlist button {
    background-color: #ff2d8f;
    color: var(--heading-color);
}

/* Social Media Icons */
.social-media-icons-del {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 20px;
}

/* Reviews Section */
.review-txts {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.product-details-main{
    padding-top: 80px;
}
.left-review-div {
    width: 100%;
}

.right-review-div {
    width: 100%;
    border: 1px solid var(--second-border-color);
    padding: 20px 0;
    margin: 20px 0;
}

/* Review Form */
.review-form {
    width: 100%;
    margin: auto;
}

.form-input input,
.form-input select,
.form-input textarea {
    width: 100%;
    font-size: 14px;
    padding: 10px;
    border: 1px solid var(--second-border-color);
    outline: none;
}

/* ---------------- RESPONSIVE ---------------- */

@media (max-width:768px){
    .product-details-amin-section{
        display: block;
        justify-items: center;
    }
    .product-images {
    width: 81%;
}

.addtocart{
    margin: 10px 0;
}
.carts-buttons{
    display: block;
}
}