:root {
    --dbam-accent: #d00000;
    --dbam-button-bg: #000000;
    --dbam-button-text: #ffffff;
    --dbam-panel-bg: #ffffff;
    --dbam-surface: #f7f7f7;
    --dbam-text: #111111;
    --dbam-muted: #666666;
    --dbam-overlay-opacity: .68;
    --dbam-panel-width: 430px;
    --dbam-mobile-sheet-height: 92vh;
    --dbam-panel-radius: 0px;
    --dbam-title-font-size: 18px;
    --dbam-body-font-size: 13px;
    --dbam-scrollbar-width: 0px;
}

@keyframes dbamDrawerInRight {
    from {
        transform: translate3d(100%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes dbamDrawerInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes dbamSheetIn {
    from {
        transform: translate3d(0, 100%, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes dbamFreeMessageIn {
    from {
        opacity: 0;
        transform: translate3d(0, 12px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes dbamFreeBarIn {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.dbam-cart-overlay {
    position: fixed !important;
    inset: 0 !important;
    display: block !important;
    width: 100vw !important;
    height: 100vh !important;
    z-index: 2147483000 !important;
    background: rgba(0, 0, 0, var(--dbam-overlay-opacity)) !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .22s ease, visibility .22s ease;
}

html.dbam-scroll-locked {
    scrollbar-gutter: stable;
}

body.dbam-cart-open {
    touch-action: none;
}

body.dbam-cart-open .dbam-cart-drawer,
body.dbam-cart-open .dbam-panel,
body.dbam-cart-open .dbam-panel__body,
body.dbam-cart-open .dbam-upsells__rail {
    touch-action: pan-y;
}

body.dbam-cart-open .dbam-upsells__rail {
    touch-action: pan-x;
}

html.dbam-scroll-locked,
body.dbam-scroll-locked {
    overflow: hidden !important;
    overscroll-behavior: none;
}

body.dbam-cart-open .dbam-cart-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

body.dbam-cart-open .ui-dialog.mage-dropdown-dialog,
body.dbam-cart-open .block-minicart.dbam-cart-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    width: var(--dbam-panel-width) !important;
    max-width: calc(100vw - 24px) !important;
    height: 100dvh !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: var(--dbam-panel-radius) 0 0 var(--dbam-panel-radius) !important;
    background: var(--dbam-panel-bg) !important;
    box-shadow: -22px 0 44px rgba(0, 0, 0, .26) !important;
    overflow: hidden !important;
    z-index: 2147483010 !important;
    transform: translate3d(0, 0, 0);
    animation: dbamDrawerInRight .24s cubic-bezier(.2, .8, .2, 1) both;
    backface-visibility: hidden;
    will-change: transform;
}

body.dbam-cart-open.dbam-cart-left .ui-dialog.mage-dropdown-dialog,
body.dbam-cart-open.dbam-cart-left .block-minicart.dbam-cart-drawer {
    right: auto !important;
    left: 0 !important;
    border-radius: 0 var(--dbam-panel-radius) var(--dbam-panel-radius) 0 !important;
    box-shadow: 22px 0 44px rgba(0, 0, 0, .26) !important;
    animation-name: dbamDrawerInLeft;
}

body.dbam-cart-open .ui-dialog.mage-dropdown-dialog .block-minicart.dbam-cart-drawer {
    position: static !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: inherit !important;
    background: var(--dbam-panel-bg) !important;
    box-shadow: none !important;
    color: var(--dbam-text) !important;
    overflow: hidden !important;
    transform: none !important;
    animation: none !important;
    will-change: auto;
}

.dbam-panel,
.dbam-panel * {
    box-sizing: border-box;
}

.dbam-panel {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    color: var(--dbam-text);
    background: var(--dbam-panel-bg);
    font-family: Manrope, Arial, sans-serif;
    font-size: var(--dbam-body-font-size);
}

.dbam-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex: 0 0 auto;
    min-height: 68px;
    padding: 20px 24px 14px;
    border-bottom: 1px solid #ececec;
    background: var(--dbam-panel-bg);
}

.dbam-panel__title {
    color: var(--dbam-text);
    font-size: var(--dbam-title-font-size);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.dbam-panel__close {
    position: relative;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--dbam-text);
    box-shadow: none;
}

.dbam-panel__close:before,
.dbam-panel__close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 2px;
    background: currentColor;
    transform-origin: center;
}

.dbam-panel__close:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.dbam-panel__close:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.dbam-panel__close span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.dbam-panel__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 18px 24px 22px;
    background: var(--dbam-panel-bg);
}

.dbam-panel__footer {
    flex: 0 0 auto;
    padding: 16px 24px 20px;
    border-top: 1px solid #ececec;
    background: var(--dbam-panel-bg);
}

.dbam-panel--minimal .dbam-section-heading span,
.dbam-panel--minimal .dbam-items-heading {
    display: none;
}

.dbam-free-shipping {
    display: grid;
    gap: 9px;
    margin-bottom: 18px;
}

.dbam-free-shipping__message {
    color: var(--dbam-text);
    font-size: var(--dbam-body-font-size);
    font-weight: 700;
    opacity: 0;
    transform: translate3d(0, 12px, 0);
}

body.dbam-cart-open .dbam-free-shipping__message {
    animation: dbamFreeMessageIn .34s cubic-bezier(.2, .8, .2, 1) .12s both;
}

.dbam-free-shipping__track {
    height: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #e9e9e9;
}

.dbam-free-shipping__bar {
    height: 100%;
    min-width: 0;
    border-radius: inherit;
    background: var(--dbam-accent);
    transform: scaleX(0);
    transform-origin: left center;
    transition: width .25s ease;
}

body.dbam-cart-open .dbam-free-shipping__bar {
    animation: dbamFreeBarIn .62s cubic-bezier(.18, .9, .24, 1) .14s both;
}

.dbam-free-shipping__check {
    display: none;
    flex: 0 0 15px;
    width: 15px;
    height: 15px;
    object-fit: contain;
    filter: brightness(0) saturate(100%) invert(31%) sepia(70%) saturate(870%) hue-rotate(100deg) brightness(86%) contrast(88%);
}

.dbam-free-shipping.is-unlocked .dbam-free-shipping__message {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #11813b;
}

.dbam-free-shipping.is-unlocked .dbam-free-shipping__check {
    display: inline-block;
}

.dbam-free-shipping.is-unlocked .dbam-free-shipping__track {
    background: #dcefe4;
}

.dbam-free-shipping.is-unlocked .dbam-free-shipping__bar {
    background: #11813b;
}

.dbam-free-shipping__scale {
    display: flex;
    justify-content: space-between;
    color: var(--dbam-muted);
    font-size: 12px;
}

.dbam-items-heading {
    display: flex;
    gap: 4px;
    margin: 0 0 10px;
    color: var(--dbam-muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.dbam-cart-items-wrap {
    min-width: 0;
    max-height: min(348px, 38vh);
    margin: 0;
    padding: 0 6px 0 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #cfcfcf transparent;
}

.dbam-cart-items-wrap::-webkit-scrollbar,
.dbam-upsells__rail::-webkit-scrollbar {
    height: 7px;
    width: 7px;
}

.dbam-cart-items-wrap::-webkit-scrollbar-thumb,
.dbam-upsells__rail::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: #cfcfcf;
}

.dbam-cart-items {
    display: grid;
    gap: 0;
    min-width: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dbam-cart-item {
    display: grid !important;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 14px;
    width: 100%;
    min-width: 0;
    margin: 0 !important;
    padding: 16px 0 !important;
    border-top: 1px solid #f0f0f0;
    color: var(--dbam-text);
}

.dbam-cart-item:first-child {
    border-top: 0;
    padding-top: 4px !important;
}

.dbam-cart-item__image {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 86px !important;
    height: 86px !important;
    min-width: 86px;
    overflow: hidden;
    border-radius: 5px;
    background: var(--dbam-surface);
    text-decoration: none !important;
}

.dbam-cart-item__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.dbam-cart-item__content {
    display: grid;
    gap: 9px;
    min-width: 0;
    align-self: start;
}

.dbam-cart-item__topline {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 30px;
    gap: 8px;
    align-items: start;
    min-width: 0;
}

.dbam-cart-item__name {
    display: block !important;
    min-width: 0;
    max-width: 100%;
    margin: 0;
    color: var(--dbam-text) !important;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.3;
    text-decoration: none !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: anywhere;
    hyphens: auto;
}

.dbam-cart-item__remove {
    position: relative;
    width: 30px;
    height: 30px;
    min-width: 30px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--dbam-muted);
    box-shadow: none;
}

.dbam-cart-item__remove:before,
.dbam-cart-item__remove:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 1.5px;
    background: currentColor;
}

.dbam-cart-item__remove:before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.dbam-cart-item__remove:after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.dbam-cart-item__remove span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.dbam-cart-item__options {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 3px 8px;
    margin: 0;
    color: var(--dbam-muted);
    font-size: 12px;
    line-height: 1.35;
}

.dbam-cart-item__options dt,
.dbam-cart-item__options dd {
    min-width: 0;
    margin: 0;
}

.dbam-cart-item__options dt {
    font-weight: 800;
}

.dbam-cart-item__options dd {
    overflow-wrap: anywhere;
}

.dbam-cart-item__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
}

.dbam-cart-item__price,
.dbam-cart-item__price .price {
    color: var(--dbam-text) !important;
    font-size: 13px;
    font-weight: 900;
}

.dbam-cart-item__qty {
    display: inline-grid;
    grid-template-columns: 30px minmax(24px, auto) 30px;
    align-items: center;
    min-height: 30px;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    background: var(--dbam-panel-bg);
    overflow: hidden;
}

.dbam-cart-item__qty button {
    width: 30px;
    height: 30px;
    min-width: 30px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--dbam-text);
    font-size: 16px;
    line-height: 1;
    box-shadow: none;
}

.dbam-cart-item__qty > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 24px;
    color: var(--dbam-text);
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    text-align: center;
}

.dbam-cart-item .message.notice {
    margin: 0;
    padding: 8px 10px;
    border-radius: 4px;
    background: var(--dbam-surface);
    color: var(--dbam-muted);
    font-size: 12px;
}

.dbam-items.minicart-items-wrapper {
    height: auto !important;
    max-height: none !important;
    margin: 0;
    padding: 0;
    border: 0;
}

.dbam-items .minicart-items {
    margin: 0;
    padding: 0;
}

.dbam-items .product-item {
    margin: 0;
    padding: 16px 0;
    border-top: 1px solid #f0f0f0;
}

.dbam-items .product-item:first-child {
    border-top: 0;
}

.dbam-items .product {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 14px;
}

.dbam-items .product-item-photo {
    width: 82px !important;
    max-width: 82px !important;
}

.dbam-items .product-image-container,
.dbam-items .product-image-wrapper {
    width: 82px !important;
    border-radius: 5px;
    overflow: hidden;
}

.dbam-items .product-item-details {
    min-width: 0;
}

.dbam-items .product-item-name {
    display: block;
    margin: 0 0 4px;
    font-size: 14px;
    line-height: 1.3;
}

.dbam-items .product-item-name a {
    color: var(--dbam-text) !important;
    font-weight: 800;
    text-decoration: none !important;
}

.dbam-items .price,
.dbam-items .minicart-price {
    color: var(--dbam-text) !important;
    font-weight: 900;
}

.dbam-items .details-qty {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}

.dbam-items .details-qty .label {
    color: var(--dbam-muted) !important;
    font-size: 12px;
    font-weight: 800;
}

.dbam-items .item-qty {
    width: 58px !important;
    height: 34px !important;
    padding: 0 8px !important;
    border: 1px solid #d7d7d7 !important;
    border-radius: 5px !important;
    background: var(--dbam-panel-bg) !important;
    color: var(--dbam-text) !important;
}

.dbam-items .update-cart-item {
    min-height: 34px;
    border-radius: 5px;
    background: var(--dbam-button-bg);
    border-color: var(--dbam-button-bg);
    color: var(--dbam-button-text);
    font-weight: 800;
}

.dbam-items .product.actions {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}

.dbam-items .product.actions a {
    color: var(--dbam-muted) !important;
    font-size: 12px;
    font-weight: 800;
    text-decoration: underline;
}

.dbam-section-heading {
    display: grid;
    gap: 3px;
    margin-bottom: 12px;
}

.dbam-section-heading strong {
    color: var(--dbam-text);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

.dbam-section-heading span {
    color: var(--dbam-muted);
    font-size: 12px;
    line-height: 1.4;
}

.dbam-upsells,
.dbam-discount,
.dbam-summary {
    margin: 20px -24px 0;
    padding: 18px 24px;
    border-top: 1px solid #ececec;
    background: var(--dbam-surface);
}

.dbam-upsells__rail {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
    overscroll-behavior-x: contain;
    scrollbar-width: thin;
    scrollbar-color: #cfcfcf transparent;
}

.dbam-upsells__rail.is-auto-advancing {
    scroll-behavior: auto;
}

.dbam-upsell {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    flex: 0 0 268px;
    gap: 8px 10px;
    align-items: center;
    min-height: 102px;
    padding: 8px;
    background: var(--dbam-panel-bg);
    border: 1px solid #ededed;
    border-radius: 5px;
    scroll-snap-align: start;
}

.dbam-upsell__image,
.dbam-upsell__image img {
    display: block;
    width: 64px;
    height: 64px;
}

.dbam-upsell__image img {
    object-fit: cover;
    border-radius: 4px;
}

.dbam-upsell__details {
    display: grid;
    grid-column: 2;
    gap: 3px;
    min-width: 0;
}

.dbam-upsell__name {
    display: -webkit-box;
    overflow: hidden;
    color: var(--dbam-text) !important;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    text-decoration: none !important;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.dbam-upsell__price {
    color: var(--dbam-text);
    font-size: 12px;
    font-weight: 900;
}

.dbam-upsell__add {
    grid-column: 3;
    justify-self: end;
    align-self: center;
    min-width: 0;
    min-height: 32px;
    padding: 0 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--dbam-text);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    box-shadow: none;
}

.dbam-upsell__add:before {
    content: '+ ';
    font-weight: 900;
}

.dbam-upsell__add:hover,
.dbam-upsell__add:focus {
    background: transparent;
    color: var(--dbam-text);
    text-decoration: underline;
    box-shadow: none;
}

.dbam-discount__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.dbam-discount__input {
    height: 44px !important;
    padding: 0 12px !important;
    border: 1px solid #d7d7d7 !important;
    border-radius: 5px !important;
    background: var(--dbam-panel-bg) !important;
    color: var(--dbam-text) !important;
}

.dbam-discount__apply {
    min-width: 92px;
    height: 44px;
    border: 0;
    border-radius: 999px;
    background: var(--dbam-button-bg);
    color: var(--dbam-button-text);
    font-weight: 900;
    text-transform: uppercase;
}

.dbam-discount__message {
    margin-top: 8px;
    font-size: 12px;
    font-weight: 700;
}

.dbam-discount__note {
    display: flex !important;
    align-items: center;
    gap: 6px;
    margin: -4px 0 12px;
    color: var(--dbam-muted);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.4;
    visibility: visible !important;
}

.dbam-discount__note:before {
    content: '!';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 14px;
    height: 14px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 900;
    line-height: 1;
}

.dbam-discount__message.is-success {
    color: #126c2f;
}

.dbam-discount__message.is-error {
    color: #b00020;
}

.dbam-summary {
    background: var(--dbam-panel-bg);
}

.dbam-summary__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 16px;
    padding: 7px 0;
    color: var(--dbam-muted);
    font-size: var(--dbam-body-font-size);
}

.dbam-summary__row strong {
    color: var(--dbam-text);
    font-weight: 900;
}

.dbam-summary__row--total {
    margin-top: 4px;
    padding-top: 12px;
    border-top: 1px solid #ededed;
    color: var(--dbam-text);
    font-size: calc(var(--dbam-body-font-size) + 2px);
    font-weight: 900;
}

.dbam-checkout,
.dbam-panel__footer .action.primary.checkout {
    width: 100% !important;
    height: 50px !important;
    min-height: 50px !important;
    padding: 0 18px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--dbam-button-bg) !important;
    color: var(--dbam-button-text) !important;
    font-size: 14px !important;
    font-weight: 900 !important;
    text-transform: uppercase;
}

.dbam-view-cart {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
    color: var(--dbam-text) !important;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: underline;
}

.dbam-panel--empty .dbam-panel__body {
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow-y: auto;
}

.dbam-empty {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 520px;
    padding: 44px 42px 58px;
    text-align: center;
}

.dbam-empty__visual {
    position: relative;
    display: grid;
    place-items: center;
    width: 132px;
    height: 132px;
    margin-bottom: 14px;
}

.dbam-empty__halo {
    position: absolute;
    width: 102px;
    height: 102px;
    border-radius: 999px;
    background: #eeeeee;
}

.dbam-empty__icon {
    position: relative;
    z-index: 1;
    display: block;
    width: 106px;
    height: 106px;
    opacity: .54;
    object-fit: contain;
}

.dbam-empty strong {
    margin: 0 0 7px;
    color: var(--dbam-text);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.dbam-empty p {
    max-width: 250px;
    margin: 0 0 18px;
    color: var(--dbam-muted);
    font-size: 13px;
    line-height: 1.45;
}

.dbam-empty__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(224px, 100%);
    min-height: 42px;
    padding: 0 24px;
    border-radius: 999px;
    background: var(--dbam-button-bg);
    color: var(--dbam-button-text) !important;
    font-size: 13px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none !important;
    text-transform: uppercase;
}

.dbam-empty__cta:hover,
.dbam-empty__cta:focus {
    color: var(--dbam-button-text) !important;
    text-decoration: none !important;
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    body.dbam-cart-open .ui-dialog.mage-dropdown-dialog,
    body.dbam-cart-open .block-minicart.dbam-cart-drawer,
    body.dbam-cart-open .dbam-free-shipping__message,
    body.dbam-cart-open .dbam-free-shipping__bar {
        animation: none !important;
        transition: none !important;
    }

    .dbam-free-shipping__message {
        opacity: 1;
        transform: none;
    }

    .dbam-free-shipping__bar {
        transform: none;
    }
}

@media (max-width: 768px) {
    body.dbam-cart-open .ui-dialog.mage-dropdown-dialog,
    body.dbam-cart-open > .block-minicart.dbam-cart-drawer,
    body.dbam-cart-open .minicart-wrapper .block-minicart.dbam-cart-drawer,
    body.dbam-cart-open.dbam-cart-left .ui-dialog.mage-dropdown-dialog,
    body.dbam-cart-open.dbam-cart-left > .block-minicart.dbam-cart-drawer,
    body.dbam-cart-open.dbam-cart-left .minicart-wrapper .block-minicart.dbam-cart-drawer {
        top: auto !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        height: var(--dbam-mobile-sheet-height) !important;
        height: min(var(--dbam-mobile-sheet-height), calc(100dvh - 10px)) !important;
        max-height: calc(100dvh - 10px) !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 20px 20px 0 0 !important;
        box-shadow: 0 -18px 42px rgba(0, 0, 0, .28) !important;
        overflow: hidden !important;
        animation-name: dbamSheetIn !important;
    }

    body.dbam-cart-open .ui-dialog.mage-dropdown-dialog .block-minicart.dbam-cart-drawer,
    body.dbam-cart-open .block-minicart.dbam-cart-drawer,
    body.dbam-cart-open .block-minicart.dbam-cart-drawer.ui-dialog-content {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        border-radius: 20px 20px 0 0 !important;
        overflow: hidden !important;
    }

    .dbam-panel {
        display: grid !important;
        grid-template-rows: 86px minmax(0, 1fr) auto;
        width: 100%;
        height: 100% !important;
        max-height: 100% !important;
        min-height: 0 !important;
        overflow: hidden !important;
        border-radius: 20px 20px 0 0;
    }

    .dbam-panel__header {
        position: relative;
        z-index: 4;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 0;
        height: 86px;
        padding: 0 66px;
        border-bottom: 1px solid #eeeeee;
        border-radius: 20px 20px 0 0;
        background: var(--dbam-panel-bg);
        box-shadow: 0 12px 24px rgba(0, 0, 0, .12);
    }

    .dbam-panel__title {
        display: block;
        width: 100%;
        margin: 0;
        font-size: 20px;
        line-height: 1.1;
        text-align: center;
    }

    .dbam-panel__close {
        position: absolute;
        top: 50%;
        right: 18px;
        width: 46px;
        height: 46px;
        transform: translateY(-50%);
    }

    .dbam-panel__close:before,
    .dbam-panel__close:after {
        width: 25px;
        height: 2px;
    }

    .dbam-panel__body {
        position: relative;
        z-index: 1;
        min-height: 0 !important;
        height: auto !important;
        max-height: none !important;
        padding: 22px 20px 24px;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        overscroll-behavior: contain;
        scrollbar-gutter: stable;
        scrollbar-width: thin;
        scrollbar-color: #cfcfcf transparent;
        -webkit-overflow-scrolling: touch;
    }

    .dbam-panel__body::-webkit-scrollbar {
        width: 5px;
    }

    .dbam-panel__body::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: #cfcfcf;
    }

    .dbam-panel__footer {
        position: relative;
        z-index: 4;
        min-height: 0;
        padding: 18px 20px calc(18px + env(safe-area-inset-bottom));
        border-top: 1px solid #eeeeee;
        background: var(--dbam-panel-bg);
        box-shadow: 0 -12px 24px rgba(0, 0, 0, .14);
    }

    .dbam-panel__footer .actions,
    .dbam-panel__footer .primary {
        width: 100%;
        margin: 0;
    }

    .dbam-checkout,
    .dbam-panel__footer .action.primary.checkout {
        height: 56px !important;
        min-height: 56px !important;
        font-size: 15px !important;
        line-height: 56px !important;
    }

    .dbam-view-cart {
        margin-top: 8px;
    }

    .dbam-free-shipping {
        margin-bottom: 18px;
    }

    .dbam-cart-items-wrap,
    .dbam-cart-items-wrap[data-action="scroll"] {
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        margin: 0 !important;
        padding: 0 !important;
        overflow: visible !important;
        overscroll-behavior: auto;
        scrollbar-width: auto;
    }

    .dbam-cart-items {
        display: grid;
        gap: 0;
        width: 100%;
    }

    .dbam-cart-item {
        grid-template-columns: 76px minmax(0, 1fr);
        gap: 12px;
        align-items: start;
        min-height: 112px;
        padding: 16px 0 !important;
        overflow: visible;
    }

    .dbam-cart-item__image {
        width: 76px !important;
        height: 76px !important;
        min-width: 76px;
    }

    .dbam-cart-item__content {
        align-self: stretch;
        gap: 10px;
        min-width: 0;
    }

    .dbam-cart-item__name {
        display: -webkit-box !important;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.25;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .dbam-cart-item__meta {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
        gap: 10px;
    }

    .dbam-upsells,
    .dbam-discount,
    .dbam-summary {
        margin-left: -20px;
        margin-right: -20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .dbam-upsells {
        margin-top: 16px;
        padding-top: 20px;
        padding-bottom: 18px;
    }

    .dbam-upsells__rail {
        gap: 8px;
        padding-bottom: 4px;
    }

    .dbam-upsell {
        grid-template-columns: 62px minmax(0, 1fr) auto;
        flex: 0 0 252px;
        min-height: 98px;
    }

    .dbam-upsell__image,
    .dbam-upsell__image img {
        width: 62px;
        height: 62px;
    }

    .dbam-upsell__add {
        grid-column: 3;
        justify-self: end;
    }

    .dbam-discount {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .dbam-summary {
        padding-top: 20px;
        padding-bottom: 26px;
    }
}


@media (max-width: 768px) {
    body.dbam-cart-open .ui-dialog.mage-dropdown-dialog,
    body.dbam-cart-open > .block-minicart.dbam-cart-drawer,
    body.dbam-cart-open .minicart-wrapper .block-minicart.dbam-cart-drawer,
    body.dbam-cart-open.dbam-cart-left .ui-dialog.mage-dropdown-dialog,
    body.dbam-cart-open.dbam-cart-left > .block-minicart.dbam-cart-drawer,
    body.dbam-cart-open.dbam-cart-left .minicart-wrapper .block-minicart.dbam-cart-drawer {
        height: 94vh !important;
        height: min(94vh, calc(100dvh - 14px)) !important;
        max-height: calc(100dvh - 14px) !important;
        overflow: hidden !important;
    }

    body.dbam-cart-open #minicart-content-wrapper {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    .dbam-panel {
        position: relative !important;
        display: block !important;
        height: 100% !important;
        min-height: 0 !important;
        overflow: hidden !important;
        border-radius: 20px 20px 0 0;
        background: var(--dbam-panel-bg);
    }

    .dbam-panel__header {
        position: absolute !important;
        top: 0;
        left: 0;
        right: 0;
        z-index: 20;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 104px !important;
        min-height: 104px !important;
        padding: 22px 68px 0 !important;
        border-bottom: 1px solid #eeeeee;
        border-radius: 20px 20px 0 0;
        background: var(--dbam-panel-bg);
        box-shadow: 0 14px 26px rgba(0, 0, 0, .16);
    }

    .dbam-panel__title {
        display: block !important;
        width: 100%;
        margin: 0 !important;
        color: var(--dbam-text);
        font-size: 20px !important;
        font-weight: 900;
        line-height: 1.15 !important;
        text-align: center;
    }

    .dbam-panel__close {
        position: absolute !important;
        top: 58px !important;
        right: 18px !important;
        width: 46px !important;
        height: 46px !important;
        transform: translateY(-50%) !important;
    }

    .dbam-panel__body {
        position: absolute !important;
        top: 104px !important;
        right: 0 !important;
        bottom: 108px !important;
        left: 0 !important;
        z-index: 1;
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        padding: 22px 20px 28px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        background: var(--dbam-panel-bg);
        overscroll-behavior: contain;
        scrollbar-gutter: stable;
        scrollbar-width: thin;
        scrollbar-color: #cfcfcf transparent;
        -webkit-overflow-scrolling: touch;
    }

    .dbam-panel__body::-webkit-scrollbar {
        width: 5px;
    }

    .dbam-panel__body::-webkit-scrollbar-thumb {
        border-radius: 999px;
        background: #cfcfcf;
    }

    .dbam-panel__footer {
        position: absolute !important;
        right: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        z-index: 20;
        display: block !important;
        min-height: 108px !important;
        padding: 17px 20px calc(16px + env(safe-area-inset-bottom)) !important;
        border-top: 1px solid #eeeeee;
        background: var(--dbam-panel-bg);
        box-shadow: 0 -14px 26px rgba(0, 0, 0, .16);
    }

    .dbam-panel__footer .actions,
    .dbam-panel__footer .primary {
        width: 100% !important;
        margin: 0 !important;
    }

    .dbam-checkout,
    .dbam-panel__footer .action.primary.checkout {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 56px !important;
        min-height: 56px !important;
        line-height: 1 !important;
    }

    .dbam-view-cart {
        margin-top: 8px !important;
        line-height: 1.2;
    }

    .dbam-cart-items-wrap,
    .dbam-cart-items-wrap[data-action="scroll"] {
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
    }
}


@media (max-width: 768px) {
    .dbam-panel__header {
        box-shadow: none !important;
        transition: box-shadow .18s ease;
    }

    .dbam-panel.dbam-panel--scrolled .dbam-panel__header {
        box-shadow: 0 14px 26px rgba(0, 0, 0, .16) !important;
    }

    .dbam-panel__footer {
        box-shadow: none !important;
        transition: box-shadow .18s ease;
    }

    .dbam-panel.dbam-panel--scrolled .dbam-panel__footer {
        box-shadow: 0 -14px 26px rgba(0, 0, 0, .16) !important;
    }

    .dbam-panel__body {
        right: 0 !important;
        left: 0 !important;
        width: 100% !important;
        padding-right: 16px !important;
        padding-left: 16px !important;
        scrollbar-gutter: auto !important;
        scrollbar-width: none;
    }

    .dbam-panel__body::-webkit-scrollbar {
        width: 0;
        height: 0;
    }

    .dbam-panel__body::-webkit-scrollbar-thumb {
        background: transparent;
    }

    .dbam-free-shipping,
    .dbam-items-heading,
    .dbam-cart-items-wrap,
    .dbam-summary {
        width: 100%;
    }

    .dbam-upsells,
    .dbam-discount,
    .dbam-summary {
        margin-right: -16px !important;
        margin-left: -16px !important;
        padding-right: 16px !important;
        padding-left: 16px !important;
    }

    .dbam-upsells__rail {
        margin-right: -16px;
        padding-right: 16px;
    }

    .dbam-discount__form {
        grid-template-columns: minmax(0, 1fr) 104px;
        gap: 8px;
    }

    .dbam-discount__apply {
        min-width: 104px;
    }

    .dbam-panel__footer {
        padding-right: 16px !important;
        padding-left: 16px !important;
    }
}

@media (max-width: 420px) {
    .dbam-items .product {
        grid-template-columns: 72px minmax(0, 1fr);
    }

    .dbam-items .product-item-photo,
    .dbam-items .product-image-container,
    .dbam-items .product-image-wrapper {
        width: 72px !important;
        max-width: 72px !important;
    }

    .dbam-cart-item {
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 10px;
    }

    .dbam-cart-item__image {
        width: 68px !important;
        height: 68px !important;
        min-width: 68px;
    }

    .dbam-cart-item__meta {
        align-items: center;
        flex-direction: row;
        gap: 8px;
    }

    .dbam-discount__form {
        grid-template-columns: minmax(0, 1fr) 104px;
        gap: 8px;
    }

    .dbam-discount__apply {
        width: auto;
        min-width: 104px;
    }
}

@media (max-width: 768px) {
    body.dbam-cart-open .ui-dialog.mage-dropdown-dialog,
    body.dbam-cart-open > .block-minicart.dbam-cart-drawer,
    body.dbam-cart-open .minicart-wrapper .block-minicart.dbam-cart-drawer,
    body.dbam-cart-open.dbam-cart-left .ui-dialog.mage-dropdown-dialog,
    body.dbam-cart-open.dbam-cart-left > .block-minicart.dbam-cart-drawer,
    body.dbam-cart-open.dbam-cart-left .minicart-wrapper .block-minicart.dbam-cart-drawer {
        width: 100vw !important;
        max-width: 100vw !important;
        height: 94vh !important;
        height: min(94vh, calc(100dvh - 12px)) !important;
        max-height: calc(100dvh - 12px) !important;
    }

    body.dbam-cart-open #minicart-content-wrapper,
    body.dbam-cart-open .dbam-panel {
        width: 100% !important;
        height: 100% !important;
        min-width: 0 !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    .dbam-panel__header {
        top: 0 !important;
        height: 88px !important;
        min-height: 88px !important;
        padding: 13px 64px 0 !important;
        background: var(--dbam-panel-bg) !important;
        box-shadow: none !important;
        transition: box-shadow .18s ease;
    }

    .dbam-panel.dbam-panel--scrolled .dbam-panel__header {
        box-shadow: 0 12px 24px rgba(0, 0, 0, .14) !important;
    }

    .dbam-panel__title {
        font-size: 19px !important;
        line-height: 1.1 !important;
        text-align: center !important;
    }

    .dbam-panel__close {
        top: 48px !important;
        right: 22px !important;
        width: 42px !important;
        height: 42px !important;
    }

    .dbam-panel__close:before,
    .dbam-panel__close:after {
        width: 25px !important;
    }

    .dbam-panel__body {
        top: 88px !important;
        right: 0 !important;
        bottom: 104px !important;
        left: 0 !important;
        width: auto !important;
        padding: 16px 0 24px !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
        scrollbar-gutter: auto !important;
        scrollbar-width: thin !important;
        scrollbar-color: #cfcfcf transparent !important;
    }

    .dbam-panel__body::-webkit-scrollbar {
        width: 4px !important;
        height: 4px !important;
    }

    .dbam-panel__body::-webkit-scrollbar-track {
        background: transparent !important;
    }

    .dbam-panel__body::-webkit-scrollbar-thumb {
        border-radius: 999px !important;
        background: #cfcfcf !important;
    }

    .dbam-free-shipping,
    .dbam-items-heading,
    .dbam-cart-items-wrap,
    .dbam-empty,
    .dbam-panel__body > .minicart-widgets {
        padding-right: 24px !important;
        padding-left: 24px !important;
    }

    .dbam-cart-items-wrap,
    .dbam-cart-items-wrap[data-action="scroll"] {
        width: 100% !important;
        max-height: none !important;
        overflow: visible !important;
    }

    .dbam-upsells,
    .dbam-discount,
    .dbam-summary {
        width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 24px !important;
        padding-left: 24px !important;
    }

    .dbam-upsells__rail {
        margin-right: -24px !important;
        padding-right: 24px !important;
    }

    .dbam-discount__form {
        grid-template-columns: minmax(0, 1fr) 108px !important;
        gap: 10px !important;
    }

    .dbam-discount__apply {
        min-width: 108px !important;
    }

    .dbam-panel__footer {
        min-height: 104px !important;
        padding: 15px 24px calc(14px + env(safe-area-inset-bottom)) !important;
        background: var(--dbam-panel-bg) !important;
        box-shadow: none !important;
        transition: box-shadow .18s ease;
    }

    .dbam-panel.dbam-panel--scrolled .dbam-panel__footer {
        box-shadow: 0 -12px 24px rgba(0, 0, 0, .14) !important;
    }

    .dbam-checkout,
    .dbam-panel__footer .action.primary.checkout {
        width: 100% !important;
        height: 54px !important;
        min-height: 54px !important;
        margin: 0 auto !important;
        font-size: 14px !important;
    }

    .dbam-view-cart {
        margin-top: 8px !important;
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .dbam-panel.dbam-panel--empty .dbam-panel__body {
        top: 88px !important;
        bottom: 0 !important;
        padding: 0 !important;
        overflow-y: auto !important;
    }

    .dbam-panel.dbam-panel--empty .dbam-empty {
        width: 100% !important;
        min-height: 100% !important;
        padding: clamp(32px, 7vh, 58px) 30px 58px !important;
    }

    .dbam-panel.dbam-panel--empty .dbam-empty__visual {
        width: 152px;
        height: 152px;
        margin-bottom: 18px;
    }

    .dbam-panel.dbam-panel--empty .dbam-empty__halo {
        width: 112px;
        height: 112px;
    }

    .dbam-panel.dbam-panel--empty .dbam-empty__icon {
        width: 116px;
        height: 116px;
    }

    .dbam-panel.dbam-panel--empty .dbam-empty strong {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .dbam-panel.dbam-panel--empty .dbam-empty p {
        max-width: 320px;
        margin-bottom: 22px;
        font-size: 16px;
    }

    .dbam-panel.dbam-panel--empty .dbam-empty__cta {
        width: min(278px, 100%);
        min-height: 54px;
        font-size: 18px;
    }
}

@media (max-width: 420px) {
    .dbam-panel.dbam-panel--empty .dbam-empty {
        padding-right: 24px !important;
        padding-left: 24px !important;
    }

    .dbam-panel.dbam-panel--empty .dbam-empty__visual {
        width: 136px;
        height: 136px;
    }

    .dbam-panel.dbam-panel--empty .dbam-empty__halo {
        width: 100px;
        height: 100px;
    }

    .dbam-panel.dbam-panel--empty .dbam-empty__icon {
        width: 104px;
        height: 104px;
    }
}
