body {
    overflow-x: hidden;
}






/* Hero Section */

.product-hero-section {
    position: relative;
    width: 100%;
    height: 45vh;
    overflow: hidden;
    z-index: 0;
}

.product-hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("../img/hero-background.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(40%) blur(2px);
    z-index: -1;
}



.product-hero-text {
    position: absolute;
    z-index: 1;
    padding: 60px 0px;
    text-align: center;
    letter-spacing: -1px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;


}




.product-hero-text h2 {
    font-family: var(--primary-font);
    color: var(--light);
    text-align: center;
    font-size: 45px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
}


.product-hero-text p {
    font-family: var(--prinary-font);
    color: var(--light);
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: capitalize;
}


.product-hero-text a {
    font-family: var(--prinary-font);
    color: var(--light);
    text-align: center;
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
    text-transform: capitalize;
    text-decoration: none;
}

.hero-btn {
    font-size: 18px;
    font-weight: 400;
    background-color: var(--primary-color);
    text-transform: capitalize;
    color: var(--light);
    padding: 10px 20px;
    border-radius: 25px;
    border-style: none;
    text-decoration: none;
    position: relative;
    transition: background-color 0.3s ease, padding-right 0.3s ease;
}



/* Hover state */
.hero-btn:hover {
    background-color: var(--secondary-color);
    color: #000;
    /* Make space for arrow */
}

.hero-btn:hover::after {
    opacity: 1;
}

/* Hero Section */




























/* product showcase */
.product-section {
    padding: 80px;
}

.product-header {
    text-align: center;
    margin-bottom: 40px;
}

.product-header h2 {
    font-size: 33px;
    font-weight: 700;
    color: var(--primary-color);
}





/* Filters */
.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filters .filter-product {
    background: var(--primary-color);
    color: var(--light);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-style: none;
}

.filters .filter-product:hover {
    background: var(--secondary-color);
    color: black;
}

.filters .filter-product.is-active {
    background: var(--secondary-color);
    color: black;
    transform: translateY(-2px);
}





/* Product Grid - we keep bootstrap columns but ensure spacing */
#grid {
    display: block;
    /* let bootstrap rows/cols handle layout */
}

.product-card {
    margin-bottom: 20px;
}



/* product item */
.product-list {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px;
    background-color: #ebebeb;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    margin-bottom: 30px;
}

.product-row {
    align-items: center;
}

.p-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

.p-description {
    border-radius: 10px;
    padding-top: 10px;
}

.p-description h4.product-name {
    text-transform: capitalize;
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
}

.p-description p {
    font-size: 18px;
    font-weight: 400;
}

/* Tabs */
.tab-btn {
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    margin-right: 15px;
    color: var(--primary-color);
}

.tab-btn.active {
    text-decoration: underline;
}

.tab-content {
    display: none;
    margin-top: 8px;
}

.tab-content.active {
    display: block;
}

.tab-content li {
    list-style: none;
    margin-bottom: 6px;
}

.tab-content i {
    color: rgb(6, 101, 6);
    font-size: 16px;
}




/* Modal & buttons */
.modal-content input {
    margin-bottom: 10px;
}

.buy-btn {
    padding: 10px 25px;
    border-radius: 30px;
    background-color: var(--primary-color);
    color: var(--light);
    transition: all 0.4s ease;
    border: none;
}

.buy-btn:hover {
    background-color: var(--secondary-color);
    color: black;
}


/* Responsive tweaks */
@media (max-width: 992px) {
    .product-section {
        padding: 80px 60px;
    }

}


@media (max-width: 768px) {
    .product-section {
        padding: 60px 40px;
    }

}




@media (max-width: 576px) {
    .product-section {
        padding: 40px 20px;
    }

}

/* product showcase */













/* responsive */


@media (max-width:992px) {
    .product-hero-text h2 {
        font-size: 40px;
    }


}