/**
 * Optional Services Frontend Styles
 */

.allurejewellery-optional-services {
	display: flex;
	flex-direction: column;
	margin-top: -13px;
	margin-inline: -15px;
	padding-inline: 20px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.allurejewellery-service-option {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
	padding: 8px 0;
	border-bottom: 1px solid #e0e0e0;
}

.allurejewellery-service-option:last-child {
	border-bottom: none;
}

.allurejewellery-service-content {
	flex: 1;
	min-width: 0;
}

.allurejewellery-service-header {
	display: flex;
	align-items: center;
	gap: 15px;
}

.allurejewellery-service-title {
	margin: 0;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
}

.allurejewellery-service-price {
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	line-height: 1;
	opacity: 0.5;
}

.allurejewellery-service-description {
	margin: 0;
	font-size: 12px;
	line-height: 1.2;
}

.allurejewellery-service-toggle {
	flex-shrink: 0;
	position: relative;
	display: inline-block;
	width: 44px;
	height: 24px;
	margin-top: 2px;
	cursor: pointer;
}

.allurejewellery-service-checkbox {
	opacity: 0;
	width: 0;
	height: 0;
	position: absolute;
}

.allurejewellery-service-checkbox:checked + .allurejewellery-toggle-slider {
	background-color: var(--wp--preset--color--contrast);
}

.allurejewellery-service-checkbox:checked + .allurejewellery-toggle-slider::after {
	left: 22px;
}

.allurejewellery-service-checkbox:focus + .allurejewellery-toggle-slider {
	box-shadow: 0 0 0 2px rgba(34, 113, 177, 0.3);
}

.allurejewellery-toggle-slider {
	position: absolute;
	cursor: pointer;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #ccc;
	transition: background-color 0.3s;
	border-radius: 24px;
}

.allurejewellery-toggle-slider::after {
	content: '';
	position: absolute;
	height: 18px;
	width: 18px;
	left: 3px;
	bottom: 3px;
	background-color: white;
	transition: left 0.3s;
	border-radius: 50%;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.allurejewellery-service-toggle:hover .allurejewellery-toggle-slider {
	background-color: #b3b3b3;
}

.allurejewellery-service-checkbox:checked + .allurejewellery-toggle-slider:hover {
	background-color: var(--wp--preset--color--contrast);
}

.allurejewellery-service-option.loading {
	opacity: 0.6;
	pointer-events: none;
}

/* Mini cart styling */
.woocommerce-mini-cart .allurejewellery-optional-services,
.wc-block-mini-cart .allurejewellery-optional-services {
	margin: 15px 0;
	padding: 0 15px;
}

.woocommerce-mini-cart .allurejewellery-service-option,
.wc-block-mini-cart .allurejewellery-service-option {
	padding: 12px;
	margin-bottom: 10px;
}

.woocommerce-mini-cart .allurejewellery-service-title,
.wc-block-mini-cart .allurejewellery-service-title {
	font-size: 14px;
}

.woocommerce-mini-cart .allurejewellery-service-price,
.wc-block-mini-cart .allurejewellery-service-price {
	font-size: 14px;
}

.woocommerce-mini-cart .allurejewellery-service-description,
.wc-block-mini-cart .allurejewellery-service-description {
	font-size: 13px;
}

/* Cart page styling */
.woocommerce-cart .allurejewellery-optional-services {
	margin: 20px 0;
	padding: 0;
}

.woocommerce-cart .allurejewellery-service-option {
	padding: 20px;
}

/* Messages */
.allurejewellery-message {
	padding: 12px 15px;
	margin-bottom: 15px;
	border-radius: 4px;
	font-size: 14px;
}

.allurejewellery-message-success {
	background-color: #d4edda;
	color: #155724;
	border: 1px solid #c3e6cb;
}

.allurejewellery-message-error {
	background-color: #f8d7da;
	color: #721c24;
	border: 1px solid #f5c6cb;
}

/* Loading state */
.allurejewellery-optional-services.loading {
	pointer-events: none;
	opacity: 0.6;
}

