.custom-mini-cart {
    position: relative;
    display: inline-flex;
}

.custom-mini-cart__trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
}

.custom-mini-cart__label {
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    font-family: "Wix Madefor Display", sans-serif;
}

.custom-mini-cart__label:hover {
    color: #F36D21;
}

.custom-mini-cart__icon svg {
	display: block;
}


.custom-mini-cart__icon svg path {
    transition: .2s ease;
    fill: #fff;
}

.custom-mini-cart__dropdown.is-visible ~ .custom-mini-cart__trigger .custom-mini-cart__icon svg path,
.custom-mini-cart:has(.custom-mini-cart__dropdown.is-visible) .custom-mini-cart__icon svg path {
    fill: #f36d21;
}

.custom-mini-cart__icon svg {
	width: 30px;
	height: 30px;
}

.custom-mini-cart button:hover,
.custom-mini-cart button:focus,
.custom-mini-cart a:hover,
.custom-mini-cart a:focus,
.custom-mini-cart [type=button]:hover,
.custom-mini-cart [type=button]:focus,
.custom-mini-cart [type=submit]:hover,
.custom-mini-cart [type=submit]:focus {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
}

.custom-mini-cart__dropdown {
    position: absolute;
    top: calc(100% + 16px);
    right: 0;
    width: 100%;
    max-width: 414px;
    min-width: 414px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0px 0px 16px 0px #0000001F;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px) scale(.96);
transform-origin: top right;

transition:
    opacity .25s ease,
    visibility .25s ease,
    transform .35s cubic-bezier(.22, 1, .36, 1);
    z-index: 99999;
    
}

.custom-mini-cart__dropdown.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.custom-mini-cart__content {
    padding: 16px;
}

.custom-mini-cart__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 16px;
}

.custom-mini-cart__head strong {
    font-size: 18px;
    color: #080808;
    font-weight: 700 !important;
    margin: 0;
}

.custom-mini-cart__close {
    width: 24px;
    height: 24px;
    min-width: 24px;
    padding: 0;
    border: 0;
    background: transparent !important;
    cursor: pointer;
    font-size: 30px;
    line-height: 1;
    color: #CECECE;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-mini-cart__shipping {
    margin-bottom: 24px;
}

.custom-mini-cart__shipping div {
    font-size: 14px;
    margin-bottom: 5px;
    color: #111;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
    text-align: center;
}

.custom-mini-cart__shipping > span {
    display: block;
    width: 100%;
    height: 4px;
    border-radius: 999px;
    background: #ededed;
    overflow: hidden;
}

.custom-mini-cart__shipping span i {
    display: block;
    height: 100%;
    background: #232F3E;
    border-radius: inherit;
}

.custom-mini-cart__item {
    display: flex;
    gap: 14px;
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.custom-mini-cart__image img {
    width: 96px;
    height: 96px;
    object-fit: cover;
    border-radius: 14px;
}

.custom-mini-cart__info {
    flex: 1;
}

.custom-mini-cart__info strong {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 0px;
    font-weight: 700;
    color: #080808;
}

.custom-mini-cart__price {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    font-weight: 700;
}

.custom-mini-cart__qty {
    font-size: 14px;
    color: #666;
    margin: 8px 0;
}

.custom-mini-cart__remove {
    position: absolute;
    right: 0;
    bottom: 20px;
    text-decoration: none;
    color: #111;
    font-size: 20px;
}

.custom-mini-cart__remove,
.custom-mini-cart__remove:visited {
    color: #cecece !important;
    transition: .2s ease;
}

.custom-mini-cart__remove:hover,
.custom-mini-cart__remove:focus {
    color: #F36D21 !important;
}

.custom-mini-cart a.custom-mini-cart__remove:hover svg path {
    fill: #F36D21 !important;
}

.custom-mini-cart a.custom-mini-cart__remove svg path {
    fill: #CECECE;
    transition: .2s ease;
}


.custom-mini-cart__footer strong {
    font-size: 22px;
}

.custom-mini-cart__shipping div {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.custom-mini-cart__shipping strong {
    background: transparent;
    padding: 0;
    margin: 0;
    font-weight: 600;
}

.custom-mini-cart__shipping .amount {
    background: transparent;
    padding: 0;
}

.custom-mini-cart__summary-count {
    text-align: right;
    font-size: 15px;
    color: #7d7d7d;
    margin-top: 0px;
    margin-bottom: 0px;
}

.custom-mini-cart__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin: 8px 0;
}

.custom-mini-cart__footer > span {
    font-size: 20px;
    font-weight: 700;
    color: #080808;
}

.custom-mini-cart__totals {
    display: flex;
    align-items: center;
    gap: 10px;
}

.custom-mini-cart__totals del {
    font-size: 12px;
    color: #9C9C9C;
}

.custom-mini-cart__totals strong {
    font-size: 20px;
    line-height: 1;
    color: #080808;
}

.custom-mini-cart__saved {
    height: 36px;
    border-radius: 999px;
    background: #D3D5D8;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    margin-bottom: 24px;
}

.custom-mini-cart__saved span,
.custom-mini-cart__saved strong {
    font-size: 16px;
    color: #080808;
    font-weight: 600;
}

.custom-mini-cart__buttons {
    display: flex;
    gap: 16px;
}

.custom-mini-cart__buttons a {
    flex: 1;
    height: 42px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.custom-mini-cart__buttons a:first-child {
    background: #1f2b3f;
    color: #fff;
}

.custom-mini-cart__buttons a:last-child {
    background: #f36d21;
    color: #fff;
}

.custom-mini-cart__buttons a:first-child:hover {
    background: #F36D21 !important;
    color: #fff !important;
    font-size: 16px;
}

.custom-mini-cart__buttons a:last-child:hover {
    background: #1f2b3f !important;
    color: #fff !important;
    font-size: 16px;
}

.custom-mini-cart__price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

.custom-mini-cart__price-wrap del {
    font-size: 12px;
    color: #9C9C9C;
    line-height: 1;
}

.custom-mini-cart__price-wrap del,
.custom-mini-cart__price-wrap del .amount,
.custom-mini-cart__price-wrap del bdi {
    display: flex;
    align-items: center;
    line-height: 1;
}

.custom-mini-cart__price-wrap strong {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #080808;
}

.custom-mini-cart__price-wrap > span {
    height: 15px;
    padding: 0 8px;
    border-radius: 999px;
    background: #F36D21;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-mini-cart__saved-product {
    display: inline-flex;
    align-items: center;
    height: 30px;
    padding: 2px 8px;
    border-radius: 999px;
    background: #E9EAEC;
    font-size: 12px;
    font-weight: 600;
    color: #232F3E;
    gap: 8px;
}

.custom-mini-cart__dropdown {
    overflow: hidden;
}

.custom-mini-cart__content {
    display: flex;
    flex-direction: column;
    max-height: 70vh;
}

.custom-mini-cart__items {
    overflow-y: auto;
    padding-right: 6px;
    flex: 1;
    min-height: 0;
}

.custom-mini-cart__info strong a {
    color: inherit;
    text-decoration: none;
    font-weight: 700;
}

.custom-mini-cart__info strong a:hover {
    color: #F36D21 !important;
    font-weight: 700;
}

.custom-mini-cart__trigger {
    position: relative;
}

.custom-mini-cart__count {
    position: absolute;
    top: -6px;
    right: -10px;
    min-width: 20px;
    height: 20px;
    padding: 0 6px;
    border-radius: 999px;
    background: #F36D21;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.custom-mini-cart__shipping svg {
	width: 16px;
	height: 16px;
	min-width: 16px;
}

@media (max-width: 767px) {

	.custom-mini-cart__dropdown {
		position: fixed;
		top: 77px;
		right: 0;
		left: 0;
		width: 100vw;
		min-width: 100vw;
		max-width: 100vw;
		height: calc(100vh - 75px);
		border-radius: 0;
		transform: translateY(100%);
		border-radius: 16px;
overflow: hidden;
	}

	.custom-mini-cart__dropdown.is-visible {
		transform: translateY(0);
	}

	.custom-mini-cart__content {
		height: 100%;
		max-height: 100%;
	}
	
.custom-mini-cart__remove svg {
	width: 16px !important;
	height: 16px !important;
}
.custom-mini-cart__shipping svg {
	width: 16px !important;
	height: 16px !important;
}

}