.omw-cart-preview {
    position: fixed;
    inset: 0;
    z-index: 99999998;
    pointer-events: none;
}

body.omw-cart-preview-body-lock {
    overflow: hidden;
}

.omw-cart-preview__mask {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.36);
    opacity: 0;
    transition: opacity 0.26s ease;
}

.omw-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(400px, 100vw);
    max-width: 400px;
    height: 100vh;
    background: #fff;
    border-left: 1px solid #cdcdcd;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.13);
    display: flex;
    flex-direction: column;
    z-index: 9999;
    transform: translateX(110%);
    transition: transform 0.26s ease;
}

.omw-cart-drawer__section {
    padding: 16px;
}

.omw-cart-drawer__section--header {
    border-bottom: 1px solid #d9d9d9;
    padding-top: 14px;
    padding-bottom: 18px;
}

.omw-cart-drawer__section--body {
    flex: 1;
    overflow-y: auto;
    padding: 0 16px;
}

.omw-cart-drawer__section--footer {
    border-top: 1px solid #d0d0d0;
    margin-top: auto;
    padding-top: 18px;
    padding-bottom: 16px;
}

.omw-cart-preview--open {
    pointer-events: auto;
}

.omw-cart-preview--open .omw-cart-preview__mask {
    opacity: 1;
}

.omw-cart-preview--open .omw-cart-drawer {
    transform: translateX(0);
}

.omw-cart-preview-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.omw-cart-preview-head__title {
    margin: 0;
    font-size: 24px;
    line-height: 1;
    letter-spacing: -0.01em;
    color: #151515;
    font-weight: 500;
}

.omw-cart-preview-head__close {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #1b1b1b;
    padding: 0;
    cursor: pointer;
}

.omw-cart-preview-head__close-icon {
    width: 24px;
    height: 24px;
    display: block;
}

.omw-cart-preview-columns {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 10px;
    color: #666;
    padding-bottom: 0;
}

.omw-cart-preview-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    column-gap: 18px;
    padding: 22px 0;
}

.omw-cart-preview-item + .omw-cart-preview-item {
    border-top: 1px solid #e1e1e1;
}

.omw-cart-preview-item__image-wrap {
    width: 100px;
    height: 100px;
    display: block;
}

.omw-cart-preview-item__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center center;
}

.omw-cart-preview-item__content {
    min-width: 0;
}

.omw-cart-preview-item__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 10px;
}

.omw-cart-preview-item__title {
    font-size: 15px;
    line-height: 1.1;
    letter-spacing: 0;
    color: #151515;
    text-decoration: none;
    font-weight: 500;
}

.omw-cart-preview-item__prices {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: 8px;
}

.omw-cart-preview-item__price-old {
    color: #6f6f6f;
    font-size: 14px;
    text-decoration: line-through;
}

.omw-cart-preview-item__price-unit {
    color: #2a2a2a;
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
}

.omw-cart-preview-item__price-options {
    margin-top: 4px;
}

.omw-cart-preview-item__price-option-line {
    margin: 0;
    font-size: 12px;
    line-height: 15px;
    color: #4f4f4f;
}

.omw-cart-preview-item__price-total {
    color: #151515;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
    font-weight: 500;
}

.omw-cart-preview-item__reference {
    margin: 10px 0 0;
    font-size: 14px;
    line-height: 16px;
    color: #4f4f4f;
}

.omw-cart-preview-item__digital-tag {
    margin: 6px 0 0;
    display: inline-block;
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    background: #1D83ED;
    border: 1px solid #1D83ED;
    border-radius: 2px;
    padding: 2px 6px;
}

.omw-cart-preview-item__extras {
    margin-top: 2px;
}

.omw-cart-preview-item__extra-line {
    margin: 0;
    font-size: 14px;
    line-height: 16px;
    color: #4f4f4f;
}

.omw-cart-preview-item__extra-category {
    font-weight: 400;
}

.omw-cart-preview-item__extra-value {
    font-weight: 400;
}

.omw-cart-preview-item__campaign {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 6px;
    min-width: 0;
}

.omw-cart-preview-item__actions {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.omw-cart-preview-item__qtybox {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    /* width: 144px; */
    height: 46px;
    border: 1px solid #9d9d9d;
    background: transparent;
    padding: 0 3px;
}

.omw-cart-preview-item__qtybox.is-loading {
    opacity: 0.65;
}

.omw-cart-preview-item__qtybtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #232323;
    width: 40px;
    height: 40px;
    padding: 0;
    cursor: pointer;
}

.omw-cart-preview-item__qtybtn:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.omw-cart-preview-item__qtyicon {
    width: 16px;
    height: 16px;
    display: block;
}

.omw-cart-preview-item__qtyvalue {
    width: 40px;
    height: 40px;
    border: 0;
    background: transparent;
    text-align: center;
    padding: 0;
    color: #181818;
    font-size: 16px;
    line-height: 1;
    font-weight: 500;
}

.omw-cart-preview-item__qtyvalue:disabled {
    opacity: 1;
}

.omw-cart-preview-item__remove {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    background: transparent;
    color: #444;
    cursor: pointer;
    padding: 0;
}

.omw-cart-preview-item__remove-icon {
    width: 18px;
    height: 18px;
    display: block;
}

.omw-cart-preview-empty {
    padding: 24px 0;
    color: #4d4d4d;
    font-size: 15px;
}

.omw-cart-preview-body-loading {
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 0;
}

.omw-cart-preview .campain_box_bag {
    margin: 0 !important;
    float: none !important;
    display: inline-block;
    width: fit-content !important;
    max-width: 100%;
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    background: var(--cor1);
    color: var(--n-0);
    border: 1px solid var(--cor1);
    border-radius: 2px;
    padding: 2px 6px !important;
}

.omw-cart-preview .campain_box_bag .omw-campaign-tag-desc-label {
    display: block;
    white-space: normal;
    word-break: break-word;
    color: var(--n-0);
    font-size: inherit;
    line-height: inherit;
    font-weight: inherit;
}

.omw-cart-preview-footer__top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.omw-cart-preview-footer__top + .omw-cart-preview-footer__top {
    margin-top: 8px;
}

.omw-cart-preview-footer__label {
    color: #202020;
    font-size: 16px;
    line-height: 1.2;
}

.omw-cart-preview-footer__value {
    color: #2b2b2b;
    font-size: 18px;
    line-height: 1;
    font-weight: 500;
}

.omw-cart-preview-footer [data-role="cart-discount"] {
    color: #138a36;
}

.omw-cart-preview-footer [data-role="cart-discount-row"] .omw-cart-preview-footer__label {
    font-size: 15px;
}

.omw-cart-preview-footer [data-role="cart-discount-row"] .omw-cart-preview-footer__value {
    font-size: 17px;
}

.omw-cart-preview-footer__value.is-loading {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    min-width: 72px;
    min-height: 18px;
}

.omw-cart-preview-loader {
    width: 14px;
    height: 14px;
    display: inline-block;
    border: 2px solid #c8c8c8;
    border-top-color: #151515;
    border-radius: 50%;
    animation: omw-cart-preview-spin 0.8s linear infinite;
}

@keyframes omw-cart-preview-spin {
    to {
        transform: rotate(360deg);
    }
}

.omw-cart-preview-footer__note {
    margin: 12px 0 0;
    color: #4d4d4d;
    font-size: 13px;
    line-height: 18px;
}

.omw-cart-preview-footer__checkout {
    margin-top: 18px;
    display: block;
    width: 100%;
    border: 0;
    background: #000;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    /* line-height: 16px; */
    padding: 13px 12px;
}

.omw-cart-preview-footer__checkout:hover{
    text-decoration: none !important;
}

.omw-cart-preview-footer__checkout.is-disabled,
.omw-cart-preview-footer__checkout[aria-disabled="true"] {
    opacity: 0.45;
    pointer-events: none;
    cursor: not-allowed;
}

.omw-cart-preview-related-zone {
    border-top: 1px solid #e8e8e8;
    margin-top: 16px;
    padding-top: 18px;
    padding-bottom: 8px;
}

.omw-cart-preview-related-zone__title {
    margin: 0 0 14px;
    font-size: 15px;
    line-height: 1.2;
    font-weight: 500;
    color: #222;
}

.omw-cart-preview-related-card {
    padding: 0 2px;
}

.omw-cart-preview-related-card__link {
    display: block;
    text-decoration: none;
    color: #1f1f1f;
}

.omw-cart-preview-related-card__link:hover,
.omw-cart-preview-related-card__link:focus,
.omw-cart-preview-related-card__link:active {
    text-decoration: none !important;
    color: #1f1f1f !important;
}

.omw-cart-preview-related-card__link:hover * ,
.omw-cart-preview-related-card__link:focus * ,
.omw-cart-preview-related-card__link:active * {
    text-decoration: none !important;
    color: inherit !important;
}

.omw-cart-preview-related-card__media {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 2px;
    overflow: hidden;
    background: #f2f2f2;
    margin-bottom: 10px;
}

.omw-cart-preview-related-card__image,
.omw-cart-preview-related-card__video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center center;
}

.omw-cart-preview-related-card__title {
    display: block;
    margin: 0 0 4px;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    color: #2a2a2a;
    text-align: center;
    min-height: 0;
}

.omw-cart-preview-related-card__price {
    text-align: center;
    font-size: 14px;
    line-height: 1.3;
    min-height: 0;
}

.omw-cart-preview-related-card__price .omw-price-since,
.omw-cart-preview-related-card__price .omw-discount-price,
.omw-cart-preview-related-card__price .omw-normal-price {
    font-size: 14px !important;
    line-height: 1.3 !important;
}

.omw-cart-preview-related-card__price .omw-discount-price {
    color: #6f6f6f !important;
    text-decoration: line-through !important;
}

.omw-cart-preview-related-card__price .omw-normal-price {
    color: #2a2a2a !important;
    text-decoration: none !important;
}

.omw-cart-preview-related-carousel .owl-nav {
    margin-top: 12px;
}

.omw-cart-preview-related-carousel .owl-nav [class*="owl-"] {
    margin: 0 4px;
}

.omw-cart-preview-related-zone .owl-carousel .owl-stage{
    padding-left: 0 !important;
}

@media (max-width: 639px) {
    .omw-cart-preview-related-carousel.has-right-peek .owl-stage-outer {
        position: relative;
        overflow: hidden !important;
        /* -webkit-clip-path: inset(0 0 0 14px);
        clip-path: inset(0 0 0 14px); */
    }
}

@media (min-width: 640px) {
    .omw-cart-preview-related-carousel.has-right-peek .owl-stage-outer {
        position: relative;
        overflow: hidden !important;
        /* -webkit-clip-path: inset(0 0 0 18px);
        clip-path: inset(0 0 0 18px); */
    }
}

@media (max-width: 960px) {
    .omw-cart-drawer {
        width: 100vw;
        max-width: 100vw;
    }

    .omw-cart-preview-head__title {
        font-size: 24px;
    }

    .omw-cart-preview-item__title {
        font-size: 30px;
    }
}
