/**
 * Public-facing styles
 *
 * @package    Doozy_Order_Protection
 * @subpackage Doozy_Order_Protection/public/css
 */

.doozy-order-protection-wrapper {
	margin: 15px 0;
	padding: 15px;
	background: #f9f9f9;
	border: 1px solid #e0e0e0;
	border-radius: 4px;
}

.doozy-order-protection-checkbox {
	display: flex;
	align-items: center;
	gap: 10px;
}

.doozy-order-protection-checkbox input[type="checkbox"] {
	margin: 0;
	width: 18px;
	height: 18px;
	cursor: pointer;
}

.doozy-order-protection-checkbox label {
	margin: 0;
	font-weight: 500;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 8px;
}

.doozy-protection-price {
	color: #77a464;
	font-weight: 600;
}

.doozy-protection-description {
	margin-top: 8px;
	font-size: 13px;
	color: #666;
	line-height: 1.5;
}

/* Cart page specific styles */
.cart_totals .doozy-order-protection-wrapper {
	margin: 0 0 15px 0;
}

/* Checkout page specific styles */
.woocommerce-checkout-review-order .doozy-order-protection-wrapper {
	margin: 0 0 15px 0;
}

/* Block checkout styles */
.wp-block-woocommerce-checkout .doozy-order-protection-wrapper {
	margin: 20px 0;
}

/* Responsive */
@media (max-width: 768px) {
	.doozy-order-protection-wrapper {
		padding: 12px;
	}
	
	.doozy-order-protection-checkbox {
		flex-direction: column;
		align-items: flex-start;
	}
}

