/* =========================
   VIPPhone Cart Popup
========================= */

.vip-cart-popup {
	position: fixed;
	inset: 0;
	z-index: 999999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	transition:
	opacity 0.3s ease,
	visibility 0.3s ease;
}

.vip-cart-popup.is-open {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
}

.vip-cart-popup__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.55);
	cursor: pointer;
}

.vip-cart-popup__box {
	position: relative;
	z-index: 2;
	display: block; 
	width: min(1340px, 85vw);
	max-height: calc(100vh - 60px);
	overflow: auto;
	background: #fff;
	box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
	transform: translateY(20px) scale(0.98);
	transition: transform 0.3s ease;
}

.vip-cart-popup.is-open .vip-cart-popup__box {
	transform: translateY(0) scale(1);
}

.vip-cart-popup-content{ 
    display: flex;
    justify-content: space-between;
    align-content: center;
    align-items: center;
}
/* Close button */

.vip-cart-popup__close {
	position: absolute;
	top: 20px;
	right: 20px;
	z-index: 10;
	width: 40px;
	height: 40px;
	padding: 0;
	border: none !important;
	background: transparent !important;
	cursor: pointer;
}

.vip-cart-popup__close span {
	position: absolute;
	top: 19px;
	left: 5px;
	width: 30px;
	height: 2px;
	background: #111;
	transition: transform 0.2s ease;
}

.vip-cart-popup__close span:first-child {
	transform: rotate(45deg);
}

.vip-cart-popup__close span:last-child {
	transform: rotate(-45deg);
}

.vip-cart-popup__close:hover span:first-child {
	transform: rotate(135deg);
}

.vip-cart-popup__close:hover span:last-child {
	transform: rotate(45deg);
}

/* Columns */

.vip-cart-popup__left,
.vip-cart-popup__right {
	min-width: 0;
	padding: 50px 60px;
}

.vip-cart-popup__left {
	border-right: 1px solid #dedede;
	text-align: center;
}

.vip-cart-popup__right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

/* Left content */

.vip-cart-popup__success-title {
	margin: 0 0 25px;
	color: #343740;
	font-size: clamp(25px, 2vw, 36px);
	font-weight: 500;
	line-height: 1.25;
}

.vip-cart-popup__product {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.vip-cart-popup__image-wrap {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 240px;
	margin-bottom: 15px;
}

.vip-cart-popup__product-image {
	display: block;
	width: auto;
	max-width: 220px;
	height: auto;
	max-height: 220px;
	object-fit: contain;
}

.vip-cart-popup__product-title {
	max-width: 700px;
	margin: 10px auto 15px;
	color: #111;
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4;
}

.vip-cart-popup__product-price {
	color: #111;
	font-size: 27px;
	font-weight: 500;
}

.vip-cart-popup__product-price del {
	margin-right: 8px;
	color: #777;
	font-size: 19px;
}

.vip-cart-popup__product-price ins {
	text-decoration: none;
}

/* Right content */

.vip-cart-popup__cart-title {
	margin: 0 45px 25px 0;
	color: #111;
	font-size: clamp(25px, 2vw, 36px);
	font-weight: 500;
	line-height: 1.3;
}

.vip-cart-popup__summary-lines {
	display: flex;
	flex-direction: column;
	gap: 22px;
}

.vip-cart-popup__summary-line {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	color: #111;
	font-size: 22px;
	line-height: 1.3;
}

.vip-cart-popup__summary-line span {
	font-weight: 400;
}

.vip-cart-popup__summary-line strong {
	font-weight: 500;
	text-align: right;
}

.vip-cart-popup__summary-line--total {
	font-size: 23px;
}

/* Buttons */

.vip-cart-popup__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin-top: 50px;
}

.vip-cart-popup__button {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	padding: 16px;
	border: 1px solid #000;
	border-radius: 0;
	background: #000;
	color: #fff !important;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.2;
	text-align: center;
	text-decoration: none !important;
	text-transform: uppercase;
	cursor: pointer;
	transition:
		background 0.25s ease,
		color 0.25s ease;
}

.vip-cart-popup__button:hover {
	background: #fff;
	color: #000 !important;
}

/* Prevent body scroll */

body.vip-cart-popup-open {
	overflow: hidden;
}

/* Loading button */

.add_to_cart_button.loading,
.single_add_to_cart_button.loading {
	opacity: 0.6;
	pointer-events: none;
}

.vip-cart-popup-button-continue{
    background-color: var(--e-global-color-primary) !important;
    border: 1px solid var(--e-global-color-primary) !important; 
    font-size: 1rem !important;
    font-weight: 600 !important; 
}


/* Tablet */

@media (max-width: 991px) {

	.vip-cart-popup {
		padding: 20px;
	}
    .vip-cart-popup-content {
        display: flex;
        justify-content: center;
        align-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
	.vip-cart-popup__box {
		grid-template-columns: 1fr;
		width: min(700px, 100%);
		max-height: calc(100vh - 40px);
	}

	.vip-cart-popup__left {
		padding: 40px 35px 30px;
		border-right: 0;
		border-bottom: 1px solid #dedede;
	}

	.vip-cart-popup__right {
		padding: 35px;
	}

	.vip-cart-popup__image-wrap {
		height: 180px;
	}

	.vip-cart-popup__product-image {
		max-width: 160px;
		max-height: 170px;
	}

	.vip-cart-popup__actions {
		margin-top: 35px;
	}

}

/* Mobile */

@media (max-width: 575px) {

	.vip-cart-popup {
		align-items: center;
		padding: 0;
	}

	.vip-cart-popup__box {
		width: 94%;
		max-height: 92vh;
	}

	.vip-cart-popup__close {
		top: 10px;
		right: 10px;
	}

	.vip-cart-popup__left {
		padding: 35px 20px 25px;
	}

	.vip-cart-popup__right {
		padding: 25px 20px 20px;
	}

	.vip-cart-popup__success-title,
	.vip-cart-popup__cart-title {
		font-size: 20px;
	}

	.vip-cart-popup__image-wrap {
		height: 130px;
		margin-bottom: 5px;
	}

	.vip-cart-popup__product-image {
		max-width: 125px;
		max-height: 125px;
	}

	.vip-cart-popup__product-title {
		margin-bottom: 8px;
		font-size: 16px;
	}

	.vip-cart-popup__product-price {
		font-size: 21px;
	}

	.vip-cart-popup__summary-lines {
		gap: 15px;
	}

	.vip-cart-popup__summary-line {
		font-size: 17px;
	}

	.vip-cart-popup__summary-line--total {
		font-size: 18px;
	}

	.vip-cart-popup__actions {
		grid-template-columns: 1fr;
		gap: 8px;
		margin-top: 25px;
	}

	.vip-cart-popup__button {
		min-height: 56px;
		font-size: 15px;
	}

}