.c-lifestyle--banner .desktop {
    display: none;
}

.c-lifestyle--products-wrapper {
    display: flex;
    flex-direction: column;
    padding: 2rem 1rem;
    row-gap: 1rem;
}

.c-lifestyle--product-card {
    border: 1px solid #d2d2d2;
    position: relative;
    display: flex;
    flex-direction: column;
}

.c-lifestyle--browse {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    padding: 0.5rem;
    width: 2.75rem;
    height: 2.75rem;
    background-color: #000;
    border-radius: 2px;
    box-shadow: rgba(255, 255, 255, 0.2) 0px 6px 12px 0px,
        rgba(255, 255, 255, 0.08) 0px 0px 0px 1px;
    z-index: 1;
}

.c-lifestyle--browse svg {
    width: 100%;
    height: auto;
    fill: #fff;
}

.c-lifestyle--product-image-container {
    overflow: hidden;
}

.c-lifestyle--product-image {
    scale: 1;
    transition: 200ms ease-out;
    display: block;
    width: 100%;
    object-fit: cover;
}

.c-lifestyle--product-image:hover {
    scale: 1.2;
}

.c-lifestyle--product-title {
    padding: 0 1rem;
    font-weight: 700;
    font-size: 1.125rem;
    margin: 1rem 0;
    text-align: center;
}

.c-lifestyle--product-price {
    text-align: center;
    margin-bottom: 1rem;
    margin-top: auto;
}

.c-lifestyle--single-variant-filler {
    height: 1lh;
    width: 100%;
    border: 1px solid transparent;
    margin-bottom: 1rem;
}

.c-lifestyle--product-variant-select-container {
    padding: 0 1rem;
}

.c-lifestyle--product-variant-select {
    margin-bottom: 1rem;
    width: 100%;
}

.c-lifestyle--buttons-wrapper {
    display: flex;
    margin-bottom: 1rem;
    column-gap: 0.5rem;
    justify-content: space-between;
    padding: 0 1rem;
}

.c-lifestyle--buttons-wrapper>a {
    background-color: #000;
    color: #fff;
    fill: #fff;
    text-align: center;
    font-weight: bold;
    font-size: 0.75rem;
    border-radius: 2px;
    display: block;
    width: min-content;
    min-width: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.c-lifestyle--atc-button {
    padding: 0.75rem 1.5rem;
}

.c-lifestyle--qty-container {
    display: flex;
}

.c-lifestyle--qty-button {
    background-color: #000;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    width: 2.5ch;
}

.c-lifestyle--qty-button:hover,
.c-lifestyle--qty-button:active {
    color: #fff;
}

.c-lifestyle--qty-button span {
    transform: translateY(-3px);
    user-select: none;
}

.c-lifestyle--qty-input {
    width: 6ch;
    text-align: center;
    height: 100%;
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    border-left: none;
    border-right: none;
    -moz-appearance: textfield;
}

.c-lifestyle--qty-input::-webkit-outer-spin-button,
.c-lifestyle--qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.c-lifestyle--qty-input:focus {
    outline: none;
}

@media only screen and (min-width: 640px) {
    .c-lifestyle--products-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        column-gap: 1rem;
    }

    .c-lifestyle--product-card {
        width: calc(50% - 0.5rem);
    }
}

@media only screen and (min-width: 740px) {
    .c-lifestyle--banner .desktop {
        display: block;
    }

    .c-lifestyle--banner .mobile {
        display: none;
    }
}

@media only screen and (min-width: 1024px) {
    .c-lifestyle--products-wrapper {}

    .c-lifestyle--product-card {
        width: calc(33.33% - 0.67rem);
    }
}

@media only screen and (min-width: 1240px) {
    .c-lifestyle--products-wrapper {}

    .c-lifestyle--product-card {
        width: calc(25% - 0.75rem);
    }
}