/** Shopify CDN: Minification failed

Line 971:0 Unexpected "="

**/
.drawer {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    background-color: rgba(var(--color-foreground), 0.5);
    transition: visibility var(--duration-default) ease;
}

.drawer.active {
    visibility: visible;
}

.drawer__inner {
    height: 100%;
    width: 40rem;
    max-width: calc(100vw - 3rem);
    padding: 0;
    border: 0.1rem solid rgba(var(--color-foreground), 0.2);
    border-right: 0;
    background-color: rgb(var(--color-background));
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform var(--duration-default) ease;
}

.drawer__inner-empty {
    height: 100%;
    padding: 0 1.5rem;
    background-color: rgb(var(--color-background));
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cart-drawer__warnings {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: center;
}

cart-drawer.is-empty .drawer__inner {
    display: grid;
    grid-template-rows: 1fr;
    align-items: center;
    padding: 0;
}

cart-drawer.is-empty .drawer__header {
    display: none;
}

cart-drawer:not(.is-empty) .cart-drawer__warnings,
cart-drawer:not(.is-empty) .cart-drawer__collection {
    display: none;
}

.cart-drawer__warnings--has-collection .cart__login-title {
    margin-top: 2.5rem;
}

.drawer.active .drawer__inner {
    transform: translateX(0);
}

.drawer__header {
    position: relative;
    background-color: rgb(var(--color-background));
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer__heading {
    margin: 0 0 0;
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    text-transform: uppercase;
    font-size: 14px;
}

.drawer__close {
    display: inline-block;
    padding: 0;
    min-width: 32px;
    min-height: 32px;
    box-shadow: 0 0 0 0.2rem rgba(var(--color-button), 0);
    position: absolute;
    top: 10px;
    right: 10px;
    color: rgb(var(--color-foreground));
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.cart-drawer__warnings .drawer__close {
    right: 5px;
}

.drawer__close svg {
    height: 16px;
    width: 16px;
}

.drawer__contents {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.drawer__footer {
    box-shadow: 0px -5px 24px #f8f8f8;
    z-index: 2;
}

.drawer__footer-bottom {
    background-color: rgba(var(--color-foreground), 0.04);
    padding: 16px;
}

cart-drawer-items.is-empty+.drawer__footer {
    display: none;
}

.drawer__footer>details {
    margin-top: -1.5rem;
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

.drawer__footer>details[open] {
    padding-bottom: 1.5rem;
}

.drawer__footer summary {
    display: flex;
    position: relative;
    line-height: 1;
    padding: 1.5rem 0;
}

.drawer__footer>details+.cart-drawer__footer {
    padding-top: 1.5rem;
}

cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100%;
}

.cart-drawer__overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.cart-drawer__overlay:empty {
    display: block;
}

.cart-drawer__form {
    flex-grow: 1;
    display: flex;
    flex-wrap: wrap;
}

.cart-drawer__collection {
    margin: 0 2.5rem 1.5rem;
}

.cart-drawer .drawer__cart-items-wrapper {
    flex-grow: 1;
}

.cart-drawer .cart-items,
.cart-drawer tbody {
    display: block;
    width: 100%;
}

.cart-drawer thead {
    display: inline-table;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: rgb(var(--color-base-background-1));
}

cart-drawer-items {
    overflow: auto;
    flex: 1;
}

@media screen and (max-height: 650px) {
    cart-drawer-items {
        overflow: visible;
    }

    .drawer__inner {
        overflow: scroll;
    }
}

.cart-drawer .cart-item {
    display: grid;
    grid-template: repeat(2, auto) / repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 0;
    padding: 0 16px 16px;
    border-bottom: 1px solid rgba(var(--color-foreground), .20);
    margin-top: 16px;
}

.cart-drawer .cart-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

.cart-drawer .cart-item:first-child {
    margin-top: 0;
}

.cart-drawer .cart-item__media {
    grid-row: 1 / 3;
}

.cart-drawer .cart-item__image {
    max-width: 80%;
}

.cart-drawer .cart-items thead {
    margin-bottom: 0.5rem;
}

.cart-drawer .cart-items thead th:first-child,
.cart-drawer .cart-items thead th:last-child {
    width: 0;
    padding: 0;
}

.cart-drawer .cart-items thead th:nth-child(2) {
    width: 50%;
    padding-left: 0;
}

.cart-drawer .cart-items thead tr {
    display: table-row;
    margin-bottom: 0;
}

.cart-drawer .cart-items th {
    border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
}

.cart-drawer .cart-item:last-child {
    margin-bottom: 1.5rem;
}

.cart-drawer .cart-item .loading-overlay {
    right: 5px;
    padding-top: 2.5rem;
}

.cart-drawer .cart-items td {
    padding-top: 0;
}

.cart-drawer .cart-item>td+td {
    padding-left: 0;
}

.cart-drawer .cart-item__details {
    width: auto;
    grid-column: 2 / 5;
}

.cart-drawer .cart-item__totals {
    pointer-events: none;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.cart-drawer.cart-drawer .cart-item__price-wrapper>*:only-child {
    margin-top: 0;
}

.cart-drawer .cart-item__price-wrapper .cart-item__discounted-prices {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.cart-drawer .unit-price {
    margin-top: 0.6rem;
}

.cart-drawer .cart-items .cart-item__quantity {
    padding-top: 0;
    grid-column: 2 / 5;
    display: flex;
    align-items: flex-end;
}

@media screen and (max-width: 749px) {
    .cart-drawer .cart-item cart-remove-button {
        margin-left: 0;
    }
}

.cart-drawer__footer>*+* {
    margin-top: 1rem;
}

.cart-drawer .totals {
    justify-content: space-between;
}

.cart-drawer .price {
    line-height: 1;
    white-space: nowrap;
}

.cart-drawer .tax-note {
    margin: 1.2rem 0 1rem auto;
    text-align: left;
}

.cart-drawer .product-option dd {
    word-break: break-word;
}

.cart-drawer details[open]>summary .icon-caret {
    transform: rotate(180deg);
}

.cart-drawer .cart__checkout-button {
    max-width: none;
    background: #000;
    color: #fff;
    text-transform: uppercase;
}

.drawer__footer .cart__dynamic-checkout-buttons {
    max-width: 100%;
}

.drawer__footer #dynamic-checkout-cart ul {
    flex-wrap: wrap !important;
    flex-direction: row !important;
    margin: 0.5rem -0.5rem 0 0 !important;
    gap: 0.5rem;
}

.drawer__footer [data-shopify-buttoncontainer] {
    justify-content: flex-start;
}

.drawer__footer #dynamic-checkout-cart ul>li {
    flex-basis: calc(50% - 0.5rem) !important;
    margin: 0 !important;
}

.drawer__footer #dynamic-checkout-cart ul>li:only-child {
    flex-basis: 100% !important;
    margin-right: 0.5rem !important;
}

@media screen and (min-width: 750px) {
    .drawer__footer #dynamic-checkout-cart ul>li {
        flex-basis: calc(100% / 3 - 0.5rem) !important;
        margin: 0 !important;
    }

    .drawer__footer #dynamic-checkout-cart ul>li:first-child:nth-last-child(2),
    .drawer__footer #dynamic-checkout-cart ul>li:first-child:nth-last-child(2)~li,
    .drawer__footer #dynamic-checkout-cart ul>li:first-child:nth-last-child(4),
    .drawer__footer #dynamic-checkout-cart ul>li:first-child:nth-last-child(4)~li {
        flex-basis: calc(50% - 0.5rem) !important;
    }
}

cart-drawer-items::-webkit-scrollbar {
    width: 3px;
}

cart-drawer-items::-webkit-scrollbar-thumb {
    background-color: rgba(var(--color-foreground), 0.7);
    border-radius: 100px;
}

cart-drawer-items::-webkit-scrollbar-track-piece {
    margin-top: 31px;
}

/* Recommendations */

.cart-drawer .related-products__wrapper {
    padding: 16px 0;
}

.cart-drawer .related-products__wrapper .card__information {
    padding-bottom: 0;
}

.cart-drawer .related-products {
    padding: 0;
}

.cart-drawer .related-products .card__heading {
    font-size: 12px;
    font-family: var(--font-heading-family);
    text-transform: none;
}

.cart-drawer .related-products .card__inner {
    max-width: 90px;
    margin: 0 auto;
}

.cart-drawer .related-products .card__information {
    padding-top: 4px;
    flex-direction: column;
}

.cart-drawer .related-products .card-top-content {
    width: 100%;
}

.cart-drawer .related-products .price__container {
    margin-top: 8px;
    width: 100%;
    text-align: left;
}

.cart-drawer .related-products .duties-included {
    margin-top: 4px;
    display: block;
    text-align: left;
}

.cart-drawer .related-products .card-information {
    text-align: left;
    width: 100%;
}

.cart-drawer .related-products .card-information .price {
    margin-top: 0 !important;
}

.cart-drawer .related-products .card-information .price * {
    font-size: 11px;
}

.cart-drawer .related-products .jdgm-preview-badge {
    display: none;
}

.cart-drawer .related-products .related-products__heading {
    margin-top: 0;
    margin-bottom: 0;
    text-align: center;
}

/* .cart-drawer .drawer__footer {
    padding-top: 0;
} */

.cart-drawer .related-products .product-grid {
    overflow: scroll;
    width: auto;
    flex-wrap: nowrap;
    column-gap: 8px;
    margin-left: 16px;
    scrollbar-width: none;
    /* cursor: grab; */
    user-select: none;
    -ms-overflow-style: none;
}

.cart-drawer .related-products .product-grid:active {
    /* cursor: grabbing; */
}

.cart-drawer .related-products ul {
    position: relative;
}

.cart-drawer .related-products .product-grid::-webkit-scrollbar {
    display: none;
    /* WebKit */
}

.cart-drawer .related-products .product-grid .grid__item {
    width: 70%;
    max-width: 70%;
    background-color: rgba(var(--color-foreground), 0.04);
}

.cart-drawer .related-products .product-grid .grid__item:last-of-type {
    margin-right: 16px;
}

.cart-drawer .related-products .related-products__heading {
    margin-top: 0;
    padding-left: 16px;
}

.cart-drawer .related-products .product-grid .grid__item .card {
    display: flex;
    flex-direction: row;
    padding: 8px;
    align-items: stretch;
    justify-content: center;
    text-align: left;
    border-radius: 0;
    gap: 12px;
}

.cart-drawer .related-products .card__inner {
    max-width: 90px;
}

.cart-drawer .related-products .card__information {
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 0;
    text-align: left;
}

.cart-drawer .related-products .card__heading {
    font-size: 11px;
    font-family: var(--font-heading-family);
    text-transform: none;
    margin-bottom: 4px;
}

.cart-drawer .related-products .card-information {
    text-align: left;
}

@media screen and (max-width: 749px) {
    .cart-drawer .drawer__inner {
        padding-left: 0;
        padding-right: 0;
    }

    .cart-drawer .drawer__header,
    .cart-drawer cart-drawer-items,
    .cart-drawer .drawer__footer>details,
    .cart-drawer .cart-drawer__footer,
    .cart-drawer .cart__ctas {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .cart-drawer .drawer__inner {
        width: 95vw;
        max-width: 95vw;
    }

    .cart__note .field__input {
        min-height: 6rem;
    }

    .cart-drawer .drawer__close {
        right: 1.5rem;
    }
}

.cart-item__media {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item__media a {
    background-color: rgba(var(--color-foreground), 0.04);
}

.cart-item__name {
    font-size: 14px;
    margin-bottom: 4px;
}

.cart-drawer .cart-item__remove {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.cart-item cart-remove-button {
    margin-top: 2px;
    margin-right: -13px;
}

.cart-item__details>* {
    max-width: 100%;
    width: 100%;
    min-width: 100%;
}

.cart-item__details>*+* {
    margin-top: 0;
}

.cart-item__name-wrapper {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-top: -12px;
}

.cart-item__name:hover {
    text-decoration: none;
}

.product-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.product-option * {
    font-size: 12px;
}

.product-option dt,
.product-option dd {
    margin: 0;
}

.product-option dd {
    font-weight: 600;
    text-align: right;
}

.cart-item .quantity:after {
    box-shadow: none;
}

.cart-item .quantity {
    border-bottom: 1px solid rgba(var(--color-foreground), .2);
}

.cart-item__quantity-wrapper {
    justify-content: space-between;
    align-items: flex-end;
    flex: 1;
}

.text-area::placeholder,
.text-area::-webkit-input-placeholder,
.text-area::-moz-placeholder,
.text-area:-ms-input-placeholder,
.text-area::placeholder {
    font-size: 12px;
    color: #000;
    opacity: 1 !important;
}

.cart__note {
    margin-bottom: 8px;
}

.cart-drawer__footer .totals__subtotal {
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    font-size: 12px;
}

.cart-drawer__footer .totals__subtotal-value {
    font-size: 12px;
    font-weight: 600;
}

.cart-drawer .tax-note {
    font-size: 12px;
    color: rgba(var(--color-foreground), 0.5);
    margin: 4px 0 8px;
}

.cart__checkout-button,
.button--save-note {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
}

.cart-drawer .related-products .related-products__heading {
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    text-transform: uppercase;
    font-size: 14px;
    text-align: left;
}

.cart-drawer .related-products .quick-add__submit {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0;
    min-height: 3.5rem;
    text-transform: uppercase;
    border: 1px solid rgba(0, 0, 0, .2);
}

.cart-drawer .related-products .quick-add__submit::before,
.cart-drawer .related-products .quick-add__submit::after {
    display: none;
}

.cart-drawer .related-products .card__information {
    grid-row-start: 1;
    align-items: flex-end;
}

.cart-drawer .related-products .card__content {
    align-items: flex-end;
}

.cart-drawer .related-products .quick-add {
    margin-bottom: 0;
    margin-top: 16px;
}

.cart-drawer .related-products .card__media img {
    width: 90%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cart-drawer .related-products .card:hover .media.media--hover-effect>img:first-child:only-child {
    transform: translate(-50%, -50%);
}

.drawer__gifts-qualifier {
    padding: 4px;
    background: #000;
    min-height: 53px;
    margin: 0 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer__gifts-qualifier p {
    font-size: 12px;
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    color: #fff;
}

.drawer__gifts-accent {
    color: #F5D504;
}

.drawer__gifts-qualifier a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    padding: 4px 16px;
    height: 100%;
    margin-right: 6px;
}

.drawer__gifts-image {
    width: 48px;
    height: 48px;
    overflow: hidden;
    position: relative;
}

.drawer__gifts-qualifier-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer__gifts-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Drawer */

.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    pointer-events: none;
}

.side-drawer.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.side-drawer__header {
    position: relative;
    background-color: rgb(var(--color-background));
    padding: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid rgba(var(--color-foreground), .2);
}

.side-drawer__heading {
    margin: 0;
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    text-transform: uppercase;
    font-size: 14px;
}

.side-drawer__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.side-drawer__content {
    width: 400px;
    background: white;
    height: 100%;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.side-drawer__close {
    display: inline-block;
    padding: 0;
    min-width: 32px;
    min-height: 32px;
    box-shadow: 0 0 0 .2rem rgba(var(--color-button), 0);
    color: rgb(var(--color-foreground));
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.side-drawer__close svg {
    width: 16px;
    height: 16px;
    transform: rotate(90deg) translate(3px, 0px);
}

.side-drawer__body {
    padding: 2rem;
}

.side-drawer__gifts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.side-drawer__gift {
    background-color: rgba(var(--color-foreground), 0.04);
    padding: 8px;
    width: 100%;
    gap: 8px;
    display: flex;
}

.side-drawer__gift-image {
    width: 100px;
    height: 182px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.side-drawer__gift-image img {
    width: 90%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.side-drawer__gift-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.side-drawer__gifts-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.side-drawer__gifts-count {
    margin: 0;
}

.side-drawer__gifts-heading span {
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.side-drawer__gift-title {
    font-size: 14px;
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    color: rgb(var(--color-foreground));
    line-height: calc(1 + .3 / max(1, var(--font-heading-scale)));
    margin-bottom: 4px;
    margin-top: 0;
}

.side-drawer__gift-tag {
    background-color: #D0D0D0;
    border-radius: 10px;
    padding: 4px 8px;
    text-align: center;
    display: inline-block;
    line-height: 10px;
}

=======.product-option dt,
.product-option dd {
    margin: 0;
}

.product-option dd {
    font-weight: 600;
    text-align: right;
}

.cart-item .quantity:after {
    box-shadow: none;
}

.cart-item .quantity {
    border-bottom: 1px solid rgba(var(--color-foreground), .2);
}

.cart-item__quantity-wrapper {
    justify-content: space-between;
    align-items: flex-end;
    flex: 1;
}

.text-area::placeholder,
.text-area::-webkit-input-placeholder,
.text-area::-moz-placeholder,
.text-area:-ms-input-placeholder,
.text-area::placeholder {
    font-size: 12px;
    color: #000;
    opacity: 1 !important;
}

.cart__note {
    margin-bottom: 8px;
}

.cart-drawer__footer .totals__subtotal {
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    font-size: 12px;
}

.cart-drawer__footer .totals__subtotal-value {
    font-size: 12px;
    font-weight: 600;
}

.cart-drawer .tax-note {
    font-size: 12px;
    color: rgba(var(--color-foreground), 0.5);
    margin: 4px 0 8px;
}

.cart__checkout-button {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
}

.cart-drawer .related-products .related-products__heading {
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    text-transform: uppercase;
    font-size: 14px;
    text-align: left;
}

.cart-drawer .related-products .quick-add__submit {
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0;
    min-height: 3.5rem;
}

.cart-drawer .related-products .card__information {
    grid-row-start: 1;
    align-items: flex-end;
}

.cart-drawer .related-products .card__content {
    align-items: flex-end;
    position: relative !important;
    position: absolute;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
}

.cart-drawer .related-products .quick-add {
    margin-bottom: 0;
    margin-top: 16px;
}

.cart-drawer .related-products .card__media img {
    width: 90%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cart-drawer .related-products .card:hover .media.media--hover-effect>img:first-child:only-child {
    transform: translate(-50%, -50%);
}

.drawer__gifts-qualifier {
    padding: 4px;
    background: #000;
    min-height: 53px;
    margin: 0 16px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.drawer__gifts-qualifier p {
    font-size: 12px;
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    color: #fff;
}

.drawer__gifts-accent {
    color: #F5D504;
}

.drawer__gifts-qualifier a {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0;
    text-decoration: none;
    color: #000;
    background-color: #fff;
    padding: 4px 16px;
    height: 100%;
    margin-right: 6px;
}

.drawer__gifts-image {
    width: 48px;
    height: 48px;
    overflow: hidden;
    position: relative;
}

.drawer__gifts-qualifier-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer__gifts-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Drawer */

.side-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
    pointer-events: none;
}

.side-drawer.is-open {
    transform: translateX(0);
    pointer-events: auto;
}

.side-drawer__header {
    position: relative;
    background-color: rgb(var(--color-background));
    padding: 16px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid rgba(var(--color-foreground), .2);
}

.side-drawer__heading {
    margin: 0;
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: var(--font-body-weight);
    text-transform: uppercase;
    font-size: 14px;
}

.side-drawer__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.side-drawer__content {
    width: 400px;
    background: white;
    height: 100%;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    position: relative;
}

.side-drawer__close {
    display: inline-block;
    padding: 0;
    min-width: 32px;
    min-height: 32px;
    box-shadow: 0 0 0 .2rem rgba(var(--color-button), 0);
    color: rgb(var(--color-foreground));
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.side-drawer__close svg {
    width: 16px;
    height: 16px;
    transform: rotate(90deg) translate(3px, 0px);
}

.side-drawer__body {
    padding: 2rem;
}

.side-drawer__gifts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 16px;
}

.side-drawer__gift {
    background-color: rgba(var(--color-foreground), 0.04);
    padding: 8px;
    width: 100%;
    gap: 8px;
    display: flex;
}

.side-drawer__gift-image {
    width: 100px;
    height: 130px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.side-drawer__gift-image img {
    width: 90%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.side-drawer__gift-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.side-drawer__gifts-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.side-drawer__gifts-count {
    margin: 0;
}

.side-drawer__gifts-heading span {
    font-family: var(--font-body-family);
    font-style: var(--font-body-style);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
}

.side-drawer__gift-title {
    font-size: 14px;
    font-family: var(--font-heading-family);
    font-style: var(--font-heading-style);
    color: rgb(var(--color-foreground));
    line-height: calc(1 + .3 / max(1, var(--font-heading-scale)));
    margin-bottom: 4px;
    margin-top: 0;
}

.side-drawer__gift-tag {
    background-color: #D0D0D0;
    border-radius: 10px;
    padding: 4px 8px;
    text-align: center;
    display: inline-block;
    line-height: 10px;
}


.side-drawer__gift-tag span {
    font-size: 10px;
    letter-spacing: 0;
    color: #000;
    text-transform: uppercase;
    line-height: 10px;
}

.side-drawer__gift-form {
    width: 100%;
}

button.button.side-drawer__gift-add {
    width: 100%;
    font-size: 12px !important;
    min-height: 3.5rem;
    font-weight: 600 !important;
    letter-spacing: 0;
    line-height: calc(1 + .2 / var(--font-body-scale));
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border: 0;
    padding: 0 3rem;
    cursor: pointer;
    font: inherit;
    font-size: 1.5rem;
    text-decoration: none;
    color: rgb(var(--color-button-text));
    transition: box-shadow var(--duration-short) ease;
    -webkit-appearance: none;
    appearance: none;
    background-color: rgba(var(--color-button), var(--alpha-button-background));
}

/* MTO */

.cart-item__mto-tag {
    background-color: #D0D0D0;
    border-radius: 10px;
    padding: 4px 8px;
    text-align: center;
    display: inline-block;
    line-height: 10px;
    font-size: 10px;
    position: absolute;
    top: 4px;
    left: 4px;
}

.cart-item__mto-edit {
    color: #000;
}

.side-drawer__gift-variant-label {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: bold;
    line-height: 12px;
}

@media screen and (max-width: 749px) {
    .side-drawer__content {
        width: 95vw;
        max-width: 95vw;
    }

}