/**
 * DinEden Single Variation Boxes
 */

/* Hide the price range */
.dineden-svb-hidden-range {
	display: none !important;
}

/* Hide default dropdown when boxes are active */
.dineden-svb-inited table.variations {
	display: none !important;
}

/* Boxes container */
.dineden-svb-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 20px;
}

/* Individual box - unselected */
.dineden-svb-box {
	width: 143px;
	height: 108px;
	border-radius: 10px;
	border: 1px solid #E6E6E6;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: border-color 0.2s ease, background-color 0.2s ease;
	box-sizing: border-box;
	gap: 6px;
}

.dineden-svb-box:hover {
	border-color: #F5B783;
}

/* Selected state */
.dineden-svb-box.dineden-svb-selected {
	border: 1px solid #F5B783;
	background: #FDF1E7;
}

/* Out of stock box */
.dineden-svb-box.dineden-svb-oos {
	opacity: 0.5;
	cursor: not-allowed;
}

/* Gramaj text (top, bold) */
.dineden-svb-gramaj {
	font-size: 18px;
	font-weight: 700;
	color: #333;
	line-height: 1.2;
}

/* Price text (bottom, lighter) */
.dineden-svb-price {
	font-size: 14px;
	font-weight: 400;
	color: #666;
	line-height: 1.2;
}

/* Sale price in box */
.dineden-svb-price del {
	color: #999;
	font-size: 0.9em;
	margin-right: 4px;
}

.dineden-svb-price ins {
	text-decoration: none;
	color: #379A3B;
	font-weight: 600;
}

/* Add to cart button disabled (no variation selected) */
.dineden-svb-inited .woocommerce-variation-add-to-cart-disabled .single_add_to_cart_button,
.dineden-svb-inited .single_add_to_cart_button.disabled {
	pointer-events: none;
}

/* Add to cart button - out of stock */
.single_add_to_cart_button.dineden-svb-oos-btn,
.single_add_to_cart_button.dineden-svb-oos-btn:hover {
	background-color: #BF2527 !important;
	color: #fff !important;
	pointer-events: none;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */
@media (max-width: 1024px) {
	.dineden-svb-box {
		width: 130px;
		height: 100px;
	}

	.dineden-svb-price {
		font-size: 16px;
	}

	.dineden-svb-gramaj {
		font-size: 13px;
	}
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */
@media (max-width: 576px) {
	.dineden-svb-boxes {
		gap: 8px;
	}

	.dineden-svb-box {
		width: calc(33.333% - 6px);
		min-width: 100px;
		height: 95px;
	}

	.dineden-svb-price {
		font-size: 15px;
	}

	.dineden-svb-gramaj {
		font-size: 12px;
	}
}
