.shp-hero-banner {
    height: 100vh;
    background: url('/assets/img/productImg/ProductHeader.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--red);
}

.shp-hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Uncomment if you want a dark overlay */
    /* background: rgba(0, 0, 0, 0.6); */
}

@media (max-width: 992px) {
    .shp-hero-banner {
        padding: 100px 15px;
        background-position:center;
    }
}

@media (max-width: 768px) {
    .shp-hero-banner {
        padding: 80px 10px;
        height: 80vh;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .shp-hero-banner {
        padding: 60px 10px;
        height: 60vh;
        background-size: contain;
    }
}


/*------------------------------------------------- */
    .shp-hero-text {
        position: relative;
        z-index: 1;
    }
    .shp-content-block {
        padding: 80px 0;
        background-color:var(--red);
    }
    .shp-feature-item {
        transition: all 0.3s ease;
        border-radius: 8px;
        padding: 20px;
        background:var(--white);
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    .shp-feature-item:hover {
        transform: scale(1.05);
    }
    .shp-spec-list {
        background: #f1f3f5;
        padding: 20px;
        border-radius: 8px;
    }
    .shp-review-slider .slick-slide {
        margin: 0 10px;
    }
    .shp-review-card {
        background: #e9ecef;
        border-radius: 12px;
        padding: 25px;
        text-align: center;
    }
    .shp-cta-block {
        background: linear-gradient(135deg, #ff6b6b, #ff8e53);
        color: #fff;
        text-align: center;
    }
    .shp-tech-block {
        background: #f8f9fa;
    }
    .shp-size-guide {
        background: #fff;
    }
    .shp-size-table th, .shp-size-table td {
        text-align: center;
        padding: 10px;
    }
    .shp-product-gallery {
        background: #f9f9f9;
    }
    .shp-product-card {
        transition: all 0.3s ease;
        border: none;
        margin-bottom: 20px;
    }
    .shp-product-card img {
        border-radius: 10px;
        object-fit: cover;
        width: 100%;
        height: 200px;
    }
    .shp-product-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }