/* =========================================================
   PRODUCT PAGES UNIFIED STYLES
   (Standardizes Hero, Typography, Images, and Layout)
========================================================= */

/* ---- Typography ---- */
body {
    font-family: 'Poppins', sans-serif;
    color: #2c2c2c;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}
/*
p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
}
*/
ul {
    list-style: disc;
    padding-left: 1.2rem;
    margin-bottom: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

/* ---- Layout & Container ---- */
.page-content-wrapper {
    /* Padding is handled by style.css global media queries */
    width: 100%;
    box-sizing: border-box;
}

.page-content-wrapper .container {
    width: 100%;
    max-width: 100%;
    /* Default to full width on mobile/tablet */
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Desktop / Laptop Override */
@media (min-width: 1024px) {
    .page-content-wrapper .container {
        /* max-width: 75% !important; */
        /* 85% width on large screens */
    }
}

.row {
    margin-right: -15px;
    margin-left: -15px;
}

.col-12,
.col-lg-6,
.col-md-6,
.col-sm-12 {
    padding-left: 15px;
    padding-right: 15px;
}

/* Prevent full-width bleed unless specific */
img.img-fluid,
.product-thumb img,
.product-img {
    max-width: 100%;
    height: auto;
}

/* ---- Hero / Banner Section (Matches About.css) ---- */
.hero,
.banner-container {
    width: 100%;
    height: 670px;
    overflow: hidden;
    position: relative;
    margin-bottom: 0;
}

.hero-bg,
.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tabHeader {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    padding: 1.5rem 3rem;
    border-radius: 8px;
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    backdrop-filter: blur(2px);
    background: rgba(0, 0, 0, 0.3);
    z-index: 5;
    max-width: 90%;
    text-align: left;
    box-sizing: border-box;
    white-space: nowrap;
    /* Default, responsive adjustments below */
    transition: all 0.3s ease;
}

/* ---- Product Images Global Fix ---- */
.product-img,
.product-card img,
.img-col img {
    width: 100%;
    height: auto;
    /* Overrides fixed heights */
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.card-img-top {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* ---- Responsive Breakpoints ---- */

/* Large Desktop (1920px - 1440px) */
@media (max-width: 1920px) and (min-width: 1440px) {

    .hero,
    .banner-container {
        height: 670px;
    }

    .tabHeader {
        font-size: 2.5rem;
        padding: 1.5rem 3rem;
    }
}

/* Laptop (1440px - 1024px) */
@media (max-width: 1439px) and (min-width: 1024px) {

    .hero,
    .banner-container {
        height: 550px;
    }

    .tabHeader {
        font-size: 2.2rem;
        padding: 1.3rem 2.5rem;
    }
}

/* Tablet Landscape (1024px - 768px) */
@media (max-width: 1023px) and (min-width: 768px) {

    .hero,
    .banner-container {
        height: 450px;
    }

    .tabHeader {
        font-size: 2rem;
        padding: 1.2rem 2.2rem;
    }
}

/* Tablet Portrait (768px - 576px) */
@media (max-width: 767px) {

    .hero,
    .banner-container {
        height: 350px;
    }

    .tabHeader {
        font-size: 1.8rem;
        padding: 1rem 2rem;
        white-space: normal;
        max-width: 85%;
    }


}

/* Mobile (576px - 425px) */
@media (max-width: 575px) {

    .hero,
    .banner-container {
        height: 300px;
    }

    .tabHeader {
        font-size: 1.5rem;
        padding: 0.9rem 1.5rem;
    }


}

/* Small Mobile (< 425px) */
@media (max-width: 425px) {

    .hero,
    .banner-container {
        height: 250px;
    }

    .tabHeader {
        font-size: 1.3rem;
        padding: 0.8rem 1.2rem;
    }


}

/* Extra Small (< 320px) */
@media (max-width: 320px) {

    .hero,
    .banner-container {
        height: 200px;
    }

    .tabHeader {
        font-size: 1.1rem;
        padding: 0.7rem 1rem;
    }
}

/* ---- Utilities Cleanup Scopes ---- */
/* Ensure no negative margins affect layout */
.marign-left,
.margin-inner,
.margin-left-custom {
    margin-left: 0 !important;
}

.container-full {
    width: 100%;
    padding: 0 15px;
    /* Add padding back */
}