.shopify-buy__product {
    display: flex;
    flex-wrap: wrap;
}


/* 
VARIATIONS
*/
.shopify-buy__product__variant-selectors {
    min-width: 220px;
    width: 220px;
    max-width: 220px;
}
.shopify-buy__option-select:not(:first-of-type) {margin-top: .5rem;}

.shopify-buy__option-select {
    border: 1px solid black;
    padding: .25rem;
    cursor: pointer !important;
}
.shopify-buy__option-select * {cursor: pointer !important;}

.shopify-buy__option-select-wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

.shopify-buy__option-select__select {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding-left: calc(100% - 6.5rem);
    border-radius: 0;
    border: 0;
    background-color: transparent;
    color: black;
}
/* .shopify-buy__option-select__label, */
.shopify-buy__select-icon {display: none !important;}



/*
QUANTITY
*/
.shopify-buy__quantity-container {
    display: flex;
    justify-content: flex-end;
    align-self: center;
    height: fit-content;
    width: calc(100% - 220px - 2rem);
    margin: .325rem 0 auto 2rem;
    transform: translate(1rem, -1rem);
}
@media only screen and (min-width: 768px) {
    .shopify-buy__quantity-container {
        justify-content: flex-start;
        transform: translate(0, -1rem);
    }
}
@media only screen and (min-width: 1024px) {
    .shopify-buy__quantity-container {
        width: calc(100% - 220px - 2rem);
        margin-left: 2rem;
    }
}
.shopify-buy__quantity-container > * {height: auto;}

.shopify-buy__btn--seamless {
    padding: 1rem;
}

.shopify-buy__quantity {
    width: 2rem;
    text-align: center;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    color: black;
}


/*
ADD TO CART
*/
.shopify-buy__btn-wrapper {
    width: 100%;
    margin-top: .5rem;
}
@media only screen and (min-width: 768px) {
    .shopify-buy__btn-wrapper {
        min-width: 160px;
        width: 160px;
        max-width: 160px;
    }
}

.shopify-buy__btn[data-element='product.button'] {
    min-width: 220px;
    width: 100%;
    text-align: center;
    background-color: black;
    color: white;
    text-transform: uppercase;
    padding: .5rem;
}
@media (hover: hover) {
    .shopify-buy__btn[data-element='product.button'] {transition: 500ms ease;}
    .shopify-buy__btn[data-element='product.button']:hover {
        background-color: var(--c-blue);
    }
}