/**
 * Genius Commerce - Frontend Styles
 *
 * Styles for discount price display and delivery information.
 *
 * @package GeniusCommerce
 */

/* ==========================================================================
   Discount Price Display
   ========================================================================== */

.gc-discount-price-wrapper {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.5rem;
	line-height: 1.4;
}

/* Original price - strikethrough */
.gc-original-price {
	color: #666;
	font-size: 0.9em;
}

.gc-original-price del {
	text-decoration: line-through;
	opacity: 0.7;
}

/* Discounted price - highlighted */
.gc-discounted-price {
	color: #2e7d32;
	font-weight: 600;
	font-size: 1.1em;
}

/* Discount badge */
.gc-discount-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.2em 0.5em;
	font-size: 0.75em;
	font-weight: 700;
	color: #fff;
	background-color: #e53935;
	border-radius: 3px;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

/* Discount reason - subtle text */
.gc-discount-reason {
	display: block;
	width: 100%;
	margin-top: 0.25rem;
	font-size: 0.8em;
	color: #666;
	font-style: italic;
}

/* ==========================================================================
   Delivery Information Display
   ========================================================================== */

.gc-delivery-info {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-top: 0.75rem;
	padding: 0.5rem 0;
	font-size: 0.9em;
	color: #333;
}

.gc-delivery-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.gc-delivery-icon svg {
	width: 1.25em;
	height: 1.25em;
	fill: currentColor;
}

.gc-delivery-text {
	flex: 1;
}

/* Delivery in cart/checkout */
.gc-delivery-cart {
	display: flex;
	align-items: center;
	gap: 0.25rem;
	padding: 0.5rem 0;
	font-size: 0.9em;
	color: #333;
}

.gc-delivery-prefix {
	color: #666;
}

.gc-delivery-date {
	font-weight: 600;
	color: #2e7d32;
}

/* ==========================================================================
   Cart Discount Fee
   ========================================================================== */

/* Style the discount fee row in cart totals */
.cart-discount .woocommerce-Price-amount,
.order-total .cart-discount .woocommerce-Price-amount {
	color: #2e7d32;
}

/* ==========================================================================
   Responsive Adjustments
   ========================================================================== */

@media (max-width: 768px) {
	.gc-discount-price-wrapper {
		gap: 0.375rem;
	}

	.gc-discount-badge {
		padding: 0.15em 0.4em;
		font-size: 0.7em;
	}

	.gc-delivery-info {
		font-size: 0.85em;
	}
}

/* ==========================================================================
   Theme Compatibility
   ========================================================================== */

/* Storefront theme */
.storefront .gc-discount-price-wrapper {
	margin: 0.5rem 0;
}

/* Astra theme */
.ast-woo-shop-archive .gc-discount-price-wrapper {
	justify-content: flex-start;
}

/* Flatsome theme */
.product-small .gc-discount-price-wrapper {
	flex-direction: column;
	align-items: flex-start;
}

/* WooCommerce blocks */
.wc-block-components-product-price .gc-discount-price-wrapper {
	display: inline-flex;
}
