.store-section {
    background-color: #DDD6CC;
    padding-top: 20px;
    padding-bottom: 50px;
    margin: 50px 0;
}

.store-section h2 {
    margin-bottom: 30px;
    max-width: 450px;
    margin-right: auto;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}

.store-section>.container>a {
    width: fit-content;
    line-height: 17px;
    font-family: 'Whyte-Semi';
    font-size: 12px;
}

.store-section>.container>a::after {
    width: 100%;
}

.store-section>.container>a img {
    margin-bottom: 4px;
    width: 0;
    transition: all 500ms ease;
}

.store-section>.container>a:hover img {
    padding-left: 5px;
    width: 17px;
}

.store-section .marquee {
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    margin-top: 30px;
    opacity: 0;
}

.store-section .marquee:first-child {
    margin-top: 10px;
}

.store-section .marquee-inner-wrap {
    height: 100%;
    width: 100%;
}

.store-section .marquee .product {
    width: 186px;
    min-width: calc(186px + var(--gap));
    margin-right: var(--gap);
    background-color: #F5EFE5;
    border: 1px solid transparent;
}

.store-section .marquee .product:hover {
    cursor: pointer;
    border-color: black;
}

.store-section .product .image-wrapper {
    height: 0;
    padding-top: 100%;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.store-section .product .image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.store-section .product .brand {
    font-family: 'Stratum2-Medium';
    font-size: 9px;
    color: #889387;
    width: 100%;
    margin-bottom: 5px;
    letter-spacing: 0.03rem;
}

.store-section .product .product-title {
    font-family: 'Whyte-Semi';
    font-size: 11px;
    color: black;
    max-width: calc(100% - 50px);
    letter-spacing: 0.001em;
}

.store-section .product .price {
    font-family: 'Whyte-Semi';
    font-size: 11px;
    color: black;
    letter-spacing: 0.001em;
}

.store-section .products-swiper a::after {
    display: none;
}

.store-section .product-details {
    padding: 15px;
    justify-content: space-between;
}

.store-section .product a {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.store-section .flickity-button {
    display: none !important;
}

@keyframes marquee {
    to {
        transform: translateX(-50%);
    }
}

@keyframes marquee_right {
    from {
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 989px) {

    .store-section .marquee .product {
        width: calc(170px + var(--gap));
        min-width: unset;
    }
}

@media screen and (min-width: 2441px) {
    .store-section .flickity-viewport {
        margin-right: 0.5%;
    }

    html {
        overflow-y: scroll;
    }

    .store-section .marquee .slide {
        width: 10%;
        margin-right: 30px;
        padding-right: var(--gap);
        /* adjust as necessary */
    }
}