html,
body {
    overflow-x: hidden;
}

.product-showcase-section {
    background-color: var(--bg-dark);
    color: var(--beige-light);
}


/* Product Image Zoom */

.main-product-image {
    overflow: hidden;
    /* border-radius: 16px; */
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    max-width: 600px;
    margin: 0 auto;
}

.zoom-image {
    transition: transform 0.6s ease;
    cursor: zoom-in;
}

.zoom-image:hover {
    transform: scale(1.15);
}


/* Thumbnails */

.thumbnail-gallery img {
    width: 70px;
    height: 90px;
    object-fit: cover;
    /* border-radius: 8px; */
    opacity: 0.6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.thumbnail-gallery img:hover,
.thumbnail-gallery .active {
    opacity: 1;
    border: 2px solid var(--beige-dark);
}


/* Product Info */

.product-name {
    color: var(--beige-dark);
    font-weight: 550;
    font-size: 2.5rem;
}

.product-price {
    color: var(--white-logo);
    font-weight: 500;
    font-size: 1.2rem;
}

.product-price .price-note {
    font-size: 0.9rem;
    color: var(--muted);
}

.product-description {
    color: var(--muted);
    font-weight: 300;
    line-height: 1.6;
}


/* Specifications Table */

.specs-table td {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.95rem;
    background-color: #121212;
    color: #C2A87A;
}

.specs-table td:first-child {
    color: var(--white-logo);
    width: 40%;
}


/* Buttons */

.btn-enquiry {
    background-color: var(--beige-dark);
    color: var(--bg-dark);
    font-weight: 500;
    padding: 10px 22px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-enquiry:hover {
    background-color: var(--beige-light);
    color: var(--bg-dark);
}

.btn-download {
    background: transparent;
    color: var(--beige-light);
    border: 1px solid var(--beige-dark);
    padding: 10px 22px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-download:hover {
    background-color: var(--beige-dark);
    color: var(--bg-dark);
}

.application-gallery {
    background-color: #111;
    padding: 60px 0;
}

.application-gallery .container {
    padding: 0 40px;
}


/* Gallery Row */

.gallery-row {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 12px;
    overflow: hidden;
}

.gallery-item {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.6s ease;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}


/* Fix image size */

.gallery-item img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.6s ease;
    border-radius: 12px;
}


/* Hover Effects */

.gallery-item:hover {
    flex: 3;
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.05);
}


/* Overlay Text */

.hover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 20px;
    border-radius: 12px;
}

.hover-overlay span {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.gallery-item:hover .hover-overlay {
    opacity: 1;
}


/* Non-hovered images shrink slightly */

.gallery-item:not(:hover) {
    flex: 1;
    filter: brightness(0.9);
}


/* Responsive */

@media (max-width: 992px) {
    .gallery-row {
        flex-direction: column;
    }

    .gallery-item {
        flex: none;
        height: 300px;
    }

    .gallery-item img {
        height: 100%;
    }
}


/* --- Mgalam Laminates Related Products Section --- */

#mgalam-related-products {
    background-color: var(--bg-dark);
    color: var(--beige-light);
}

.mgalam-heading {
    color: var(--beige-dark);
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 2.5rem;
}

.mgalam-product-card {
    /* background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05); */
    /* border-radius: 16px; */
    transition: all 0.4s ease;
    overflow: hidden;
    /* padding: 1rem; */
}

.mgalam-product-card:hover {
    transform: translateY(-6px);
    background-color: rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.mgalam-product-img {
    /* border-radius: 8px; */
    transition: transform 0.4s ease;
}

.mgalam-product-card:hover .mgalam-product-img {
    transform: scale(1.05);
}

.mgalam-product-name {
    color: var(--white-logo);
    font-weight: 500;
    margin-top: 12px;
}

.mgalam-product-price {
    color: var(--beige-light);
    font-weight: 300;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.mgalam-card-link {
    text-decoration: none;
}

.mgalam-card-link:hover .mgalam-product-name {
    color: var(--beige-light);
}


.nt-modal {
    position: fixed;
    top: 90px;
    /* 👈 navbar height */
    left: 0;
    width: 100%;
    height: calc(100vh - 90px);
    z-index: 9999;
    /* navbar se upar */
    display: none;
    overflow-y: auto;
}