#merchandise .section1 {
    position: relative;
}
#merchandise .section1 img {
    width: 100%;
}

#merchandise .section1 .next,
#merchandise .section1 .prev {
    color: #fff;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, .9);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 20px;
}

#merchandise .section1 .next {
    padding-left: unset;
    padding-right: 20px;
    left: unset;
    right: 0;
    transform: translate(50%, -50%);
}

#merchandise .section1 h1 {
    position: absolute;
    bottom: 30px;
    left: 0;
    font-size: 3rem;
    z-index: 100;
    font-family: HelveticaNeueBold;
    left: 50%;
    transform: translateX(-50%);
    color:#444343;
    text-shadow: 5px 5px 10px rgba(255,255,255,0.6);
}

#merchandise .section2 {
    padding: 50px 0
}

#merchandise .section2 .item {
    margin-top: 30px;
}

#merchandise .section2 .item>div {
    display: block;
    height: 100%;
    padding: 0;
    background-color: #fff;
    text-decoration: none;
}
#merchandise .section2 .item .caption {
    padding:15px
}

#merchandise .section2 .item .img {
    --bs-aspect-ratio: 63.647058823%;
}

#merchandise .section2 .item .img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#merchandise .section2 .item h2 {
    margin: 0;
    font-family: HelveticaNeueBold;
    color: #000;
}

#merchandise .section2 .item h4 {
    margin: 0;
    font-family: dmSans;
    color: #D48D33;
    margin-top: 5px;
}

#merchandise .section2 .item .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#merchandise .section2 .item h5 {
    margin: 0;
    font-family: dmSans;
    color: #000;
    margin-top: 5px;
}

#merchandise .section2 .item .btn {
    padding: 5px 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

#merchandise .section2 .item .btn img {
    width: 30px;
}

#merchandise .section2 .item span {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #D48D33;
    border: solid 1px #D48D33
}

#merchandise .section2 .item span img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#merchandise .section2 .filter .nav-item .nav-link {
    color: #fff;
    font-family: HelveticaNeueBold;
    font-size: 1.2rem;
}

#merchandise .section2 .filter .nav-item:first-child .nav-link {
    padding-left: 0;
}

#merchandise .section2 .filter .nav-item .nav-link.active {
    color: #D48D33;
}


@media (orientation: portrait) {
    #merchandise .section1 h1 {
        font-size: 2rem;
    }

    #merchandise .section2 .filter .nav-item .nav-link {
        font-size: 1rem
    }

    #merchandise .section2 .filter .nav-item:not(:first-child) .nav-link {
        padding-left: 10px;
        padding-right: 10px;
    }

    #merchandise .section2 .item h2 {
        font-size: 1.2rem
    }

    #merchandise .section2 .item h4 {
        font-size: 1rem
    }

    #merchandise .section2 .item h4 span {
        width: 30px;
        height: 30px;
    }
}