.badge-discount {
    top: 7px;
}

.product-details-section {
    padding-top: 60px;
}

.product-details-image {
    width: 100%;
    height: 450px;
}

.product-details-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-images-list {
    width: 100%;
    padding: 10px 0;
    margin-top: 30px;
  }
  


.product-image-item {
    width: 100px !important;
    height: 100px !important;
   
}

.product-image-item img {
    width: 100px !important;
    height: 100px !important;
    object-fit: cover;
    border: 1px solid #ddd;
    margin: 3px;

}

.active-project-item {
    border: 3px solid var(--primary-color);
}

.project-details-content h4 {
    color: var(--primary-color);
    margin-bottom: 25px;
}

.price span {
    font-size: 1.5rem;
    margin-left: 15px;
}

.old-price {
    position: relative;
}

.old-price hr {
    position: absolute;
    border-top: 2px solid red;
    width: 100%;
    top: 10%;
    left: 2px;
    transform: translateY(-50%) rotate(167deg);
    opacity: 1 !important;
}

.product-description {
    opacity: 0.7;
}

.action-btn-container {
    margin-top: 30px;
}

.counter {
    display: flex;
    gap: 30px;
    font-size: 1.1rem;
    border: 1px solid var(--heading-color);
    padding: 10px 20px;
    border-radius: 30px;
    width: fit-content;

}

.action-btn {
    cursor: pointer;
}

.counter p {
    margin: 0;
    user-select: none;
}

.count {
    font-weight: 600;
    font-size: 1.1rem;
}

.add-to-cart-btn {
    background-color: var(--heading-color);
    border: 1px solid var(--heading-color) !important;
    color: #fff;
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    max-width: 250px;
    width: 100%;
    transition: all 0.3s ease;
    outline: none;
}


.add-to-cart-btn a{
    color: #fff;
}

.add-to-cart-btn:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
    color: #fff;
}

.add-to-wishlist-btn {
    background-color: #fff;
    border: 1px solid var(--heading-color) !important;
    color: var(--heading-color);
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.add-to-wishlist-btn:hover {
    background-color: var(--heading-color);
    border: 1px solid var(--heading-color) !important;
    color: #fff;
}

.additional-project-info {
    padding-bottom: 60px;
}

.head-description-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.additional-desc-btn {
    background-color: #fff;
    border: 1px solid var(--heading-color) !important;
    color: var(--heading-color);
    padding: 10px 30px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.additional-desc-btn:hover {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color) !important;
    color: #fff;
}

.active-adition-btn {
    background-color: var(--heading-color);
    border: 1px solid var(--heading-color) !important;
    color: #fff;
}

.additional-desc {
    display: none;
    transition: all 0.3s ease;
}

.active-additional-desc {
    display: block;
}

.custom-gap {
    gap: 3rem;
}

@media screen and (max-width: 991px) {
    .product-details-image {
        height: 300px;
    }

    .products-images-list {
        margin-bottom: 30px;
    }

    .custom-gap {
        gap: 0.5rem;
    }
}

@media screen and (max-width: 576px) {
   .price span {
    font-size: 0.9rem;
    margin-left: 8px;
}
}