* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Syne Mono', monospace;
    background-image: url('./images/bg-SameKomon.png');
    background-repeat: repeat;
    background-size: 5%;
    color: #fff;
    overflow-x: hidden;
}


/* ===========================
   MODEL BACKGROUND IMAGE
=========================== */
.model-img-bg {
    position: fixed;
    top: 0rem;
    left: 0;
    width: 100%;
    height: 130%;
    background-image: url('./images/Scarves/model.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center top;
    z-index: 1;
    pointer-events: none;
}

/* ===========================
   PAGE INTRO (removed — text now in scarves-text blocks)
=========================== */
.page-title {
    font-size: clamp(2rem, 6vw, 5rem);
    font-weight: 400;
    font-family: 'Texturina', serif;
    letter-spacing: 0.08em;
    line-height: 1;
    margin-bottom: 0.5rem;
    color: #000000;
}

.page-desc {
    font-size: 1.8rem;
    line-height: 1;
    letter-spacing: -0.1rem;
    color: rgb(0, 0, 0);
    max-width: 610px;
}

/* Pattern strips behind model */
.pattern-strip--back {
    position: relative;
    z-index: 0;
    margin-top: 0;
}

/* Pattern strip in front of model */
.pattern-strip--front {
    position: relative;
    z-index: 2;
    margin-top: 0;
}

.pattern-strip--bottom {
    margin-top: 0;
    margin-bottom: 4rem;
}

.pattern-strip--first {
    margin-top: 8rem; /* clear the sticky header */
}


.scarves-text {
    height: 250px;
    padding: 0 6vw;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.scarves-text--left {
    text-align: left;
    margin-right: auto;
}

.scarves-text--right {
    text-align: right;
    margin-left: auto;
}

.scarves-text--right .page-desc {
    margin-left: auto;
}

.shop-note {
    font-size: 1.3rem;
    color: rgb(0, 0, 0);
    font-family: 'Syne Mono', monospace;
    letter-spacing: -0.1rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.shop-btn {
    display: inline-block;
    width: fit-content;
    border: 3px solid #000000;
    border-radius: 0;
    padding: 0.5rem 1.5rem;
    font-family: 'Syne Mono', monospace;
    font-size: 1.1rem;
    font-weight: 900;
    color: #000000;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.shop-btn:hover {
    background: rgba(0, 0, 0, 0.2);
    color: #000000;
}

/* ===========================
   SCROLLING PATTERN STRIP
=========================== */
.pattern-strip {
    width: 100%;
    overflow: hidden;
    height: 50px;
    position: relative;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.6));
}

.pattern-strip__track {
    display: flex;
    align-items: center;
    height: 100%;
    width: max-content;
    will-change: transform;
}

.pattern-strip__track img {
    height: 100%;
    width: auto;
    display: block;
    flex-shrink: 0;
}

/* Override transition-bottom and footer to sit above fixed model image */
.transition-bottom {
    position: relative;
    z-index: 3;
}

.s-footer {
    position: relative;
    z-index: 3;
}

/* ===========================
   RESPONSIVE
=========================== */

@media screen and (max-width: 1700px) {
    .page-title {
        color: #ffffff;
    }

    .page-desc {
        color: #ffffff;
        font-size: 1.7rem;
    }

    .shop-note {
        color: #ffffff;
    }

    .shop-btn {
        border: 3px solid #ffffff;
        color: #ffffff;
    }

    .shop-btn:hover {
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
    }
}

@media screen and (max-width: 900px) {
    .scarves-text {
        height: 280px;
        padding: 0 5vw;
    }

    body {
        background-size: 20%;
    }
}
