/**
 * EasyMedia Gift Bag — Front-end styles
 */

.emgb-gift-bag {
	margin: 20px 0;
	font-size: 15px;
	line-height: 1.5;
}

.emgb-gift-bag__inner {
	border: 1px solid #e6e0f5;
	border-left: 4px solid #7c3aed;
	background: #faf9ff;
	border-radius: 8px;
	padding: 16px 18px;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.emgb-gift-bag__inner:hover {
	box-shadow: 0 2px 10px rgba(124, 58, 237, 0.08);
}

.emgb-gift-bag__header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 10px;
	font-weight: 600;
}

.emgb-gift-bag__icon {
	font-size: 20px;
	line-height: 1;
}

.emgb-gift-bag__title {
	font-size: 15px;
	color: #2d1b4e;
}

.emgb-gift-bag__label {
	display: flex;
	align-items: center;
	gap: 10px;
	cursor: pointer;
	margin: 0;
	user-select: none;
}

.emgb-gift-bag-checkbox {
	width: 18px;
	height: 18px;
	margin: 0;
	accent-color: #7c3aed;
	cursor: pointer;
	flex: 0 0 auto;
}

.emgb-gift-bag__text {
	color: #1f2937;
}

.emgb-gift-bag__text .amount,
.emgb-gift-bag__text .woocommerce-Price-amount {
	font-weight: 700;
	color: #7c3aed;
}

.emgb-gift-bag__desc {
	margin: 8px 0 0;
	font-size: 13px;
	color: #6b7280;
}

/* Spinner κατά τη διάρκεια του AJAX */
.emgb-gift-bag__spinner {
	display: none;
	width: 16px;
	height: 16px;
	border: 2px solid #d8ccf5;
	border-top-color: #7c3aed;
	border-radius: 50%;
	animation: emgb-spin 0.7s linear infinite;
}

.emgb-gift-bag.emgb-loading .emgb-gift-bag__spinner {
	display: inline-block;
}

.emgb-gift-bag.emgb-loading .emgb-gift-bag__inner {
	opacity: 0.7;
	pointer-events: none;
}

@keyframes emgb-spin {
	to {
		transform: rotate(360deg);
	}
}

/* Blocks checkout variant */
.emgb-gift-bag-blocks {
	margin: 16px 0 0;
}

/* Woodmart small tweak */
.woodmart-theme .emgb-gift-bag__inner {
	border-radius: 10px;
}
