body.scrolling header-drawer .menu-drawer {
    top: calc(84px);
    max-height: calc(100dvh - 84px - var(--header-scroll-offset, 0));
}

header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__navigation-container .menu-drawer__utility-links {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__navigation-container .menu-drawer__utility-links>.separator {
    flex-grow: 1;
}

header-drawer .menu-drawer .submenu,
header-drawer .menu-drawer .menu-drawer__submenu {
    padding-left: 10px;
}

header-drawer .menu-drawer .parent-item {
    padding: 0;
}

header-drawer .menu-drawer .parent-item>details>summary.list-menu__item {
    padding: 10px 0;
}

header-drawer .menu-drawer .child-item>.list-menu__item {
    padding: 10px 0;
}

header-drawer .menu-drawer .child-item>.list-menu__item.menu-drawer__account {
    color: var(--accent-color);
}

header-drawer .menu-drawer summary.list-menu__item {
    flex-direction: row;
    justify-content: space-between;
}

header-drawer .menu-drawer summary.list-menu__item .icon {
    width: 20px;
    height: 20px;
}

header-drawer .menu-drawer summary.list-menu__item .icon {
    transition: all 0.4s ease-in-out;
    transform: rotate(90deg);
}

header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__navigation-container .menu-drawer__footer {
    padding: 18px 0 25px;
    border-top: 1px solid #000;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    position: relative;
    align-items: center;
}

header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__navigation-container .menu-drawer__footer .menu-drawer__additional-links {
    display: flex;
    gap: 20px;
}

header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__navigation-container .menu-drawer__footer .menu-drawer__additional-links a {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.24px;
    text-decoration: none;
    text-transform: uppercase;
}

header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__navigation-container .menu-drawer__footer .list-social {
    padding: 0;
    margin-top: 2px;
}

header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__navigation-container .menu-drawer__footer .list-social svg {
    height: 18px;
    width: auto;
}

header-drawer .menu-drawer .menu-drawer__inner-container .menu-drawer__navigation-container .menu-drawer__footer .list-social svg path {
    fill: #000;
}

cart-drawer {
    position: fixed;
    left: 0;
    width: 100vw;
    display: flex;
    justify-content: flex-end;
    transition: visibility 0.4s ease;
    top: 0;
    height: 100dvh;
    z-index: 1000000;
}

cart-drawer .cart-drawer__overlay {
    background: rgba(0, 0, 0, 0);
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    top: 0;
}

cart-drawer .cart-drawer {
    width: 100vw;
    max-width: 560px;
}

cart-drawer .free-shiping-limit {
    margin: 0 0 20px 0;
}

cart-drawer .free-shiping-limit .message {
    margin-top: 8px;
    text-transform: uppercase;
    font-size: 12px;
}

cart-drawer .free-shiping-limit .range {
    position: relative;
    height: 6px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 3px;
    overflow: hidden;
}

cart-drawer .free-shiping-limit .range .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: #e9633f;
    border-radius: 3px;
}

cart-drawer .free-shiping-limit .range .progress.empty {
    display: none;
}

cart-drawer .drawer__inner {
    height: 100%;
    transform: translateX(100%);
    width: 100%;
    padding: 0;
    background-color: var(--header-background-color);
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

cart-drawer .drawer__inner .drawer__header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    height: auto;
    padding: 0;
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 1;
}

cart-drawer .drawer__inner .drawer__header .drawer__heading {
    margin: 0;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
}

cart-drawer .drawer__inner .drawer__inner-empty .cart__login-paragraph {
    font-size: 14px;
}

cart-drawer .drawer__inner .drawer__inner-empty .cart-drawer__collections .button {
    margin-bottom: 20px;
}

cart-drawer .drawer__inner .cart-items {
    width: 100%;
    border-spacing: 0;
    border-collapse: collapse;
    font-size: 14px;
}

cart-drawer .drawer__inner .cart-items .cart-item {
    position: relative;
    vertical-align: top;
    display: grid;
    gap: 0 10px;
    grid-template-columns: 300px 1fr auto;
    grid-template-rows: auto 1fr;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.4);
}

cart-drawer .drawer__inner .cart-items .cart-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

cart-drawer .drawer__inner .cart-items .cart-item .price {
    font-size: 0.9rem;
}

cart-drawer .drawer__inner .cart-items .cart-item .loading-overlay:not(.hidden) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

cart-drawer .drawer__inner .cart-items .cart-item .spinner {
    animation: rotator 1.4s linear infinite;
}

@keyframes rotator {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(270deg);
    }
}

cart-drawer .drawer__inner .cart-items .cart-item:has(.loading-overlay:not(.hidden)) .cart-item__media,
cart-drawer .drawer__inner .cart-items .cart-item:has(.loading-overlay:not(.hidden)) .cart-item__details,
cart-drawer .drawer__inner .cart-items .cart-item:has(.loading-overlay:not(.hidden)) .cart-item__quantity,
cart-drawer .drawer__inner .cart-items .cart-item:has(.loading-overlay:not(.hidden)) .cart-item__price-wrapper {
    opacity: 0.5;
}

cart-drawer .drawer__inner .cart-items .cart-item__media {
    padding: 0;
    grid-row: span 2;
}

cart-drawer .drawer__inner .cart-items .cart-item__name {
    margin: 0 0 10px 0;
    text-decoration: none;
    text-transform: none;
}

cart-drawer .drawer__inner .cart-items .cart-item__quantity {
    grid-column: span 2;
}

cart-drawer .drawer__inner .cart-items .cart-item__quantity .cart-item__quantity-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

cart-drawer .drawer__inner .cart-items .cart-item__selling-plan {
    padding: 10px 0 0 0;
    grid-column: span 3;
}

cart-drawer .drawer__inner .cart-items .cart-item__error {
    flex-grow: 1;
}

cart-drawer .drawer__inner .cart-items .product-option {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 0 4px;
    color: #000;
}

cart-drawer .drawer__inner .cart-items .product-option dt {
    display: none;
}

cart-drawer .drawer__inner .cart-items .product-option dd {
    margin: 0;
}

cart-drawer .drawer__inner .cart-items .product-option .separator {
    margin: 0 2px;
}

cart-drawer .drawer__inner .cart-items .product-option:empty {
    display: none;
}

cart-drawer .drawer__inner .cart-items .discounts .icon {
    width: 14px;
    height: 14px;
    vertical-align: top;
}

cart-drawer .drawer__inner .cart-items .product-properties {
    margin: 0;
    color: #1a172c;
    overflow: hidden;
}

cart-drawer .drawer__inner .cart-items .product-properties dt {
    float: left;
    clear: left;
}

cart-drawer .drawer__inner .cart-items .product-properties dd {
    margin: 0 0 0 6px;
    float: left;
}

cart-drawer .drawer__inner .cart-items cart-remove-button .icon-button {
    padding: 0;
    height: 18px;
    line-height: 18px;
}

cart-drawer .drawer__inner .cart-items cart-remove-button .icon {
    width: 21px;
    height: 21px;
}

cart-drawer .drawer__inner .cart-items .cart-item__details {
    display: flex;
    flex-direction: column;
}

cart-drawer .drawer__inner .cart-items .cart-item__totals {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

cart-drawer .drawer__inner .cart-items .cart-item__totals .loading-overlay:not(.hidden)+.cart-item__quantity-wrapper {
    display: none;
}

cart-drawer .drawer__inner .cart-items .right {
    text-align: right;
}

cart-drawer .drawer__inner .cart-items .quantity-wrapper {
    display: flex;
    flex-direction: row;
    align-items: end;
    gap: 10px;
}

cart-drawer .drawer__inner .cart-items .cart-item__discounted-prices {
    white-space: nowrap;
}

cart-drawer .drawer__inner .cart-items .cart-item__discounted-prices .product-option {
    display: inline-flex;
}

cart-drawer .drawer__inner .cart-items .cart-item__discounted-prices strong {
    font-weight: normal;
}

cart-drawer .drawer__inner .drawer__footer .giftwrap {
    border-top: 1px solid rgba(0, 0, 0, 0.4);
    font-size: 14px;
}

cart-drawer .drawer__inner .drawer__footer .giftwrap summary {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-decoration: underline;
}

cart-drawer .drawer__inner .drawer__footer .giftwrap summary .icon {
    width: 18px;
    height: 18px;
    transition: all 0.4s ease-in-out;
}

cart-drawer .drawer__inner .drawer__footer .giftwrap summary .icon polygon {
    fill: #000 !important;
}

cart-drawer .drawer__inner .drawer__footer .giftwrap .wrapper {
    padding-top: 20px;
}

cart-drawer .drawer__inner .drawer__footer .giftwrap textarea {
    display: block;
    margin-bottom: 20px;
    border: 2px solid #1a172c;
    height: 100px;
    padding: 20px;
}

cart-drawer .drawer__inner .cart-drawer__footer {
    border-top: 1px solid rgba(0, 0, 0, 0.4);
    padding: 18px 26px 23px;
    font-size: 14px;
}

cart-drawer .drawer__inner .cart-drawer__footer .totals {
    margin-bottom: 0 0 6px 0;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-transform: uppercase;
}

cart-drawer .drawer__inner .cart-drawer__footer .totals>* {
    margin: 0;
    font-size: 12px;
}

cart-drawer.active {
    visibility: visible;
}

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

cart-drawer.active .cart-drawer__overlay {
    opacity: 1;
}

cart-drawer.is-empty .free-shiping-limit,
cart-drawer.is-empty .drawer__footer,
cart-drawer.is-empty .cart-drawer__footer,
cart-drawer.is-empty .giftwrap {
    display: none !important;
}

cart-drawer .cart-drawer__empty-content {
    text-align: center;
}

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

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

cart-drawer .cart-item__error-text:empty+svg {
    display: none;
}

cart-drawer .cart-drawer {
    padding: 10px 14px;
}

cart-drawer .cart-drawer .drawer__inner {
    border-radius: 25px;
}

cart-drawer .cart-drawer .drawer__inner .drawer__heading {
    font-family: "Knockout";
    margin-top: 22px;
    letter-spacing: 0.24px;
}

cart-drawer .cart-drawer .drawer__inner .drawer__header {
    padding: 24px 24px 15px;
}

cart-drawer .cart-drawer .drawer__inner .drawer__header .button-icon {
    margin-bottom: 30px;
}

cart-drawer .cart-drawer .drawer__inner .header-line {
    height: 1px;
    width: calc(100% - 54px);
    margin: 0 24px 17px;
    border-bottom: 1px solid;
    position: relative;
}

cart-drawer .cart-drawer .drawer__inner .free-shiping-limit .message {
    display: none;
}

cart-drawer .cart-drawer .drawer__inner .free-shiping-limit .range {
    margin-left: 24px;
    margin-right: 24px;
    background: #fff;
    border: 1px solid #000;
    height: 7px;
    overflow: visible;
}

cart-drawer .cart-drawer .drawer__inner .free-shiping-limit .range .progress {
    background: #000;
}

cart-drawer .cart-drawer .drawer__inner cart-drawer-items {
    padding: 0 24px;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
}

cart-drawer .cart-drawer .drawer__inner cart-drawer-items .product-option dd {
    font-size: 12px;
}

cart-drawer .cart-drawer .drawer__inner cart-drawer-items .cart-item {
    border-bottom: none;
    grid-template-columns: 125px 1fr auto;
    gap: 0 25px;
}

cart-drawer .cart-drawer .drawer__inner cart-drawer-items .cart-item .price {
    font-size: 13px;
    font-family: "MarsExtended";
    font-weight: 400;
}

cart-drawer .cart-drawer .drawer__inner cart-drawer-items .cart-item .cart-item__name {
    text-transform: capitalize;
    margin-bottom: 15px;
    font-size: 13px;
}

cart-drawer .cart-drawer .drawer__inner cart-drawer-items .cart-item img {
    width: 125px;
    height: 131px;
    object-fit: cover;
    border-radius: 6px;
}

cart-drawer .cart-drawer .drawer__inner .cart-item__quantity {
    margin-top: 15px;
}

cart-drawer .cart-drawer .drawer__inner quantity-input {
    background: none;
}

cart-drawer .cart-drawer .drawer__inner quantity-input .quantity__button svg {
    width: 12px;
    height: 12px;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer__footer {
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 15px;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer__footer .totals>* {
    font-size: 16px;
    font-family: "MarsExtended";
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer__footer .tax-note {
    margin-bottom: 13px;
    display: inline-block;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer__footer .cart__checkout-button {
    font-size: 13px;
    line-height: 30px;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations {
    margin-bottom: 10px;
    margin-top: auto;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations .recommendation_heading {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 16px;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations .recommendation_heading .header-line {
    margin-top: 10px;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations swiper-container {
    --swiper-pagination-progress-top: none;
    --swiper-pagination-progress-bottom: -25px;
    --swiper-pagination-color: black;
    --swiper-pagination-progressbar-size: 1px;
    --swiper-pagination-progressbar-bg-color: black;
    --swiper-pagination-progressbar-fill-height: 4px;
    --swiper-pagination-progressbar-fill-top: -2px;
    padding-bottom: 35px;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations swiper-container swiper-slide {
    height: auto;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations swiper-container .card-product .card__inner .summary {
    flex-direction: column-reverse;
    justify-content: space-between;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations swiper-container .card-product .card__inner .summary .product-title {
    font-size: 13px;
    margin: 10px 0 0;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations swiper-container .card-product .card__inner .summary .price {
    display: none;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations swiper-container .card-product .card__inner .summary .quick-add {
    display: block;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations swiper-container .card-product .card__inner .summary .quick-add button {
    font-size: 11px;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations swiper-container .card-product .card__inner .summary .swatches {
    display: none;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations .header-line {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations .card-product .rating,
cart-drawer .cart-drawer .drawer__inner .cart-drawer-recommendations .card-product .badges-wrapper {
    display: none;
}

.swiper-slide>* {
    height: 100%;
}

a.section_anchor {
    display: block;
    position: relative;
    top: -84px;
    visibility: hidden;
}

.modal__toggle-close {
    display: none;
}

details .modal__toggle-close {
    display: none;
}

.modal__close-button.link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0rem;
    height: 4.4rem;
    width: 4.4rem;
    background-color: rgba(0, 0, 0, 0);
}

.media-modal {
    cursor: zoom-out;
}

.media-modal .deferred-media {
    cursor: initial;
}

quantity-input {
    display: inline-flex;
    position: relative;
    background: #fff;
    width: fit-content;
    height: fit-content;
}

quantity-input .quantity__button {
    position: absolute;
    background: none;
    border: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    height: 100%;
    z-index: 1;
    width: 40px;
    padding: 0;
    color: #000;
}

quantity-input .quantity__button svg {
    margin: 0;
    pointer-events: none;
    vertical-align: middle;
}

.fav-copyright {
    background: #131121;
    color: #fff;
}

.fav-copyright .container {
    min-height: 40px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.fav-copyright .container .link-list li {
    display: inline-block;
    margin-left: 10px;
}

.fav-copyright .container .link-list li:first-child {
    margin-left: 0;
}

.fav-copyright .text-center .wrapper {
    justify-content: center;
}

.fav-copyright .text-right .wrapper {
    justify-content: flex-end;
}

.shopify-challenge__container .shopify-challenge__button {
    display: block !important;
}

.disclosure {
    position: relative;
}

.disclosure .disclosure__list-wrapper {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    color: #000;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #000;
}

.disclosure .disclosure__list-wrapper .disclosure__link {
    white-space: nowrap;
}

.knockout {
    font-family: "Knockout";
}

.footer ul .list-social__item:has(.icon-youtube) .icon-youtube {
    width: auto;
    height: 30px;
}

.footer ul .list-social__item:has(.icon-tiktok) .icon-tiktok {
    width: auto;
    height: 33px;
}

.section-content-grid .sale-banner {
    margin-top: 17px;
}

.section-content-grid .sale-banner content-item:last-of-type {
    /* grid-column: 2/3; */
    grid-row: 1/2;
    font-family: "MarsExtended";
}

.section-content-grid .sale-banner content-item:first-of-type {
    font-family: "MarsExtended";
}

.section-content-grid .sale-banner .title {
    line-height: 80%;
    margin: 0 auto;
}

.section-content-grid .sale-banner content-item:nth-of-type(2) .text-block p {
    margin: 5px auto 10px;
    max-width: 50%;
    font-family: "MarsExtended";
}

.about-banner .text-block p {
    font-family: "MarsExtended";
    font-size: 16px;
    text-transform: uppercase;
    margin-top: 5px;
}

.about-anna svg {
    margin-right: 20px;
}

.about-anna .anna {
    font-size: 16px;
    font-family: "MarsExtended";
}

.about-anna .follow {
    font-size: 12px;
    margin-top: 27px;
    font-family: "MarsExtended";
}

.about-marquee fav-marquee .item {
    gap: 24px;
    font-size: 16px;
}

.centered-logo .title {
    margin-top: 21px;
}

.centered-logo svg {
    display: block;
    margin: 0 auto;
}

.template-suffix-about-us content-item:has(.custom-settings) {
    padding-bottom: 109px;
}

.template-suffix-about-us content-item:has(.custom-settings) .mars-extended {
    width: 60%;
    font-family: "MarsExtended";
    font-size: 16px;
}

.aside-menu .menu-links {
    font-family: "MarsExtended";
    text-transform: uppercase;
}

.aside-menu .title {
    margin-bottom: 20px;
}

.aside-menu .faq .title {
    padding-left: 10px;
    font-family: "MarsExtended";
    padding-top: 1em;
}

.aside-menu .faq .answer {
    margin-left: 10px;
    max-width: 80%;
}

.product-media-modal {
    background-color: #fff;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    visibility: hidden;
    opacity: 0;
    z-index: -1;
}

.product-media-modal__dialog {
    display: flex;
    align-items: center;
    height: 100dvh;
}

.product-media-modal__content {
    max-height: 100dvh;
    width: 100%;
    overflow: auto;
}

.product-media-modal__content>*:not(.active),
.product__media-list .deferred-media {
    display: none;
}

.product-badge.tag_new {
    background-color: #1CA638;
    color: #fff;
}

.product-badge.tag_pre_order {
    background-color: #000;
    color: #fff;
}

.badges-wrapper-desktop {
    display: inline-flex;
}

.badges-wrapper-desktop+div {
    display: inline-flex;
}

.ugc-section .dusk-content .text-block.mars-extended p {
    font-size: 12px;
}

.ugc-section .swiper-wrapper .swiper-button-next {
    right: -10px;
}

.ugc-section .swiper-wrapper .swiper-button-prev {
    left: -10px;
}

.gap-space-between .section-content-columns {
    display: flex;
    justify-content: space-between;
}

.gap-space-between .section-content-columns .icon-tiktok {
    width: 30px;
    height: 30px;
    margin-right: 10px;
}

.gap-space-between .section-content-columns a {
    text-decoration: none;
}

.title-with-heart .dusk-content {
    display: flex;
    gap: 16px;
    align-items: baseline;
}

.title-with-heart .dusk-content .block-picture {
    width: 44px;
    height: 39px;
}

.template-index h2.h0 {
    line-height: 100%;
}

.jdgm-carousel-item__review {
    text-align: left !important;
}

.jdgm-carousel-item__reviewer-name-wrapper {
    text-align: left !important;
    margin: 15px 0 !important;
    font-family: "Matter" !important;
    font-weight: 600;
    text-transform: uppercase;
}

.jdgm-carousel-wrapper .jdgm-carousel-item__review {
    height: fit-content !important;
}

.jdgm-carousel-item__product {
    position: absolute;
    bottom: 30px;
    height: 50% !important;
    width: 85% !important;
}

.jdgm-prev-badge__text {
    text-transform: uppercase;
    font-size: 12px !important;
    padding-left: 10px;
    text-decoration: underline;
}

.jdgm-rev-widg__title {
    font-size: 48px !important;
}

/* .jdgm-carousel-wrapper .jdgm-carousel__item-wrapper {
    height: 450px !important;
}

*/
.jdgm-carousel-item__product.jdgm--shop-review-has-image {
    display: inline-flex;
    justify-content: center;
    height: 40% !important;
}

.jdgm-line-clamp {
    -webkit-line-clamp: 3 !important;
}

@media screen and (max-width: 768px) {
  .about-banner .title {
        font-size: 56px;
    }
  .about-slider .title {
        font-size: 56px;
    }
  .badges-wrapper-desktop,
    .badges-wrapper-desktop+div {
        display: none;
    }
  .height-m-500 content-item.height-type-fixed.height-m-600 {
        height: 500px !important;
    }
}

@media screen and (max-width: 500px) {
  .product-recommendations .title>span {
        font-size: 60px;
    }
}

@media screen and (max-width: 435px) {
  .media-wrapper .product-badge {
        font-size: 10px;
    }
}

@media only screen and (min-width: 769px) {
  header-drawer .header__icon--menu[aria-expanded="true"]:before {
        top: calc(85px + var(--section-announcement-bar) * 40px);
    }
  header-drawer .menu-drawer {
        top: 85px;
    }
  body.scrolling header-drawer .menu-drawer {
        top: 85px;
        max-height: calc(100dvh - 85px - var(--header-scroll-offset, 0));
    }
  body.scrolling header-drawer .header__icon--menu[aria-expanded="true"]:before {
        top: 85px;
        top: calc(85px + var(--header-scroll-offset, 0));
        max-height: calc(100dvh - 85px - var(--header-scroll-offset, 0));
    }
  cart-drawer.active .cart-drawer__overlay {
        opacity: 1;
    }
  cart-drawer .drawer__inner {
        padding: 0;
    }
  cart-drawer .drawer__inner .drawer__header {
        height: auto;
        margin: 0 0 18px 0;
    }
  cart-drawer {
        background: rgba(0, 0, 0, 0.5);
    }
  cart-drawer .cart-drawer {
        padding: 0;
        background: rgba(0, 0, 0, 0);
    }
  cart-drawer .cart-drawer .drawer__inner {
        border-radius: 0;
        background-color: #fff;
    }
  cart-drawer .cart-drawer .drawer__inner .drawer__header {
        padding: 51px 55px 0;
        position: relative;
    }
  cart-drawer .cart-drawer .drawer__inner .drawer__header .button-icon {
        margin-bottom: 0;
        position: absolute;
        top: 30px;
        right: 30px;
    }
  cart-drawer .cart-drawer .drawer__inner .header-line {
        width: calc(100% - 110px);
        margin: 0 55px 20px;
    }
  cart-drawer .cart-drawer .drawer__inner .free-shiping-limit {
        margin-top: 15px;
    }
  cart-drawer .cart-drawer .drawer__inner .free-shiping-limit .range {
        margin-left: 55px;
        margin-right: 55px;
    }
  cart-drawer .cart-drawer .drawer__inner cart-drawer-items {
        padding: 0 55px;
    }
  cart-drawer .cart-drawer .drawer__inner cart-drawer-items .cart-item .price,
    cart-drawer .cart-drawer .drawer__inner cart-drawer-items .cart-item .cart-item__name {
        font-size: 16px;
    }
  cart-drawer .cart-drawer .drawer__inner .cart-item {
        gap: 0 20px;
    }
  cart-drawer .cart-drawer .drawer__inner quantity-input input[type="number"] {
        background: #fff;
    }
  cart-drawer .cart-drawer .drawer__inner .cart-drawer__footer {
        border: none;
        border-radius: 35px 35px 0px 0px;
        background: #f7f6f3;
        box-shadow: 0px -4px 10px -2px rgba(0, 0, 0, 0.1);
        padding: 43px;
    }
  cart-drawer .cart-drawer .drawer__inner .cart-drawer__footer .totals>* {
        font-size: 20px;
        text-transform: uppercase;
    }
  cart-drawer .cart-drawer .drawer__inner .cart-drawer__footer .tax-note {
        margin-bottom: 15px;
    }
  cart-drawer .cart-drawer .drawer__inner .cart-drawer__footer .cart__checkout-button {
        font-size: 16px;
        line-height: normal;
    }
}

/* Bloquear scroll cuando el menu de mobile esta abierto */
body.drawer-open {
    overflow-y: hidden !important;
}

header-drawer .menu-drawer {
    height: calc(100dvh - 84px - var(--header-scroll-offset, 0) - var(--section-announcement-bar, 0) * 40px - var(--section-header-ctas, 0) * 45px) !important;
}