/**
 * Shopping cart page styles.
 */

.fyeen-cart-page .site-main--cart {
	padding-bottom: 1rem;
}

.fyeen-cart__header h1 {
	color: var(--fyeen-primary);
}

/* Desktop table */
.fyeen-cart__items .product-thumbnail img {
	width: 72px;
	height: 72px;
	object-fit: cover;
	border-radius: 0.375rem;
}

.fyeen-cart__items .product-remove .remove {
	width: 2rem;
	height: 2rem;
	padding: 0;
	line-height: 1;
	font-size: 1.25rem;
}

.fyeen-cart__items .product-quantity .quantity {
	display: flex;
	align-items: center;
	max-width: 130px;
}

.fyeen-cart__items .product-quantity .qty {
	text-align: center;
	border-radius: 0;
}

.fyeen-cart__items .product-quantity .fyeen-qty-btn {
	min-width: 2.25rem;
	padding: 0.25rem 0.5rem;
}

.fyeen-cart__items .product-subtotal {
	font-weight: 600;
	white-space: nowrap;
}

/* Mobile cards */
.fyeen-cart-item__thumb img {
	width: 80px;
	height: 80px;
	object-fit: cover;
}

.fyeen-cart-item__qty .quantity {
	display: flex;
	align-items: center;
}

.fyeen-cart-item__qty .qty {
	text-align: center;
}

/* Sidebar */
@media (min-width: 992px) {
	.fyeen-cart__sidebar {
		position: sticky;
		top: 1rem;
	}
}

.fyeen-cart-totals .shop_table th {
	font-weight: 500;
	color: #64748b;
	padding: 0.35rem 0;
	vertical-align: middle;
}

.fyeen-cart-totals .shop_table td {
	text-align: right;
	padding: 0.35rem 0;
	vertical-align: middle;
}

.fyeen-cart-totals .order-total th,
.fyeen-cart-totals .order-total td {
	color: var(--fyeen-primary);
}

.fyeen-cart-totals .wc-proceed-to-checkout .button,
.fyeen-cart-totals .wc-proceed-to-checkout .btn {
	width: 100%;
}

/* Shipping calculator */
.fyeen-cart-shipping .shipping-calculator-form {
	margin-top: 0.75rem;
}

.fyeen-cart-shipping .shipping-calculator-form p {
	margin-bottom: 0.75rem;
}

.fyeen-cart-shipping .shipping-calculator-form select,
.fyeen-cart-shipping .shipping-calculator-form input[type="text"] {
	width: 100%;
}

.fyeen-cart-shipping .shipping-calculator-button {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--fyeen-primary);
	background: transparent;
	border: 0;
	padding: 0;
	text-decoration: underline;
	text-underline-offset: 0.15em;
}

.fyeen-cart-shipping .shipping-calculator-button:hover {
	color: #0d1549;
}

/* Coupon */
.fyeen-cart-coupon .input-group .btn {
	white-space: nowrap;
}

/* Empty state */
.fyeen-cart-empty {
	max-width: 480px;
	margin: 0 auto;
}

/* Recommended products */
.fyeen-cart-recommended {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid #e2e8f0;
}

.fyeen-cart-recommended ul.products > li.product {
	padding: 0;
}

/* Mobile sticky checkout bar */
.fyeen-cart-sticky-bar {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 4.5rem;
	z-index: 1020;
	background: #fff;
	border-top: 1px solid #e2e8f0;
	box-shadow: 0 -4px 16px rgba(15, 23, 42, 0.08);
	padding: 0.75rem 1rem;
}

@media (min-width: 992px) {
	.fyeen-cart-sticky-bar {
		display: none !important;
	}
}

.fyeen-cart-sticky-bar__total {
	font-size: 0.75rem;
	color: #64748b;
	line-height: 1.2;
}

.fyeen-cart-sticky-bar__amount {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--fyeen-primary);
}

.fyeen-cart-sticky-bar .btn {
	white-space: nowrap;
}

/* Quantity update notice */
.fyeen-cart-update-hint {
	font-size: 0.8125rem;
	color: #b45309;
	background: #fffbeb;
	border: 1px solid #fde68a;
	border-radius: 0.375rem;
	padding: 0.5rem 0.75rem;
	margin-top: 0.75rem;
}

.fyeen-cart-update-hint[hidden] {
	display: none !important;
}
