/* Add to Cart Popup */
.atc-popup-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	z-index: 99999;
	justify-content: center;
	align-items: center;
}

.atc-popup-overlay.active {
	display: flex;
}

.atc-popup {
	background: #fff;
	border-radius: 12px;
	max-width: 440px;
	width: 90%;
	padding: 32px;
	position: relative;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
	animation: atcSlideIn 0.3s ease;
}

@keyframes atcSlideIn {
	from {
		opacity: 0;
		transform: translateY(-20px) scale(0.95);
	}
	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

.atc-popup-close {
	position: absolute;
	top: 12px;
	right: 12px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: #666;
	line-height: 1;
	padding: 4px 8px;
	transition: color 0.2s;
}

.atc-popup-close:hover {
	color: #000;
}

.atc-popup-header {
	text-align: center;
	margin-bottom: 20px;
}

.atc-popup-header svg {
	width: 48px;
	height: 48px;
	color: #4caf50;
	margin-bottom: 8px;
}

.atc-popup-header h3 {
	font-size: 18px;
	font-weight: 600;
	margin: 0;
	color: #333;
}

.atc-popup-product {
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px;
	background: #f8f9fa;
	border-radius: 8px;
	margin-bottom: 24px;
}

.atc-popup-product img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 6px;
	flex-shrink: 0;
}

.atc-popup-product-info {
	flex: 1;
	min-width: 0;
}

.atc-popup-product-name {
	font-size: 15px;
	font-weight: 600;
	color: #333;
	margin: 0 0 6px 0;
	line-height: 1.3;
}

.atc-popup-product-price {
	font-size: 16px;
	font-weight: 700;
	color: #2c6e2f;
	margin: 0;
}

.atc-popup-product-price del {
	color: #999;
	font-weight: 400;
	font-size: 14px;
}

.atc-popup-product-price ins {
	text-decoration: none;
}

.atc-popup-buttons {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.atc-popup-btn {
	display: block;
	width: 100%;
	padding: 14px 20px;
	font-size: 15px;
	font-weight: 600;
	text-align: center;
	border-radius: 8px;
	border: none;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.2s;
}

.atc-popup-btn-checkout {
	background: #2c6e2f;
	color: #fff;
}

.atc-popup-btn-checkout:hover {
	background: #245a27;
	color: #fff;
	text-decoration: none;
}

.atc-popup-btn-continue {
	background: #f0f0f0;
	color: #333;
}

.atc-popup-btn-continue:hover {
	background: #e0e0e0;
	color: #333;
	text-decoration: none;
}

@media (max-width: 480px) {
	.atc-popup {
		padding: 24px 20px;
		margin: 16px;
	}

	.atc-popup-product img {
		width: 64px;
		height: 64px;
	}
}
