:root {
    --cart-red: #E51937;
    --cart-blue: #285773;
}
.b-cart-red {
    background-color: var(--cart-red);
}
.f-cart-red {
    color: var(--cart-red);
}
.b-cart-blue {
    background-color: var(--cart-blue);
}
.f-cart-blue {
    color: var(--cart-blue);
}
body.mini-cart-active {
    position: fixed;
    overflow-y: scroll;
    width: 100%;
}

#header-main .cart {
	margin: 8px 9px 0 .5rem;
}

#header-main .cart img {
	max-width: 39px;
}

#header-main .quantity {
	visibility: hidden;
	background-color: var(--cart-red);
	border-radius: 50%;
	width: 21px;
	height: 21px;
	line-height: 21px;
	font-size: 11px;
	top: -5px;
	right: -10px;
	color: #fff;
}

#header-main .quantity.visible {
	visibility: visible;
}

#panel::after {
    background-color: rgba(0, 0, 0, 0.5);
    content: '';
    top: var(--header-height);
    left: 0;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s ease-in-out;
    display: block;
}


.mini-cart-active #panel::after {
    opacity: 1;
    pointer-events: unset;
}

#mini-cart {
    width: 320px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 999;
    background-color: #ffffff;
    bottom: 0;
    transition: all 0.5s ease-in-out;
    top: var(--header-height);
    right: -100%;
    position: fixed;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

#mini-cart.active {
    right: 0;
}

#mini-cart .h1 {
    font-size: 24px;
    line-height: 1em;
}

#mini-cart .item-count {
    font-size: 24px;
    line-height: 1em;
    border-bottom: 1px solid #D5D5D5;
}

#mini-cart .product-name {
    font-size: 14px;
    flex-grow: 1;
}

#mini-cart .cart-items .cart-item {
    padding: 32px;
    font-size: 14px;
    line-height: 17px;
    border-bottom: 1px solid #D5D5D5;
}

#mini-cart .cart-item a:hover,
#mini-cart .cart-item a:active,
#mini-cart .cart-item a {
    font-weight: normal;
}

#mini-cart .cart-item .image-wrapper {
    width: 48px;
    aspect-ratio: 1 / 1;
}

#mini-cart .pd-price {
    font-size: 36px;
    margin-top: 10px;
    line-height: 1em;
}

#mini-cart .pd-price sup {
    top: -20px;
    font-size: 58%;
}

#mini-cart .pd-price .flex-column sup {
    top: 2px;
}

#mini-cart .pd-price .period {
    font-size: 8px;
    margin: 2px 0 0 2px;
}

#mini-cart .price-wrap .or {
    font-size: 16px;
    line-height: 1em;
    margin: 15px 11px 0;
    aspect-ratio: 1 / 1;
    width: 28px;
}

#mini-cart .price {
    font-size: 14px;
    line-height: 17px;
    margin: 0 8px 0 0;
}

#mini-cart .bottom {
    padding: 27px 20px 20px 20px;
    font-size: 12px;
}

#mini-cart .bottom a:first-child {
    margin: 15px 0;
}

#mini-cart .cart-items {
    margin-bottom: 25px;
}

#mini-cart .bottom:not(.empty-cart) {
    margin-top: auto;
    padding: 22px 23px 32px 32px;
}

#mini-cart .bottom span {
    padding-top: 3px;
}

#mini-cart .bottom .pd-main sup {
    top: -13px;
}

#mini-cart .close {
    opacity: 1;
    font-weight: 400;
    right: 18px;
    top: 15px;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-size: 24px;
    position: absolute;
    text-shadow: none;
    float: none;
    background-image: url("../../images/2026/icons/icon-close.png");
    background-position: center;
    background-size: contain;
    width: 13px;
    height: 13px;
}

#mini-cart .button {
    height: 41px;
    line-height: 41px;
    font-size: 20px;
}

#mini-cart .shop-all,
#mini-cart .shop-all:hover {
    color: #fff;
    height: 39px;
    line-height: 39px;
    border-radius: 20px;
    font-size: 20px;
    width: 217px;
}

#mini-cart .empty-cart:not(.bottom) {
    height: 262px;
}

#mini-cart .remove {
    font-size: 14px;
    line-height: 1;
    display: flex;
    align-items: center;
}

#mini-cart .remove img {
    margin-right: 4px;
    vertical-align: 0px;
}

#mini-cart .mbtm {
    display: flex;
    justify-content: space-between;
    gap: 12px;
}
#mini-cart .mbtm .or {
    display: flex;
    justify-content: center;
    font-size: 8px;
    width: 13px;
    aspect-ratio: 1 / 1;
    margin-left: -4px;
    margin-right: 4px;
    line-height: 1;
    flex-shrink: 0;
}

#mini-cart .pdetails {
    gap: 8px 0;
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 768px) {
    #mini-cart .price-wrap {
        margin-top: 0;
    }
}

@media screen and (max-width: 480px) {
    #mini-cart {
        width: 100%;
        top: 0;
        right: -110%;
        z-index: 99999999;
    }

    #mini-cart .item-count {
        margin-top: 21px;
    }

    #mini-cart .cart-items .cart-item {
        padding: 33px 5px 33px 16px;
    }

    #mini-cart .remove span {
        font-size: 14px;
    }

    #mini-cart .h1 {
        font-size: 30px;
    }

    #mini-cart .abs-bottom {
        max-width: 250px;
        margin: 0 auto;
    }
}
