.coll-box {
    width: 100vw;
      
    background-image: url("../../assets/story_frame.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    
    display: flex;
    flex-direction: column;
    text-align: start;
}

.section-title {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5em;
    color: #f5f5f5 !important;
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: 300 !important;
    font-family: var(--header-font) !important;
}
.coll-box h1 {
    margin-top: 2em;
    font-family: var(--header-font);
    color: #bdbdbd;
    font-weight: 200;
    letter-spacing: .25em;
    font-size: 1em;
}

.coll-box h3 {
    font-family: var(--body-font);
    color: var(--accent-color-2);
    font-weight: bold;
    line-height: 0;
}

#coll-box-items {
    min-height: 50vh;
}

.coll-box-items {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    max-width: 98vw;
    overflow-x: scroll;
    padding: 1em 0em;
    margin-left: 1em;
    row-gap: 1em;
    column-gap: 1em;
    background: transparent !important;
}

.product-card {
    display: flex;
    max-width: 55vw !important;
    flex-direction: column;
    cursor: pointer;
}

.card__img {
    width: 55vw;
    cursor: pointer;
    object-fit: cover;
    border: 1px solid var(--accent-color);
}

.card__body {
    
}

.card__title {
    color: #f5f5f5;
    font-family: var(--body-font);
    font-weight: 400;
    font-size: 1em;
    text-align: start;
    text-transform: uppercase;
}
.card__subtitle {
    color: var(--accent-color-2);
    font-family: var(--body-font);
    font-weight: bold;
    font-size: .875em;
    line-height: 2em;
    text-transform: uppercase;
}

.card__price {
    font-weight: 300;
    color: #bdbdbd !important;
    font-family: var(--numbers-font) !important;
    font-weight: 400 !important;
    font-size: 1em;
    margin-top: .5em;
}

.coll-box button {
    background: var(--accent-color-2);
    font-family: var(--body-font);
    color: var(--primary-green);
    border: 1px solid var(--primary-green);
    font-weight: 600;
    padding: .5em 1em;
    width: 50vw;
    font-size: 1em;
    margin-top: 2em;
    align-self: center;
    border-radius: .25em;
}

.coll-box button a {
    color: var(--primary-green);
    text-decoration: none;
}



.card__body {
    display: flex;
    flex-direction: column;
    padding-top: .875em;
    cursor: pointer;
    align-items: flex-start;
    box-sizing: border-box;
}

.card__title {
    font-family: var(--body-font);
    color: #f5f5f5;
    text-transform: uppercase;
    font-weight: 300;
    font-size: 1.125em;
}

.card__subtitle {
    font-family: var(--body-font);
    font-weight: bold;
    color: var(--accent-color-2);
    text-transform: uppercase;
    font-size: .875em;
    margin-top: .5em;
}

.card__price {
    font-family: var(--numbers-font);
    color: #bdbdbd;
    font-size: 1em;
    font-weight: 500;
}


/* Extra large devices (large laptops and desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {

    .coll-box {
        display: none;
    }
}