/* Shop Page Styles */

.shop-hero {
    width: 100%;
    min-height: 800px;
    background: #9B26B6 url('../image/Hero%20Section.png') no-repeat center center / cover;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden; /* Prevent scrollbars */
}

.shop-hero__container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;  
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: 0 20px;
}


.shop-hero__product-line {
    width: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 0; /* Removed double padding */
    gap: 0;
}

.shop-hero__product-line img {
    flex: 0 1 auto; /* Allow shrinking */
    min-width: 0;   /* Allow shrinking below intrinsic width */
    max-height: 450px;
    height: auto;
    width: auto;
    max-width: 100%;
    display: block;
    margin-bottom: 0;
}



.shop-hero__text {
    color: #FFF0EE;
    font-family: "ES Rebond Grotesque", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 800px;
    margin-top: 40px;
    margin-bottom: 30px;
}

.shop-hero__btn {
    background-color: #E6C27A;
    color: #9B26B6;
    font-family: "ES Rebond Grotesque", sans-serif;
    font-size: 24px;
    font-weight: 500;
    padding: 15px 40px;
    border-radius: 50px;
    border: 2px solid transparent;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
    display: inline-block;
}

.shop-hero__btn:hover {
    background-color: #e3061b;
    color: #ffffff;
    border-color: #ffffff;
}

/* Responsive Styles */
@media (max-width: 1400px) {
    .shop-hero__product-line img {
        max-height: 380px;
    }
}

@media (max-width: 1200px) {
    .shop-hero__product-line img {
        max-height: 320px;
    }
}

@media (max-width: 991px) {
    .shop-hero {    
        padding: 40px 0;
    }

    .shop-hero__product-line {
        flex-wrap: nowrap;              
        gap: 0;
        padding: 0;
        overflow-x: visible;
    }

    .shop-hero__product-line img {
        max-height: 200px;
        margin-left: 0 !important;
    }

    .shop-hero__text {
        font-size: 16px;
        margin-bottom: 30px;
        padding: 0 15px;
    }
}

@media (max-width: 768px) {
    .shop-hero__product-line img {
        max-height: 150px;
    }
}

@media (max-width: 575px) {
    .shop-hero__product-line img {
        max-height: 120px;
    }

    .shop-hero__btn {
        font-size: 16px;
        padding: 8px 30px;
    }
}
