.product__list {
    background-color: var(--maroof-primary);
    padding: 90px 0;
}

.product-details-page {
    background-color: var(--maroof-primary);
}
.product-details {
    padding: 90px 0;
}
/* PRODUCT GALLERY */
.product-gallery {
    position: relative;

    background: #fff;
    padding: 30px;
    border-radius: 16px;
}

/* MAIN SLIDER */
.product-main-slider {
    border-radius: 16px;
    overflow: hidden;
    background: #f4f4f4;
}

.product-main-slider .swiper-slide {
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* HOVER ZOOM */
.product-main-slider:hover img {
    transform: scale(1.06);
}

/* THUMB SLIDER */
.product-thumb-slider {
    margin-top: 15px;
}

.product-thumb-slider .swiper-slide {
    height: 90px;
    border-radius: 12px;
    overflow: hidden;
    opacity: 0.5;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.product-thumb-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ACTIVE THUMB */
.product-thumb-slider .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--maroof-black);
}

/* HOVER EFFECT */
.product-thumb-slider .swiper-slide:hover {
    opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .product-main-slider .swiper-slide {
        height: 300px;
    }

    .product-thumb-slider .swiper-slide {
        height: 70px;
    }
}

/* ===== Product Content ===== */
.product-details__content {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
}

.product-details__title {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--maroof-black);
}

.product-details__content p {
    line-height: 1.7;
}

/* ===== Button ===== */
.btn-one {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--maroof-base);
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: capitalize;
    transition: 0.3s ease;
    text-decoration: none;
    color: #ffffff;
    border: none;
}

.btn-one:hover {
    background: var(--e-global-color-secondary);
}

/* ===== Social Icons ===== */
.blog-shares-wrap {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog-shares-wrap strong {
    color: var(--maroof-black);
    font-size: 16;
    font-weight: 600;
}

.footer-social-link .social-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    padding-left: 0;
    margin-bottom: 0;
}

.footer-social-link li {
    list-style-type: none;
}
.footer-social-link li a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--maroof-black);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: 0.3s;
    text-decoration: none;
}

.footer-social-link a:hover {
    background: var(--maroof-base);
    color: #fff;
    transform: translateY(-3px);
}

/* ===== Tabs Section ===== */

.product-details__information {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
}

/* Tabs */
.nav-lb-tab {
    border-bottom: 1px solid #eee;
    gap: 10px;
    padding-bottom: 15px;
}

.nav-lb-tab .nav-link {
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    background: transparent;
    color: #555;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-lb-tab .nav-link.active {
    background: var(--maroof-base);
    color: #fff;
}

.nav-lb-tab .nav-link:hover {
    background: var(--maroof-black);
    color: var(--maroof-white);
}

/* ===== Description Section ===== */
.service-details-style4-text-box-two {
    margin-top: 20px;
}

.service-details-style4-text-box-two p {
    line-height: 1.7;
}

/* Feature List */
.service-details-style4-text-box-two ul {
    margin-top: 20px;
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: disc;
}

.service-details-style4-text-box-two ul li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    list-style-type: disc !important;
}

.service-details-style4-text-box-two .icon {
    width: 20px;
    height: 20px;
    background: var(--maroof-gray);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.service-details-style4-text-box-two .icon i {
    font-size: 10px;
}

/* ===== Modal ===== */
.modal-content {
    border-radius: 16px;
    padding: 20px;
    border: none;
}

.modal-body h3 {
    font-weight: 600;
    font-size: 32px;
}

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

/* Close Button */

.custom-header .widget-heading {
    width: 40px;
    height: 40px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--maroof-gray);
    transition: all 0.3s ease;
}

.custom-header .widget-heading:hover {
    background-color: var(--maroof-base);
    color: var(--maroof-white);
    border-color: transparent;
}

.custom-header .widget-heading:hover .close-side-widget {
    color: var(--maroof-white);
}
.custom-header .close-side-widget {
    font-size: 18px;
    color: var(--maroof-gray);
    text-decoration: none;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
    .product-details__content {
        margin-top: 30px;
    }

    .product-details__title {
        font-size: 26px;
    }

    .product-details__information {
        padding: 25px;
    }
}

.related-prodcuts {
    padding: 90px 0;
    position: relative;
}
