@font-face {
    font-family: 'Montserrat';
    src: url('assets/Montserrat.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'MontserratBold';
    src: url('assets/Montserrat-Bold.ttf') format('truetype');
}
@font-face {
    font-family: 'MontserratSemiBold';
    src: url('assets/Montserrat-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'GeorgiaItalic';
    src: url('assets/GeorgiaItalic.ttf') format('truetype');

}

@font-face {
    font-family: 'GeorgiaBoldItalic';
    src: url('assets/BAUERBOR.OTF') format('opentype');

}

@font-face {
    font-family: 'Georgia';
    src: url('assets/BAUERBOR.OTF') format('opentype');

}




.below-product {
    display: flex;
    width: 100vw;
    background: #fff;
}
.below-left, .below-right {
    width: 50vw;
    min-height: 40vw;
    display: flex;
    align-items: center;
    justify-content: center;
}
.below-left {
    padding: 0;
}
.below-img {
    width: 100%;
    height: 40vw;
    object-fit: cover;
    display: block;
}
.below-right-inner {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 80%;
}
.below-box1 {
    color: #000;
    padding-top: 20px;
    border-radius: 8px;
    font-family: Montserrat, sans-serif;
    font-size: clamp(10px, 1vw, 16px);
    text-align: center;
    letter-spacing: 0.2em;
}
.below-box2 {
    color: #000;
    padding-top: 25px;
    border-radius: 8px;
    font-family: GeorgiaBoldItalic, sans-serif;
    font-size: clamp(32px, 4vw, 50px);
    text-align: center;
}
.below-box3 {
    color: #000;
    padding-top: 25px;
    padding-bottom: 25px;
    border-radius: 8px;
    font-family: GeorgiaBoldItalic, sans-serif;
    font-size: clamp(14px, 1vw, 20px);
    text-align: center;
    line-height: 1.7;
    
}
@media (max-width: 900px) {
    .below-product {
        flex-direction: column;
    }
    .below-left, .below-right {
        width: 100%;
        min-height: 200px;
        padding-bottom:50px

    }
    .below-img {
        height: 200px;
    }
    .below-right-inner {
        width: 90%;
    }
    
}

.below-product.reverse {
    flex-direction: row-reverse;
    background-color: #000;
}
.below-product.reverse .below-box1,
.below-product.reverse .below-box2,
.below-product.reverse .below-box3 {
    color: #fff;
}


@media (max-width: 900px) {
    .below-product.reverse {
        flex-direction: column;
    }
    .below-product.reverse .below-left,
    .below-product.reverse .below-right {
        width: 100%;
        min-height: 200px;
        padding-bottom:50px
    }
    .below-product.reverse .below-img {
        height: 200px;
    }
    .below-product.reverse .below-right-inner {
        width: 90%;
    }
}

/* Suggested Products Section */
.suggested-section {
    width: 100vw;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
}
.suggested-title-montserrat {
    font-family: Montserrat, sans-serif;
    font-size: clamp(10px, 1vw, 16px);
    color: #000;
    letter-spacing: 0.2em;
    text-align: center;
    padding-top: 50px
}
.suggested-title-georgia {
    font-family: GeorgiaBoldItalic, 'Times New Roman', Times, serif;
    font-size: clamp(32px, 4vw, 50px);
    color: #000;
    text-align: center;
    padding-top: 40px
}
.suggested-products-grid {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 32px;
    width: 90vw;
    max-width: 1400px;
}
.suggested-product-card {
    color: #fff;
    overflow: hidden;
    width: 100%;
    max-width: 370px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    padding-top:20px;
}
.suggested-product-card:hover {
    transform: translateY(-6px) scale(1.03);
}
.suggested-product-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.suggested-product-title {
    font-family: Montserrat, sans-serif;
    font-size: clamp(10px, 1vw, 16px);
    margin-bottom: 12px;
    color: #000000;
    text-align: center;
    letter-spacing: 0.2em;
    line-height: 1.5;
}

.suggested-product-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(10px, 1vw, 16px);
    padding-top: 5px;
    color: #000;
    text-align: center;
    letter-spacing: 0.2em;
    padding-bottom:50px;
}


@media (max-width: 500px) {
    .suggested-products-grid {
        flex-direction: column;
        align-items: center;
        padding-bottom: 50px
    }
    .suggested-product-card {
        max-width: 95vw;
    }
    .suggested-title-georgia {

        padding-top: 20px;
        padding-bottom: 20px

    }
    .suggested-product-desc {
 
        padding-bottom:0px;
    }
}