/* ===== Gifts Module — ZUMA Cart ===== */

/* --- Progress Bar (fixed above cart footer) --- */
.gifts-progress {
	padding: 12px 25px 12px 25px;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.92);
	box-sizing: border-box;
	position: fixed;
	bottom: 84px;
	right: 0;
	width: 470px;
	z-index: 10;
}
.gifts-progress-title {
	font-size: 14px;
	font-weight: 600;
	color: #595959;
	margin-bottom: 10px;
}
.gifts-progress-title span {
	font-size: 20px;
	vertical-align: middle;
	margin-right: 4px;
}
.gifts-progress-bar {
	position: relative;
	padding: 6px 0 22px 0;
}
.gifts-progress-track {
	position: absolute;
	top: 6px;
	left: 0;
	right: 0;
	height: 4px;
	background-color: #E0E0E0;
	border-radius: 2px;
	z-index: 1;
}
.gifts-progress-fill {
	height: 100%;
	background-color: #4CAF50;
	border-radius: 2px;
	transition: width 0.3s ease;
}
.gifts-progress-levels {
	position: relative;
	z-index: 2;
	height: 12px;
	margin-top: -4px;
}
.gifts-level-mark {
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	display: flex;
	flex-direction: column;
	align-items: center;
}
.gifts-level-dot {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #E0E0E0;
	border: 2px solid #fff;
	box-shadow: 0 0 0 1px #ccc;
	display: block;
}
.gifts-level-mark.active .gifts-level-dot {
	background-color: #4CAF50;
	border-color: #fff;
	box-shadow: 0 0 0 1px #4CAF50;
}
.gifts-level-mark.current .gifts-level-dot {
	box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.4);
}
.gifts-level-label {
	font-size: 12px;
	color: #999;
	font-weight: 500;
	position: absolute;
	top: 18px;
	white-space: nowrap;
}
.gifts-level-mark.active .gifts-level-label {
	color: #4CAF50;
	font-weight: 700;
	font-size: 13px;
}

/* Extra padding so cart content doesn't hide behind fixed gifts bar */
.cartedit.has-gifts {
	padding-bottom: 140px;
}

/* --- Fancybox override for gifts popup --- */
.gifts-fancybox .fancybox-content {
	padding: 20px !important;
	max-width: 520px;
}
.gifts-fancybox .fancybox-slide--html {
	padding: 10px !important;
}
/* --- Popup --- */
.gifts-popup-wrapper {
	max-width: 480px;
	width: 100%;
	margin: 0 auto;
	padding: 20px 10px;
}
.gifts-popup {
	padding: 20px;
	font-family: 'Manrope', sans-serif;
}
.gifts-popup h2 {
	font-size: 22px;
	color: #595959;
	font-weight: 300;
	margin: 0 0 12px 0;
	width: 100%;
}
.gifts-popup-about {
	font-size: 13px;
	color: #595959;
	margin-bottom: 20px;
	line-height: 1.6;
}
.gifts-popup-about p {
	margin: 0;
}
.gifts-popup-level {
	margin-bottom: 20px;
	padding: 15px;
	background: #F5F5F5;
	border-radius: 12px;
}
.gifts-popup-level.locked {
	opacity: 0.5;
}
.gifts-popup-level-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 12px;
}
.gifts-popup-level-title {
	font-size: 15px;
	font-weight: 600;
	color: #595959;
}
.gifts-popup-level-remaining {
	font-size: 12px;
	color: #999;
}
.gifts-popup-items {
	display: flex;
	gap: 10px;
	overflow-x: auto;
}
.gifts-popup-items::-webkit-scrollbar {
	display: none;
}
.gifts-popup-item {
	flex-shrink: 0;
	width: 140px;
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	cursor: pointer;
	transition: box-shadow 0.2s;
	border: 2px solid transparent;
}
.gifts-popup-item:hover {
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.gifts-popup-item.selected {
	border-color: #4CAF50;
}
.gifts-popup-item.disabled {
	cursor: default;
	opacity: 0.7;
}
.gifts-popup-item.disabled:hover {
	box-shadow: none;
}
.gifts-popup-item-img {
	width: 100%;
	height: 100px;
	object-fit: cover;
	display: block;
}
.gifts-popup-item-info {
	padding: 8px 10px;
}
.gifts-popup-item-name {
	display: block;
	font-size: 12px;
	font-weight: 500;
	color: #595959;
	line-height: 1.3;
	margin-bottom: 4px;
}
.gifts-popup-item-badge {
	display: inline-block;
	font-size: 11px;
	color: #4CAF50;
	font-weight: 600;
}
.gifts-popup-item-badge.choose {
	border-bottom: 1px dashed #4CAF50;
}

/* --- Responsive: Tablet --- */
@media (min-width: 740px) and (max-width: 1199px) {
	.gifts-popup-item {
		width: 130px;
	}
}

/* --- Responsive: Mobile --- */
@media (max-width: 500px) {
	.gifts-progress {
		width: 100%;
	}
	.gifts-popup-item {
		width: 120px;
	}
	.gifts-popup-item-img {
		height: 80px;
	}
	.gifts-popup-wrapper {
		max-width: 100%;
	}
	.gifts-popup {
		padding: 15px;
	}
}
