.button-add-to-cart {
    display: inline-flex;
    justify-content:center;
    align-items:center;
    vertical-align: middle;
    margin: 0;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 3px;
    -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-family: inherit;
    -webkit-appearance: none;
    line-height: 1;
    cursor: pointer;
    outline: none;
    background-color: #f1f1f1;
    color: #313131;
    font-weight: 500;
    min-width: 145px !important;
}

.js-mini-cart-count {
    position: absolute;
    top: 3px;
    right: -10px;
    background-color: #136ac3;
    color: #fff;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 20px;
    width: 20px;
    height: 20px;
}

.button-add-to-cart + .button-add-to-cart {
    margin-left: 10px;
}

.button-add-to-cart .button-icon {
    margin-right: 5px;
}

.button-add-to-cart:hover {
    outline: none;
}

#cart-module-button.product-add-to-cart-box {
    margin-top: 32px;
    margin-bottom: 15px;
}

#cart-module-button .add-to-cart-btn {
    background-color: #ff5965;
    padding: 1rem 2.4rem;
    border-radius: var(--large-padding);
    color: var(--white);
}

.mini-cart-contain {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 300px;
    max-width: 380px;
    padding: 16px 0;
    display: none;
    z-index: 12;
}

.list-item-box {
    max-height: 300px;
    overflow-x: hidden;
    overflow-y: auto;
}

.mini-cart-list,
#cart-error {
    border-radius: 3px;
    box-shadow:  0 4px 8px -2px rgb(0 0 0 / 20%), 0 8px 12px 2px rgb(0 0 0 / 14%), 0 3px 15px 5px rgb(0 0 0 / 10%);
    background-color: #fff;
    min-height: 50px;
    position: relative;
}

#cart-error {
    padding: 10px 16px;
    text-align: center;
}

.mini-cart-list:after,
#cart-error::after {
    bottom: 100%;
    left: auto;
    right: 16px;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
    border-color: rgba(241, 241, 241, 0);
    border-bottom-color: #fff;
    border-width: 8px;
    margin-left: -8px;
}

.mini-cart-item  {
    padding: 7px 12px;
}

.mini-cart-item:first-child {
    border-radius: 3px 3px 0 0;
}

.mini-cart-item:last-child {
    border-radius: 0 0 3px 3px;
}

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

.mini-cart-item img {
    width: 64px;
    height: 64px;
}

.mini-cart-item .mini-cart-content {
    width: calc(100% - 64px);
    padding-left: 12px;
}

.mini-cart-head {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-weight: 400;
}

.mini-cart-info {
    margin-top: 7px;
    width: 100%;
    font-style: 16px;
}

.mini-cart-item .new-price {
    color: #C52C29;
    margin-right: auto;
    font-weight: 500;
}

.mini-cart-item .discount-price {
    display: block;
    font-size: 13px;
    color: black;
    font-weight: 400;
}

.quantity-mini-cart {
    margin-left: 7px;
}

.mini-cart-item .old-price {
    color: var(--gray);
    margin-left: 5px;
    text-decoration: line-through;
}

#cart-error > div {
    flex-direction: column;
}

#cart-error a {
    background-color: var(--primary);
    padding: 7px 10px;
    border-radius: 3px;
    color: #fff;
    margin-top: 16px;
    display: inline-block;
    user-select: none;
}

.mini-cart-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 10px;
    border-top: 1px solid #e1e1e1;
}

.list-item-box {
    padding-top: 15px;
}

.checkout-btn {
    padding: 7px 20px;
    border-radius: 32px;
    text-align: center;
    color: #fff;
    background-color: #ff3945
}

.checkout-btn:hover {
    color: #fff;
    background-color: #ec0b1a;
}

.checkout-btn svg {
    margin-right: 5px;
}


.continue-btn {
    position: absolute;
    top: 0;
    right: 0;
    color: var(--black);
    cursor: pointer;
    font-size: 19px;
    padding: 3px 7px;
    background-color: transparent;
    cursor: pointer;

}

/* mini shopping cart */
.mini-shopping-wrapper {
    width: 350px;
    position: fixed;
    bottom: 32px;
    right:  32px;
    background-color: #fff;
    transition: all 350ms ease-in-out;
    box-shadow:  0 8px 10px -5px rgb(0 0 0 / 20%), 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 10%);
    border-radius: 4px;
    padding: 16px;
    z-index: 999999999999;
    transition: all 350ms ease-in-out;
    transform: translateY(250%);
}

.mini-shopping-wrapper.active {
    transform: translateY(0);
}

.close-mini-shopping-cart {
    border: none;
    background-color: transparent;
    outline: none;
    position: absolute;
    top: 0;
    right: 0;
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.close-mini-shopping-cart:hover {
    color: var(--secondary)
}

.mini-shopping-cart-link {
    color: var(--primary);
    width: 100%;
}

.mini-shopping-cart-title div {
    font-weight: 600;
    margin-bottom: 8px;
}
.mini-shopping-cart-title span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    font-size: 13px;
    width: 100%;
}

.mini-shopping-cart-title small {
    color: var(--darkness);
    font-size: 75%;
}

.mini-shopping-cart-image-box {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.mini-shopping-cart-image {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.mini-shopping-cart-check {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 16px;
    height: 16px;
    border-radius: 16px;
    color: #fff;
    display: flex;
    background-color: #47cccc
}

.mini-shopping-cart-title {
    padding-left: 8px;
    padding-right: 8px;
    line-height: 1.3;
    width: calc(100% - 160px);
}

.view-cart-button {
    width: 100px;
    padding: 8px 0;
    text-align: center;
    margin-left: auto;
    color: #ff596f;
    font-size: 14px;
    border-radius: 25px;
    font-weight: 600;
}

.view-cart-button:hover {
    background-color: #f1f1f1
}

.mini-shopping-cart-bottom {
    background-color: #e7e4f7;
    color: #6551CC;
    font-size: 18px;
    border-radius: 5px;
    margin: 15px 0 0;
    padding: 8px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.loading-content {
    display: none;
}

.is-waiting {
    opacity: .6;
}

.is-waiting .js-add-to-cart-icon-loaded {
    display: none;
}

.is-waiting .loading-content {
    display: inline!important;
    padding: 0 4px;
}

.added-to-cart-content {
    display: none;
}

.add2basket-wrapper {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: flex-start;
    background-color: rgba(11, 11, 11, 0.7);
    z-index: 123;
}

.add2basket-wrapper.active {
    display: flex;
}

.add2basket-content {
    background-color: #fff;
    border-radius: 5px;
    padding: 0;
    max-width: 1000px;
    width: 100%;
    margin: 40px auto 0;
    max-height: 660px !important;
    overflow-y: auto;
    overflow-x: hidden;
    box-shadow: 0 8px 10px -5px rgb(0 0 0 / 20%), 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 10%);
    position: relative;
}

.md-add2basket-heading {
    font-size: 23px;
    font-weight: 500;
    padding: 16px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.2;
}

.md-add2basket-heading svg {
    min-width: 20px;
    width: 20px;
    height: 20px;
    margin-right: 8px;
    color: #198754
}

.md-add2basket-slide {
    position: relative;
    overflow: hidden;
    border-top: 1px solid #e1e1e1;
    padding-top: 16px;
    padding-bottom: 8px;
    margin-top: 16px;
}

.md-add2basket-slide-head {
    font-size: 19px;
    font-weight: 500;
    padding: 0 16px;
}

.md-add2basket-list {
    display: flex;
    padding: 0 16px;
    transition: transform 0.6s ease;
}

.md-product-title {
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    white-space: nowrap;
    -webkit-box-orient: vertical;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
}
.md-add2basket-price {
    font-weight: 500;
    display: flex;
    align-items: center;
    margin-top: 8px;
    justify-content: flex-start;
    flex-wrap: wrap;
    color: #C52C29;
}

.md-add2basket-price span {
    margin-right: 8px;
}

.md-add2basket-image {
    height: 170px;
    width: 100%;
    object-fit: contain;
}
.image-add-to-cart {
    height: 100%;
}

.md-add2basket-slider-control {
    position: absolute;
    display: none;
    align-items: center;
    justify-content: center;
    color: #313131;
    text-align: center;
    width: 36px;
    height: 36px;
    top: calc(50% - 18px);
    border-radius: 36px;
    background-color: #fff;
    box-shadow: 0 3px 4px -1px rgb(0 0 0 / 20%), 0 5px 10px 0px rgb(0 0 0 / 14%), 0 1px 12px 0px rgb(0 0 0 / 10%);
    cursor: pointer;
}

.md-add2basket-item {
    padding: 0 12px;
}

.md-add2basket-link {
    display: block;
    position: relative;
    margin-bottom: 8px;
    overflow: hidden;
}

.md-add2basket-link:before {
    content: "";
    padding-top: 100%;
    display: block;
}

.md-add2basket-link img {
    width: 100%;
    height: 100%;
    display: block;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    object-position: center;
    transition: transform 250ms ease-in-out;
}


.add2basket-item-box {
    --thumb: calc(120px + (240 - 120) * ((100vw - 300px) / (1920 - 300)));
    justify-content: center;
    display: flex;
    max-width: 660px;
    margin: 0 auto;
    width: 92%;
}

.add2basket-link {
    width: var(--thumb);
    position: relative;
    display: block;
    overflow: hidden;
}

.add2basket-link:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.add2basket-link img {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: contain;
    object-position: center;
    transition: 250ms ease-in-out;
}

.add2basket-item-detail {
    width: calc(100% - var(--thumb));
    padding-left: 16px;
    font-weight: 500;
}

.add2basket-price {
    display: block;
    font-size: 19px;
    color: #C52C29;
}

.add2basket-item-footer {
    margin-top: 16px;
}

.viewcart-button {
    border-radius: 4px;
    padding-top: 8px;
    padding-bottom: 8px;
    background: var(--pr-color-light); 
    color: var(--pr-color-primary);
}

.checkout-button {
    border-radius: 4px;
    background-color: #ff5965;
    color: #fff;
    padding-top: 8px;
    padding-bottom: 8px;
}


.viewcart-button:hover {
    background-color: var(--pr-color-primary);
    color: #fff;
}

.checkout-button:hover {
    background-color: #d6303c;
    color: #fff;
}



#mini-cart-header .mini-cart-action a.button {
    flex: 0 0 48%;
}

#add2basket-close {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 29px;
    cursor: pointer;
    user-select: none;
}

#add2basket-close:hover {
    color: #ff5965
}
.add2basket-wrapper .buymore-button {
    border-radius: 32px;
    background-color: #fff;
    color: var(--pr-color-dodgerblue);
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 32px;
    padding-right: 32px;
    line-height: 24px;
    border: 2px solid var(--pr-color-dodgerblue);
    margin-left: 10px;
}
.add2basket-wrapper .buymore-button:hover {
    background: var(--pr-color-dodgerblue);
    color: #fff;
}


.policies-box {
    margin-top: 24px;
    border-radius: 12px;
    background-color: #fff8ec;
    font-size: 13px;
    color: var(--black);
    display: grid;
    padding: var(--pr-radius-large);
    grid-gap: 16px;
}

.shipping-info-step {
    display: grid;
    grid-template-columns: 20px minmax(0,1fr);
    grid-gap: 0 4px;
    align-items: center;
    line-height: 1;
    font-size: 13px;
    font-weight: 400
}

.shipping-info-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    grid-row: 1/span 2;
    background-color: #fcacd3;
    background-repeat: no-repeat;
    background-position: center
}

.shipping-info-step:nth-child(1) .shipping-info-dot {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M10.3851 1.62101L9.05181 0.921312C7.88139 0.307104 7.29618 0 6.66667 0C6.03715 0 5.45194 0.307103 4.28153 0.92131L4.06705 1.03387L10.0157 4.43312L12.6935 3.09421C12.2627 2.60633 11.5676 2.24156 10.3851 1.62101Z' fill='white'/%3E%3Cpath d='M13.1656 3.97623L10.5 5.30902V7.33333C10.5 7.60948 10.2761 7.83333 10 7.83333C9.72386 7.83333 9.5 7.60948 9.5 7.33333V5.80902L7.16667 6.97568V13.2693C7.64528 13.1501 8.18984 12.8644 9.0518 12.412L10.3851 11.7123C11.8196 10.9596 12.5368 10.5832 12.9351 9.90684C13.3333 9.2305 13.3333 8.38889 13.3333 6.70566V6.62767C13.3333 5.3659 13.3333 4.57705 13.1656 3.97623Z' fill='white'/%3E%3Cpath d='M6.16667 13.2693V6.97568L0.167759 3.97623C0 4.57705 0 5.3659 0 6.62767V6.70566C0 8.38889 0 9.2305 0.398265 9.90684C0.796528 10.5832 1.51375 10.9596 2.94818 11.7123L4.28153 12.412C5.14349 12.8644 5.68805 13.1501 6.16667 13.2693Z' fill='white'/%3E%3Cpath d='M0.639795 3.09421L6.66667 6.10765L8.94077 4.9706L3.01638 1.58523L2.9482 1.62101C1.7657 2.24156 1.0706 2.60633 0.639795 3.09421Z' fill='white'/%3E%3C/svg%3E")
}

.shipping-info-step:nth-child(3) .shipping-info-dot {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 14 14' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M6.66667 0C4.15251 0 2.89543 0 2.11438 0.781049C1.40565 1.48978 1.34003 2.59046 1.33395 4.66667H0.666667C0.298477 4.66667 0 4.96514 0 5.33333V6C0 6.20984 0.0987961 6.40743 0.266667 6.53333L1.33333 7.33333C1.33941 9.40954 1.40565 10.5102 2.11438 11.219C2.27584 11.3804 2.45763 11.5085 2.66667 11.6101V12.6666C2.66667 13.0348 2.96514 13.3333 3.33333 13.3333H4.33333C4.70152 13.3333 5 13.0348 5 12.6666V11.9877C5.48471 12 6.03616 12 6.66667 12C7.29718 12 7.84863 12 8.33333 11.9877V12.6666C8.33333 13.0348 8.63181 13.3333 9 13.3333H10C10.3682 13.3333 10.6667 13.0348 10.6667 12.6666V11.6101C10.8757 11.5085 11.0575 11.3804 11.219 11.219C11.9277 10.5102 11.9939 9.40954 12 7.33333L13.0667 6.53333C13.2345 6.40743 13.3333 6.20984 13.3333 6V5.33333C13.3333 4.96514 13.0349 4.66667 12.6667 4.66667H11.9994C11.9933 2.59046 11.9277 1.48978 11.219 0.781049C10.4379 0 9.18082 0 6.66667 0ZM2.33333 5C2.33333 5.94281 2.33333 6.41421 2.62623 6.70711C2.91912 7 3.39052 7 4.33333 7H6.66667H9C9.94281 7 10.4142 7 10.7071 6.70711C11 6.41421 11 5.94281 11 5V3.33333C11 2.39052 11 1.91912 10.7071 1.62623C10.4142 1.33333 9.94281 1.33333 9 1.33333H6.66667H4.33333C3.39052 1.33333 2.91912 1.33333 2.62623 1.62623C2.33333 1.91912 2.33333 2.39052 2.33333 3.33333V5ZM2.83333 9.33333C2.83333 9.05719 3.05719 8.83333 3.33333 8.83333H4.33333C4.60948 8.83333 4.83333 9.05719 4.83333 9.33333C4.83333 9.60947 4.60948 9.83333 4.33333 9.83333H3.33333C3.05719 9.83333 2.83333 9.60947 2.83333 9.33333ZM10.5 9.33333C10.5 9.05719 10.2761 8.83333 10 8.83333H9C8.72386 8.83333 8.5 9.05719 8.5 9.33333C8.5 9.60947 8.72386 9.83333 9 9.83333H10C10.2761 9.83333 10.5 9.60947 10.5 9.33333Z' fill='white'/%3E%3C/svg%3E")
}

.shipping-info-step:nth-child(5) .shipping-info-dot {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 13 14' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.67099 3.1766C3.67093 3.17329 3.6709 3.16998 3.6709 3.16667V2.5C3.6709 1.11929 4.79019 0 6.1709 0C7.55161 0 8.6709 1.11929 8.6709 2.5V3.16667C8.6709 3.16998 8.67087 3.17329 8.6708 3.1766C9.52896 3.20236 10.0541 3.29493 10.455 3.62765C11.0104 4.08863 11.1567 4.86892 11.4493 6.42951L11.9493 9.09618C12.3608 11.2906 12.5665 12.3879 11.9667 13.1106C11.3669 13.8333 10.2506 13.8333 8.01785 13.8333H4.32393C2.09122 13.8333 0.974867 13.8333 0.375055 13.1106C-0.224756 12.3879 -0.0190248 11.2906 0.392437 9.09618L0.892437 6.42951C1.18505 4.86892 1.33135 4.08863 1.8868 3.62765C2.2877 3.29493 2.81282 3.20235 3.67099 3.1766ZM4.6709 2.5C4.6709 1.67157 5.34247 1 6.1709 1C6.99933 1 7.6709 1.67157 7.6709 2.5V3.16667C7.6709 3.16667 7.6709 3.16666 7.6709 3.16667C7.62072 3.16665 7.56971 3.16667 7.51785 3.16667H4.82393C4.77208 3.16667 4.72107 3.16667 4.6709 3.16668C4.6709 3.16668 4.6709 3.16669 4.6709 3.16668V2.5ZM8.48323 6.44292C8.69887 6.61542 8.73383 6.93007 8.56132 7.1457L5.89465 10.479C5.80581 10.5901 5.67387 10.6581 5.53187 10.6659C5.38987 10.6738 5.25123 10.6208 5.15067 10.5202L3.81733 9.1869C3.62207 8.99164 3.62207 8.67506 3.81733 8.4798C4.0126 8.28454 4.32918 8.28454 4.52444 8.4798L5.46254 9.4179L7.78045 6.521C7.95296 6.30537 8.2676 6.27041 8.48323 6.44292Z' fill='white'/%3E%3C/svg%3E")
}

.shipping-info-step.is-active .shipping-info-dot {
    background-color: #a7165c
}

.shipping-info-date {
    padding-left: 0;
    color: #444;
    font-size: 11px;
    white-space: nowrap;
}

.shipping-info-line {
    width: 22px;
    height: 1px;
    background: linear-gradient(90deg,#fff8ec 0,#a7165c 100%);
    flex: 1;
    margin: 18px 4px 0;
    min-width: 10px
}

.shipping-info-timeline {
    display: flex;
    align-items: flex-start;
    grid-gap: 0;
    margin-top: 6px;
}

.shipping-info-label {
    font-weight: 500;
    color: #000;
    line-height: 1.4;
}

.shipping-info-step.is-active .shipping-info-date {
    color: #444
}

.product-row-text {
    grid-gap: 2px;
}

.product-detail-row.product-delivery img,
.product-row-text > img {
    width: 32px;
    min-width: 32px;
    height: 32px;
    object-fit: contain;
}

.protection-box,
.product-detail-row.product-delivery {
    padding: 0;
    font-size: 15px;
    grid-gap: 8px;
}

@media (min-width: 1179px) {
    .great-taste {
        font-size: 14px;
        line-height: 1.2;
        text-align: center;
        margin-top: 15px;
    }

    .cart-right-wrapper .footer-payments-list {
        margin-top: 10px;
    }
}

@media (max-width: 760px) {
    .add2basket-wrapper .buymore-button {
        width: 100%!important;
        text-align: center;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 15px;
        margin-top: 10px;
        margin-left: 0;
    }
}
@media (min-width: 1181px) {
    .md-add2basket-link:hover img,
    .add2basket-link:hover img {
        transform: scale(1.45);
    }
}
@media (max-width: 1025px) {
    .md-add2basket-list {
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
    }

    .add2basket-content {
        width: 90%;
    }

    .add2basket-top {
        padding: 0 16px
    }

    .md-add2basket-heading {
        padding: 16px 0;
        font-size:18px;
    }
}

@media (max-width: 992px) {
    .mini-cart-contain {
        max-width: 280px;
    }

    .mini-shopping-wrapper {
        width: calc(100% - 64px);
        max-width: 360px;
    }


    .md-add2basket-heading {
        margin-bottom: 0;
    }
}

@media (max-width: 760px) {
    .mini-cart {
        position: static;
    }

    .mini-cart-contain {
        max-width: 300px;
        left: calc((100vw - 300px) / 2)
    }

    .addtocart-action-wrapper {
        position: sticky;
        top: 0;
        left: 0;
        right: 0;
        box-shadow: 0 1px 1px -1px rgb(0 0 0 / 15%), 0 1px 2px 0px rgb(0 0 0 / 15%), 0 1px 4px 0px rgb(0 0 0 / 15%);
    }

    .product-info-content-wrapper {
        position: relative;
        z-index: auto;
    }

    .mini-shopping-wrapper {
        width: 320px;
        left: calc(50% - 160px);
        right: auto;
        top: -1000px;
        bottom: auto;
        padding-left: 8px;
        padding-right: 8px;
    }

    .mini-shopping-wrapper.active {
        top: 75px;
        bottom: auto;
    }

    .view-cart-button {
        width: 70px;
        font-weight: 500 !important;
    }

    .mini-shopping-cart-title {
        width: calc(100% - 130px)
    }

    .mini-shopping-cart-title div {
        font-weight: 500 !important;
    }

    .product-gallery-item {
        height: calc(100vw - 30px)
    }


    .md-add2basket-image {
        height: 150px
    }

    .add2basket-top .md-add2basket-image {
        height: 100%
    }

    .add2basket-item-box {
        width: 100%;
    }

    .add2basket-item-footer .checkout-button {
        width: 100% !important;
        text-align: center;
        padding-left: 12px;
        padding-right: 12px;
        font-size: 15px;
    }

    .md-add2basket-item {
        min-width: 170px;
        width: 170px;
    }
}

@media (min-width: 767px) {
    .addtocart-action-wrapper {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    #cart-module-content .shopcart-image {
        width: 75px;
        height: 75px;
    }

    #cart-module-content .shopcart-info {
        width: calc(100% - 75px)
    }

    #cart-module-content .shopcart-content .shopcart-price,
    #cart-module-content .shopcart-content .shopcart-qty {
        padding-left: 0;
    }

    #cart-module-content .shopcart-content .shopcart-qty {
        margin-left: auto;
    }

    #cart-module-content .shopcart-action {
        width: 30px;
    }
}

@media (max-width: 860px) and (orientation:landscape) {
    .add2basket-content {
        max-height: 320px;
    }


    .addtocart-action-wrapper .button-add-to-cart {
        border-radius: 32px;;
    }

    .addtocart-action-wrapper {
        padding: 16px
    }
}
@media (width: 768px) {

    .mini-shopping-wrapper {
        width: 350px;
        top: -1000px;
        bottom: auto;
    }

    .mini-shopping-wrapper.active {
        top: 35px;
        bottom: auto;
    }
}
#mini-cart-header {
    display: block !important;
}
/*Sidebar Mini cart*/
#mini-cart-header .mini-cart-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    pointer-events: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    overflow: hidden !important;
    justify-content: center;
    align-items: flex-end;
    z-index: 1000000000;    
    transition: var(--pr-trans-standard);
}
#mini-cart-header .overlay-mini-cart-wrapper {
    position: fixed;
    background-color: rgba(140, 149, 165, 0.6);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9;
}
#show-mini-cart-wrapper:checked ~ #mini-cart-header .mini-cart-wrapper {
    pointer-events: all;
    opacity: 1;
    transition: var(--pr-trans-standard);
}
#mini-cart-header .mini-cart-wrapper.mini-cart-wrapper-not-add .mini-cart-drawer{
    --minicart: 67px;
}
#mini-cart-header .mini-cart-wrapper.mini-cart-wrapper-not-add .mini-cart-top .mini-cart-action {
    display: none;
}
#mini-cart-header .mini-cart-wrapper.mini-cart-wrapper-not-add .mini-cart-top {
    padding-top: 27px;
}
#mini-cart-header .mini-cart-wrapper.mini-cart-wrapper-not-add .mini-cart-top .mini-cart-title {
    display: none;
}
#mini-cart-header .mini-cart-drawer {
    --minicart: 370px;
    --multiItem: calc(var(--minicart) * 1.5);
    box-shadow: var(--pr-shadow-700);
    background: var(--pr-color-white);
    -webkit-overflow-scrolling: touch;
    min-height: 100%;
    height: 100%;
    max-width: 100%;
    width: auto;
    color: var(--pr-color-primary);
    max-width: 33%; 
    transform: translateX(100%);
    transition: var(--pr-trans-standard);
    z-index: 99;
}


#show-mini-cart-wrapper:checked ~ #mini-cart-header .mini-cart-wrapper .mini-cart-drawer {
    transform: translateX(0);
    transition: var(--pr-trans-standard);
}

#mini-cart-header .mini-cart-padding {
    width: 480px;
    max-width: 100%;
    transform: translateZ(0);
    position: relative;
    height: 100%;
    padding: var(--pr-spacing-05) 0;
    display: flex;
    flex-direction: column;
    gap: var(--pr-spacing-07);
}
#mini-cart-header .mini-cart-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    padding: var(--pr-spacing-05);
}
#mini-cart-header .mini-cart-close label {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 50%;
    padding: 0;
    width: 32px;
    height: 32px;
    min-width: 32px;
    min-height: 32px;
    color: var(--pr-color-primary);
    background: var(--pr-color-flash);   
    cursor: pointer; 
    padding: 4px;
}
#mini-cart-header .mini-cart-close button svg {
    max-height: 100%;
    max-width: 100%;
    overflow: hidden;
    pointer-events: none;
    vertical-align: bottom;
    width: 24px;
    height: 24px;
}

#mini-cart-header .mini-cart-title span {
    margin: 0;
    padding: 0;
    border: 0;
    vertical-align: baseline;
    display: inline;
    max-width: 100%;
    font-size: var(--pr-font-size-display2);
    line-height: var(--pr-line-height-display2);
    font-weight: var(--pr-font-weight-display3);
    color: var(--pr-color-primary);
    padding: 0 var(--pr-spacing-07);
}
#mini-cart-header .item-summary .item-summary-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
#mini-cart-header .mini-cart-top .item-summary .item-summary-product {
    padding: 0 var(--pr-spacing-07);
}

.split-button-sidebar {
    padding: 0 var(--pr-spacing-07);
}

.split-button-sidebar .line {
    position: relative;
    text-align: center;
    padding: 12px 0 0;
}

.split-button-sidebar .line:before {
    content: "";
    background: #fff;
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    border-bottom: 1px solid #e1e1e1
}

.split-button-sidebar .line span {
    background: #fff;
    position: relative;
    z-index: 2;
    padding: 0 16px;
    color: #595959
}

.split-button-sidebar-content {
    display: flex;
    align-items: center;
    grid-gap: 12px;
    margin-bottom: 12px;
}

.split-button-sidebar-content #payment-request-button-sidebar {
    width: 100%;
}

.split-button-sidebar-content #paypal-button-container-sidebar {
    width: 100%;
    display: flex;
}

.split-button-sidebar-content #paypal-button-container-sidebar:empty,
.split-button-sidebar-content #payment-request-button-sidebar:empty {
    display: none;
}

#mini-cart-header .mini-cart-top .mini-cart-action {
    padding: 0 var(--pr-spacing-07);

}
#mini-cart-header .mini-cart-top .item-summary .item-summary-product {
    padding: var(--pr-spacing-03) var(--pr-spacing-07);
}

#mini-cart-header .item-summary .item-summary-image {
    margin-right: var(--pr-spacing-05);
    position: relative;
}
#mini-cart-header .item-summary .item-summary-image span {
    position: absolute;
    top: 0px;
    left: 0px;
    color: #47cccc !important;
}
#mini-cart-header .item-summary .item-summary-image span svg {
    width: 24px;
    height: 24px;
    background: #fff;
    border-radius: 100%;
}
#mini-cart-header .item-summary .item-summary-image img {
    width: 80px;
    height: 80px;
    border-radius: var(--pr-radius-small);
}
#mini-cart-header .item-summary-info .title-product {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: var(--pr-font-size-body);
    line-height: var(--pr-line-height-body);
    font-weight: var(--pr-font-weight-heading);
    display: block;
}
#mini-cart-header .item-summary-info .variant-product {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: var(--pr-font-size-display6);
    line-height: var(--pr-line-height-display7);
    font-weight: var(--pr-font-weight-body);
    display: block;
}
#mini-cart-header .item-summary-info .price-product {
    display: block;
}
#mini-cart-header .item-summary-info .price-product b {
    font-size: var(--pr-font-size-body);
    line-height: var(--pr-line-height-body);
    font-weight: var(--pr-font-weight-heading);
    color: var(--pr-color-price);
}

#mini-cart-header .item-summary-info .price-product del {
    margin-left: 5px;
    font-size: var(--pr-font-size-display6);
    line-height: var(--pr-line-height-display6);
    font-weight: var(--pr-font-weight-body);
    color: var(--pr-color-price-compare);
}
#mini-cart-header .item-summary-info .qty-product {
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: var(--pr-font-size-display6);
    line-height: var(--pr-line-height-display7);
    font-weight: var(--pr-font-weight-body);
    display: block;
}
#mini-cart-header .mini-cart-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    gap: 12px;
    margin-top: auto;
    flex-wrap: wrap;
}
#mini-cart-header .mini-cart-action a {
    text-align: center;
    text-transform: capitalize;
    font-weight: var(--pr-font-weight-heading);
    padding: 8px 10px;
    line-height: 24px;
    width: 100%;
}

#mini-cart-header .mini-cart-action a.buymore-button {
    text-decoration: underline;  
    border-radius: 32px;
    color: var(--pr-color-primary); 
}
#mini-cart-header .mini-cart-action a.buymore-button:hover {
    background: #fff;
    color: var(--pr-color-secondary);   
}
.mini-cart-wrapper .you-may-also-like-block .border-top,
#mini-cart-header .mini-cart-wrapper .all-item-cart-block .border-top {
    border-top: 1px solid #f2f2f6;
    margin: 0 0 var(--pr-spacing-05);
}
#mini-cart-header .mini-cart-wrapper .you-may-also-like-block .border-top {
    margin-top: var(--pr-spacing-09);
}
.mini-cart-wrapper .you-may-also-like-block .you-may-also-like-title,
#mini-cart-header .mini-cart-wrapper .all-item-cart-block .all-item-cart-title {
    font-size: var(--pr-font-size-display3);
    line-height: var(--pr-line-height-display3);
    font-weight: 500;
    margin-bottom: var(--pr-spacing-05);
}
.mini-cart-wrapper .you-may-also-like-block .product-grid,
#mini-cart-header .mini-cart-wrapper .all-item-cart-block .product-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.mini-cart-wrapper .you-may-also-like-block .product-grid .product-item,
#mini-cart-header .mini-cart-wrapper .all-item-cart-block .product-grid .product-item {
    min-width: calc((100% + 24px)/2.25 - 4px);
    width: calc((100% + 24px)/2.25 - 4px);
    margin-bottom: var(--pr-spacing-05);
}
.mini-cart-wrapper .you-may-also-like-block {
    padding-left: var(--pr-spacing-07);
    padding-right: var(--pr-spacing-07);
}
#mini-cart-header .product-grid.item-summary {
    gap: var(--pr-spacing-05);
    margin-bottom: var(--pr-spacing-05);
}
#mini-cart-header .product-item-wrapp .product-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    border-radius: var(--pr-radius-small);
}
.product-item-wrapp .product-image img{
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    text-align: center;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.item-summary-product .item-summary-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
#mini-cart-header .product-item-wrapp .product-info {
    padding: var(--pr-spacing-04) 0;
}
#mini-cart-header .product-item-wrapp .product-info .product-title {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: var(--pr-font-size-display6);
    line-height: var(--pr-line-height-display6);
    font-weight: 500;
}
#mini-cart-header .product-item-wrapp .product-info .product-name-desgin {
    display: block;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-size: var(--pr-font-size-display6);
    line-height: var(--pr-line-height-display6);
    font-weight: var(--pr-font-weight-body);
}
#mini-cart-header .product-item-wrapp .product-info .minicart-product-price {
    display: block;    
}
#mini-cart-header .product-item-wrapp .product-info .minicart-product-price b {
    font-size: var(--pr-font-size-body);
    line-height: var(--pr-line-height-body);
    font-weight: var(--pr-font-weight-heading);
    color: var(--pr-color-price);
}
#mini-cart-header .product-item-wrapp .product-info .minicart-product-price del {
    margin-left: 5px;
    font-size: var(--pr-font-size-display6);
    line-height: var(--pr-line-height-display6);
    font-weight: var(--pr-font-weight-body);
    color: var(--pr-color-price-compare);
}

#mini-cart-header .mini-cart-wrapper .all-item-cart-container {
    display: flex;
    overflow: hidden;
    transition: var(--pr-trans-standard);
    position: relative;
    flex-direction: column;
    padding: 0 var(--pr-spacing-07);
}
#mini-cart-header .mini-cart-wrapper .all-item-cart-container:not(.extra-content) {
    cursor: default;
    user-select: none;
    overflow: hidden;
    height: 150px;
}
#mini-cart-header .mini-cart-wrapper .all-item-cart-container.extra-content .product-grid {
    height: fit-content;
    height: -moz-fit-content;
}
#mini-cart-header #all-item-cart-product-grid:checked ~ .product-grid {
    pointer-events: all;
    opacity: 1;
    display: flex;
    height: auto;
    transition: var(--pr-trans-standard);
}
#mini-cart-header .mini-cart-wrapper .all-item-cart-container:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 300ms ease-in-out;
}

#mini-cart-header .mini-cart-wrapper .all-item-cart-container.extra-content:after {
    opacity: 0;
}

#mini-cart-header .mini-cart-wrapper .all-item-cart-container.only-item:after {
    content: none;
}
#mini-cart-header .mini-cart-wrapper .cart-more-item .cart-less-text {
    display: none;
}
#mini-cart-header .mini-cart-wrapper .cart-more-item .cart-more-text {
    display: block;
}
#mini-cart-header #all-item-cart-product-grid:checked ~ .cart-more-item {
    position: relative;
    bottom: 0;
}
#mini-cart-header #all-item-cart-product-grid:checked ~ .cart-more-item .cart-more-text {
    display: none;
}
#mini-cart-header #all-item-cart-product-grid:checked ~ .cart-more-item .cart-less-text {
    display: block;
}
/*Hidden background after only item cart*/
/* #mini-cart-header .mini-cart-wrapper .all-item-cart-container:has(.item-summary-product:only-child):after {
    display: none;
}

#mini-cart-header .mini-cart-wrapper .all-item-cart-container:has(.item-summary-product:only-child) {
    height: auto;
}
#mini-cart-header .mini-cart-wrapper .all-item-cart-container:has(.item-summary-product:only-child) ~ .cart-more-item {
    display: none;
} */

/*End*/
#mini-cart-header .mini-cart-wrapper.mini-cart-wrapper-not-add .all-item-in-cart-wrapper .mini-cart-action {
    display: flex;
}
#mini-cart-header .all-item-in-cart-wrapper .mini-cart-action {
    display: none;
}
#mini-cart-header #all-item-cart-product-grid:checked ~ .product-grid:after {
    content: none;
}
.mini-cart-wrapper .all-item-cart-block .all-item-cart-title label{
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.mini-cart-wrapper .all-item-cart-block .all-item-cart-title label .icon{
    transition: var(--pr-trans-standard);
}
#mini-cart-header .mini-cart-wrapper .all-item-cart-block:has(#all-item-cart-product-grid:checked) .all-item-cart-title label .icon {
    transform: rotate(-180deg);
    transition: var(--pr-trans-standard);
}
body:has(#show-mini-cart-wrapper:checked) {
    overflow: hidden;
}
#mini-cart-header .mini-cart-top {
    position: sticky;
    padding: 0;
    top: 0;
    left: 0;
    z-index: 9;
    background: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* #mini-cart-header .mini-cart-top:has(.item-summary-product:only-child) {
    height: var(--minicart);
} */

#mini-cart-header .mini-cart-top .item-summary {
    max-height: calc(var(--multiItem) - 32px - 42px - 24px);
    position: relative;
    overflow-y: auto;
}

#mini-cart-header .mini-cart-top .list-add-item {
    display: flex;
    flex-direction: column;
    gap: var(--pr-spacing-05)
}

#mini-cart-header .mini-cart-bottom {
    overflow-y: auto;
}
#mini-cart-header .mini-cart-bottom > *:not(.cart-buy-more-sidebar) {
    border-top: 1px solid #f2f2f6;
    padding-top: var(--pr-spacing-05);
    position: relative;
}
#mini-cart-header .mini-cart-bottom > .cart-buy-more {
    border: none;
}

#mini-cart-header .mini-cart-bottom > *:nth-child(n + 2) {
    margin-top: var(--pr-spacing-05);
}


/* #mini-cart-header .mini-cart-top:has(.item-summary-product:only-child) + .mini-cart-bottom {
    height: calc(100vh - var(--minicart));
} */
#mini-cart-header .gift-card-box {
    background: var(--pr-color-information-100);
    padding: var(--pr-spacing-04);
    border-radius: var(--pr-radius-x-small);
    text-align: center;
    margin-bottom: var(--pr-spacing-05);
}

#mini-cart-header .gift-card-box a {
    font-weight: var(--pr-font-weight-heading);
    color: var(--pr-color-primary);
}
#mini-cart-header .gift-card-box a:hover {
    color: var(--pr-color-secondary);
}
.no-item-cart-wrapper .no-items-cart {
    text-align: center;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.no-item-cart-wrapper .empty-image {
    width: 80px;
    height: 80px;
    border-radius: 3px;
    margin: 0 var(--pr-spacing-05) 0 0;
}
.no-item-cart-wrapper .empty-content {
    flex: 1 1 0%;
    min-width: 0px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.no-item-cart-wrapper .empty-content > * {
    border-radius: 3px;
}

.empty-desc,
.empty-location {
    height: 18px;
}

.empty-header {
    height: 24px;
    width: 100%;
}

.empty-price {
    height: 26px;
    width: 100px;
}

.empty-loading {
    display: block;
    background: linear-gradient(45deg, rgba(209,209,209,0.35), rgba(11,11,11,0.1), rgba(209,209,209,0.1), rgba(209,209,209,0.15));
	background-size: 400% 400%;
    animation: gradient 3000ms ease infinite;
    user-select: none;
    pointer-events: none;
    border-radius: var(--borderRadius);
    overflow: hidden;
}
@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}

.all-item-cart-container {
    position: relative;
}
.cart-more-item {
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    display: flex;
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.cart-more-item span {
    position: relative;
    z-index: 2;
    user-select: none;
    padding: var(--pr-spacing-03) var(--pr-spacing-05);
    cursor: pointer;
    user-select: none;
    font-size: var(--pr-font-size-display6);
    font-weight: var(--pr-font-weight-heading);
    color: var(--pr-color-primary);
    transition: var(--pr-trans-standard);
}

.quantity-badge {
    width: 24px;
    height: 24px;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 24px;
    color: #fff;
    background-color: var(--pr-color-secondary);
    position: absolute;
    top: -8px;
    left: -10px;
    box-shadow: 0 2px 4px rgba(11 11 11 / 22%);
    user-select: none;
    z-index: 2;
}

#mini-cart-header .related-items .product-item.preview-product-item.generating {
    pointer-events: none;
    position: relative;
}

#mini-cart-header .related-items .product-item.preview-product-item.generating::after {
    content: "";
    display: block;
    background-color: black;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0.25;
}

#mini-cart-header .related-items .product-item.preview-product-item .search-loading {
    display: none;
}

#mini-cart-header .related-items .product-item.preview-product-item.generating .search-loading {
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    z-index: 999;
    display: block;
}

@media (max-width: 1366px) and (orientation: portrait) {
    #mini-cart-header .mini-cart-drawer {
        max-width: 50vw;
        width: 50vw;
    }
    #mini-cart-header .mini-cart-padding {
        width: 100%;
    }
}
@media (max-width: 1366px) and (orientation: landscape) {
    #mini-cart-header .mini-cart-drawer {
        max-width: 40vw;
        width: 40vw;
    }
    #mini-cart-header .mini-cart-padding {
        width: 100%;
    }
}



@media (max-width: 767px)  {
    #mini-cart-header .mini-cart-drawer {
        max-width: 90vw;
        width: 90vw;
    }
    #mini-cart-header .gift-card-box {
        font-size: var(--pr-font-size-display6);
    }
    #mini-cart-header .mini-cart-action a.button {
        flex: 0 0 47%;
        font-size: 14px;
    }
    #mini-cart-header .mini-cart-action a.buymore-button {
        font-size: 14px;
    }
    #mini-cart-header .mini-cart-action {
        gap: 0;
    }
    #mini-cart-header .mini-cart-padding {
        gap: 12px;
    }

    #mini-cart-header .mini-cart-top .item-summary {
        margin-top: 6px;
    }
}


@media (width: 412px) and (height: 823px) {
    .mini-cart-wrapper .you-may-also-like-block {
        padding: 0 16px !important;
    }
    .mini-cart-wrapper .you-may-also-like-block .product-grid {
        gap: 10px !important;
    }
    .mini-cart-wrapper .you-may-also-like-block .product-grid .product-item {
        min-width: 160px !important;
    }
}