/* Import CSS Variables */
@import '_variables.css';

header {
	padding-top: 30px;
}

.woocommerce-checkout .col2-set {
	width: 48%;
	float: left;
	margin-right: 4%;
}

#order_review,
#order_review_heading {
	width: 48%;
	float: right;
	margin-right: 0;
}

#order_review td {
	width: 50%;
}

/* Returning customer login form styling */
.woocommerce-form-login-toggle .woocommerce-info {
	background-color: var(--returning-customer-login-background);
	color: var(--black);
	font-size: 16px;
	line-height: 24px;
	font-weight: 400;
}

.woocommerce-form-login-toggle .woocommerce-info a {
	color: var(--a-tag-default);
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
}

.woocommerce-form-login-toggle .woocommerce-info a:visited {
	color: var(--a-tag-default);
}

.woocommerce-form-login-toggle .woocommerce-info a:active {
	color: var(--a-tag-default);
}

.woocommerce-form-login-toggle .woocommerce-info a:focus {
	color: var(--a-tag-default);
}

.woocommerce-form-login-toggle .woocommerce-info a:hover {
	color: var(--a-tag-default);
}

h3 {
	font-weight: 700;
	font-size: 28px;
	line-height: 28px;
}

/* Payment methods: full width below 2 columns */
#custom-wc-checkout-payment {
	width: 100%;
	float: none;
	clear: both;
	padding-top: 20px;
}

#customer_details {
	margin-bottom: 40px;
}

#customer_details .col-1 {
	margin-bottom: 30px;
}

#payment {
	padding-bottom: 20px;
}

#kl_newsletter_checkbox_field {
	display: none;
}

/* .cart-subtotal, .woocommerce-shipping-totals, .tax-total, .order-total {
	display: flex;
}

.woocommerce-checkout-review-order-table tfoot th {
	flex: 0 0 35%;
}

.woocommerce-checkout-review-order-table tfoot td {
	flex: 0 0 65%;
} */

abbr {
    color: var(--wc-red);
    font-weight: 700;
    border: 0 !important;
    text-decoration: none !important;
    visibility: visible;
}

/* Coupon Form Styles - Dropdown Style */
.woocommerce-form-coupon-toggle {
	margin-bottom: 20px;
}

.woocommerce-form-coupon-toggle span {
	color: var(--black);
	font-weight: 400;
	line-height: 24px;
}

.woocommerce-form-coupon-toggle .woocommerce-info {
	background: var(--white);
	border-top: 1px solid rgba(0, 0, 0, 0.1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	border-left: none;
	border-right: none;
	border-radius: 0;
	padding: 20px 0;
	position: relative;
	cursor: pointer;
	margin: 0;
	transition: all 0.3s ease;
}

.woocommerce-form-coupon-toggle .woocommerce-info::after {
	content: "▼";
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	font-size: 12px;
	color: var(--black);
	transition: transform 0.3s ease;
}

.woocommerce-form-coupon-toggle .woocommerce-info.expanded::after {
	transform: translateY(-50%) rotate(180deg);
}

.woocommerce-form-coupon-toggle .showcoupon {
	text-decoration: none;
	color: inherit;
	font-weight: normal;
}

.checkout_coupon.woocommerce-form-coupon {
	background: #f8f9fa;
	border-top: none;
	border-bottom: 1px solid #e9ecef;
	border-left: none;
	border-right: none;
	border-radius: 0;
	padding: 20px;
	margin-top: -1px;
	display: none;
	overflow: hidden;
}

.checkout_coupon.woocommerce-form-coupon.show {
	display: block;
}

.checkout_coupon .form-row-first,
.checkout_coupon .form-row-last {
	width: 100%;
	margin-bottom: 15px;
}

.checkout_coupon .form-row-last {
	margin-bottom: 0;
}

.checkout_coupon input[type="text"] {
	width: 100%;
	padding: 10px;
	border: 1px solid #ddd;
	border-radius: 3px;
	margin-bottom: 10px;
}

.checkout_coupon button {
	width: 100%;
	padding: 10px;
	background: #0073aa;
	color: white;
	border: none;
	border-radius: 3px;
	cursor: pointer;
	font-weight: 500;
}

.checkout_coupon button:hover {
	background: #005a87;
}

/* Force show address validation buttons */
.shipping_address [class*="validate"]:not(.woocommerce-invalid),
.shipping_address [id*="validate"],
.shipping_address [class*="verification"],
.shipping_address [id*="verification"],
.shipping_address .address-validation-btn,
.shipping_address .validate-address-btn {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

/* Also target common WooCommerce address validation plugin selectors */
.shipping_address .wc-address-validation,
.shipping_address .address-validator,
.shipping_address .validate-btn {
	display: block !important;
	visibility: visible !important;
	opacity: 1 !important;
}

#shipping_method label {
	font-weight: normal;
}

.woocommerce-checkout-review-order-table tfoot .tax-total span {
	font-weight: 400;
}

.woocommerce-checkout-review-order-table tfoot .woocommerce-shipping-totals td {
	font-weight: 400 !important;
	background-color: rgba(0, 0, 0, 0.03);
}

.woocommerce-checkout-review-order-table tfoot .order-total th {
	font-size: 20px;
}

.woocommerce-checkout-review-order-table tfoot .order-total td span {
	font-size: 20px;
}

#ship-to-different-address {
	margin-bottom: 30px;
}

#woocommerce-checkout-form-coupon {
	margin-bottom: 30px;
}

.shipping_address {
	margin-bottom: 30px;
}

@media (max-width: 768px) {
	/* Add margin to checkout form */
	form[name="checkout"].checkout.woocommerce-checkout {
		margin: 20px;
	}

	#customer_details.col2-set {
		width: 100%;
	}

	#order_review_heading {
		width: 100%;
	}

	#order_review.woocommerce-checkout-review-order {
		width: 100%;
	}

	.woocommerce-checkout-review-order-table th.product-name {
		width: 60%;
	}

	.woocommerce-checkout-review-order-table th.product-total {
		width: 40%;
	}

	.woocommerce-checkout .woocommerce-checkout-payment {
		width: 100%;
	}

	#payment fieldset {
		width: 100%;
	}
}