@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gelasio:ital,wght@0,400..700;1,400..700&display=swap');

/* ── GLOBAL ── */

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

a {
    color: black;
    text-decoration: none;
    font-family: Montserrat;
}

h1, h2 {
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
}

/* ── SHORT DESCRIPTION ── */

.shortdesc {
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.shortdesc-text {
    font-size: 27px;
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    margin: 0 0 18px;
}

.shortdesc-line {
    display: block;
    width: 50px;
    height: 1px;
    background: #000;
}

/* ── CTA ── */

.cta {
    display: flex;
    width: 100%;
}

.cta-img {
    width: 33%;
    height: auto;
    object-fit: cover;
}

.cta-center {
    width: 34%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #FBF6F0;
}

.cta-heading {
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    margin: 0 0 16px;
}

.cta-desc {
    font-size: 18px;
    text-align: center;
    font-family: Montserrat;
    font-weight: 300;
    letter-spacing: -0.45px;
    width: 80%;
    margin: 0;
}

.outline-btn {
    background-color: transparent;
    border: 1px solid black;
    padding: 15px 30px;
    font-size: 14px;
    font-family: Montserrat;
    cursor: pointer;
    margin-top: 35px;
    transition: transform 0.3s ease;
    color: black;
}

.outline-btn:hover {
    transform: scale(1.02);
}

/* ── MORE ABOUT ── */

.moreabout {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 80px auto;
}

.moreabout-grid {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-bottom: 70px;
    border-bottom: 1px solid black;
}

.moreabout-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    overflow: hidden;
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.moreabout-img-wrap {
    overflow: hidden;
}

.moreabout-img-wrap img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    display: block;
}

.moreabout-card:hover .moreabout-img-wrap img {
    transform: scale(1.05);
}

.moreabout-label {
    font-size: 18px;
    font-family: 'Times New Roman', Times, serif;
    margin-top: 10px;
    letter-spacing: -0.45px;
}

/* ── BESTSELLERS ── */

.bestsellers {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}

.section-heading {
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
}

.bestsellers-grid {
    display: flex;
    gap: 10px;
    margin-top: 30px;
    padding-bottom: 80px;
}

.product-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
}

.product-card img {
    width: 284px;
    height: 284px;
    object-fit: cover;
    display: block;
    transition: opacity 0.2s;
}

.product-card:hover img {
    opacity: 0.88;
}

.product-name {
    text-align: center;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.45px;
    margin: 10px 0 4px;
}

.product-divider {
    width: 20px;
    height: 1px;
    background: #000;
    margin: 0 0 10px;
}

.product-price {
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 300;
    letter-spacing: -0.45px;
    margin: 0;
}

.more-link {
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 300;
    color: black;
    text-decoration: none;
    letter-spacing: -0.2px;
    transition: opacity 0.2s;
    cursor: pointer;
    margin-top: 20px;
    margin-bottom: 80px;
}

.more-link:hover {
    opacity: 0.6;
}

/* ── ABOUT BEIGE BAND ── */

.about-band {
    width: 100%;
    background: #FBF6F0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    margin-bottom: 80px;
}

/* ── ABOUT ── */

/* Figma: 626px centered group — text left (236px) | image right (390×594px) */
.about {
    display: flex;
    justify-content: center;
    align-items: stretch;
    max-width: 626px;
    margin: 0 auto 200px;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 350px;
    flex-shrink: 0;
    padding: 40px 30px 40px 0;
}

.about-text h2 {
    font-weight: 400;
    font-family: 'Times New Roman', Times, serif;
    margin: 0 0 20px;
}

.about-text p {
    text-align: justify;
    font-family: Montserrat;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: -0.45px;
    margin: 0;
}

.about-text strong {
    font-weight: 600;
}

.about-img {
    width: 390px;
    height: 594px;
    object-fit: cover;
    flex-shrink: 0;
    display: block;
}

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
    .shortdesc {
        height: auto;
        padding: 44px 24px;
    }

    .shortdesc-text {
        font-size: 20px;
    }

    .cta {
        flex-direction: column;
    }

    .cta-img {
        width: 100%;
        height: 260px;
        object-fit: cover;
    }

    .cta-center {
        width: 100%;
        padding: 40px 24px;
    }

    .moreabout {
        margin: 40px auto;
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .moreabout-grid {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        padding-bottom: 50px;
    }

    .moreabout-card {
        width: 100%;
        max-width: 360px;
    }

    .bestsellers {
        padding: 0 20px;
        width: 100%;
        box-sizing: border-box;
    }

    .bestsellers-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding-bottom: 50px;
    }

    .product-card img {
        width: 100%;
        height: auto;
        aspect-ratio: 1;
    }

    .about-band {
        padding: 60px 24px;
        margin-bottom: 40px;
    }

    .about {
        flex-direction: column;
        align-items: center;
        max-width: 100%;
        margin: 0 auto 60px;
        padding: 0 24px;
    }

    .about-text {
        width: 100%;
        padding: 0 0 30px;
    }

    .about-img {
        width: 100%;
        height: auto;
    }

    .section-heading {
        text-align: center;
    }
}

/* ── SCROLL TO TOP ── */

#scroll-top-btn {
    position: fixed;
    bottom: 100px;
    right: 100px;
    width: 60px;
    height: 60px;
    background: #F0956A;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 999;
    padding: 0;
    border-radius: 50%;
}

#scroll-top-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

#scroll-top-btn:hover {
    transform: translateY(-4px);
}

#scroll-top-btn svg {
    width: 25px;
    height: 25px;
    display: block;
}

@media (max-width: 768px) {
    #scroll-top-btn {
        bottom: 70px;
        right: 40px;
    }
}
