/**
 * UniteElements Theme - Creative Cart / Purchase Workspace Styles
 *
 * @package UniteElements_Theme
 * @author Jyotirmay Ray <https://jyotirmayray.in/>
 */

/* ==========================================================================
   1. Cart Drawer Container
   ========================================================================== */
/* ==========================================================================
   1. Cart Drawer Container (3D Liquid Glass Modal Drawer)
   ========================================================================== */
.uniteelements-cart-drawer {
	position: fixed;
	top: 14px;
	bottom: 14px;
	right: 14px;
	width: calc(100% - 28px);
	max-width: 480px;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(32px) saturate(200%);
	-webkit-backdrop-filter: blur(32px) saturate(200%);
	z-index: 9985;
	display: flex;
	flex-direction: column;
	box-shadow: 0 32px 80px -16px rgba(15, 23, 42, 0.22), 0 0 0 1px rgba(255, 255, 255, 0.95) inset;
	transform: translateX(115%);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	border: 1px solid rgba(226, 232, 240, 0.85);
	border-radius: 28px;
	overflow: hidden;
}

.uniteelements-cart-drawer.is-active {
	transform: translateX(0);
}

/* ==========================================================================
   2. Cart Header with 3D Isometric Cart Icon
   ========================================================================== */
.uniteelements-cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 20px 24px;
	border-bottom: 1px solid rgba(226, 232, 240, 0.8);
	background: rgba(255, 255, 255, 0.75);
	flex-shrink: 0;
}

.uniteelements-cart-drawer__body {
	flex: 1 1 auto;
	overflow-y: auto;
	padding: 20px 24px;
	-webkit-overflow-scrolling: touch;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.uniteelements-3d-cart-icon {
	width: 52px;
	height: 52px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(219, 230, 254, 0.75) 100%);
	border: 1.5px solid rgba(255, 255, 255, 1);
	box-shadow: 0 10px 24px -4px rgba(43, 93, 245, 0.2), inset 0 2px 2px rgba(255, 255, 255, 1);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.uniteelements-cart-drawer__title {
	font-size: 20px;
	font-weight: 700;
	color: var(--uniteelements-text-primary);
	margin: 0;
	letter-spacing: -0.02em;
}

.uniteelements-cart-drawer__meta-line {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	color: var(--uniteelements-text-secondary);
	margin-top: 2px;
}

.uniteelements-cart-close-circle {
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: rgba(241, 245, 249, 0.8);
	border: 1px solid rgba(255, 255, 255, 0.9);
	color: var(--uniteelements-text-muted);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: var(--uniteelements-transition);
}

.uniteelements-cart-close-circle:hover {
	background: rgba(239, 68, 68, 0.1);
	color: var(--uniteelements-danger-600);
	transform: scale(1.06);
}

/* ==========================================================================
   3. Cart Items List & Cards
   ========================================================================== */
.uniteelements-cart-card {
	display: flex;
	gap: 14px;
	padding: 16px;
	background: #FFFFFF;
	border: 1px solid rgba(226, 232, 240, 0.9);
	border-radius: 20px;
	box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
	transition: var(--uniteelements-transition);
}

.uniteelements-cart-card:hover {
	border-color: rgba(43, 93, 245, 0.3);
	box-shadow: 0 8px 24px -4px rgba(43, 93, 245, 0.08);
}

.uniteelements-cart-card__media {
	width: 52px;
	height: 52px;
	border-radius: 14px;
	overflow: hidden;
	background: var(--uniteelements-primary-50);
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.uniteelements-cart-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.uniteelements-cart-card__glyph {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
	font-size: 22px;
	border-radius: 12px;
}

.uniteelements-cart-card__content {
	flex: 1 1 auto;
	min-width: 0;
}

.uniteelements-cart-card__title {
	font-size: 13.5px;
	font-weight: 700;
	color: var(--uniteelements-text-primary);
	margin: 0;
	line-height: 1.3;
}

.uniteelements-cart-card__title a {
	color: #0F172A;
	text-decoration: none;
	transition: color 0.2s ease;
}

.uniteelements-cart-card__title a:hover {
	color: #2563EB;
}

.uniteelements-cart-card__price {
	font-size: 15px;
	font-weight: 800;
	color: #2563EB;
	white-space: nowrap;
}

.uniteelements-license-pill {
	display: inline-flex;
	align-items: center;
	padding: 2px 8px;
	border-radius: 6px;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	font-size: 11px;
	font-weight: 600;
	color: #475569;
}

/* Savings celebration banner */
.uniteelements-cart-savings-banner {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 12px 16px;
	border-radius: 16px;
	background: linear-gradient(135deg, rgba(239, 246, 255, 0.95), rgba(219, 234, 254, 0.6));
	border: 1px solid rgba(191, 219, 254, 0.8);
	margin: 8px 0;
}

@keyframes uniteelementsCartPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(43, 93, 245, 0.4);
		border-color: var(--uniteelements-primary-500);
	}
	70% {
		box-shadow: 0 0 0 10px rgba(43, 93, 245, 0);
	}
	100% {
		box-shadow: 0 0 0 0 rgba(43, 93, 245, 0);
	}
}

.uniteelements-cart-item__media {
	width: 64px;
	height: 64px;
	border-radius: var(--uniteelements-radius-md);
	overflow: hidden;
	background-color: var(--uniteelements-bg-surface-subtle);
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.uniteelements-cart-item__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.uniteelements-cart-item__content {
	flex: 1 1 auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.uniteelements-cart-item__header {
	display: flex;
	align-items: center;
	gap: var(--uniteelements-space-2);
	margin-bottom: 2px;
}

.uniteelements-cart-item__title {
	font-size: var(--uniteelements-font-size-body);
	font-weight: var(--uniteelements-font-weight-semibold);
	margin: 0;
	line-height: 1.3;
}

.uniteelements-cart-item__title a {
	color: var(--uniteelements-text-primary);
	text-decoration: none;
}

.uniteelements-cart-item__title a:hover {
	color: var(--uniteelements-primary-600);
}

.uniteelements-cart-item__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: var(--uniteelements-space-2);
}

.uniteelements-cart-item__price {
	font-weight: var(--uniteelements-font-weight-bold);
	color: var(--uniteelements-primary-600);
	font-size: var(--uniteelements-font-size-body);
}

.uniteelements-cart-item__remove {
	background: transparent;
	border: none;
	color: var(--uniteelements-text-muted);
	cursor: pointer;
	padding: 4px;
	border-radius: 4px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: var(--uniteelements-transition);
}

.uniteelements-cart-item__remove:hover {
	color: var(--uniteelements-error-600);
	background: var(--uniteelements-error-50);
}

/* ==========================================================================
   4. Promo Code / Coupons
   ========================================================================== */
.uniteelements-coupon-wrapper {
	margin-top: var(--uniteelements-space-4);
	padding-top: var(--uniteelements-space-4);
	border-top: 1px dashed var(--uniteelements-border-subtle);
}

.uniteelements-coupon-toggle-btn {
	background: transparent;
	border: none;
	color: var(--uniteelements-primary-600);
	font-size: var(--uniteelements-font-size-caption);
	font-weight: var(--uniteelements-font-weight-semibold);
	cursor: pointer;
	padding: 0;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.uniteelements-coupon-form {
	display: none;
	margin-top: var(--uniteelements-space-3);
	gap: var(--uniteelements-space-2);
}

.uniteelements-coupon-form.is-active {
	display: flex;
}

.uniteelements-applied-coupons {
	display: flex;
	flex-wrap: wrap;
	gap: var(--uniteelements-space-2);
	margin-top: var(--uniteelements-space-2);
}

.uniteelements-coupon-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 4px 10px;
	background: var(--uniteelements-success-50);
	border: 1px solid var(--uniteelements-success-200);
	border-radius: var(--uniteelements-radius-pill);
	font-size: 11px;
	font-weight: 700;
	color: var(--uniteelements-success-700);
}

.uniteelements-coupon-tag button {
	background: transparent;
	border: none;
	cursor: pointer;
	color: var(--uniteelements-success-700);
	font-size: 14px;
	line-height: 1;
	padding: 0;
}

/* ==========================================================================
   5. Cart Summary Footer
   ========================================================================== */
.uniteelements-cart-drawer__summary {
	flex-shrink: 0;
	padding: 20px 24px 22px;
	background: rgba(255, 255, 255, 0.94);
	backdrop-filter: blur(20px);
	border-top: 1px solid rgba(226, 232, 240, 0.85);
	box-shadow: 0 -10px 30px rgba(15, 23, 42, 0.04);
}

.uniteelements-cart-summary-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	font-size: var(--uniteelements-font-size-body-sm);
	color: var(--uniteelements-text-secondary);
	margin-bottom: var(--uniteelements-space-2);
}

.uniteelements-cart-summary-row--savings {
	color: var(--uniteelements-success-600);
	font-weight: var(--uniteelements-font-weight-bold);
}

.uniteelements-cart-summary-row--total {
	font-size: var(--uniteelements-font-size-h3);
	font-weight: var(--uniteelements-font-weight-bold);
	color: var(--uniteelements-text-primary);
	margin-top: var(--uniteelements-space-3);
	padding-top: var(--uniteelements-space-3);
	border-top: 1px solid var(--uniteelements-border-subtle);
}

/* ==========================================================================
   6. Empty State
   ========================================================================== */
.uniteelements-cart-drawer__empty {
	padding: var(--uniteelements-space-12) var(--uniteelements-space-6);
	text-align: center;
	display: none;
}

.uniteelements-cart-drawer__empty-icon {
	width: 64px;
	height: 64px;
	margin: 0 auto var(--uniteelements-space-4);
	background: var(--uniteelements-primary-50);
	color: var(--uniteelements-primary-500);
	border-radius: var(--uniteelements-radius-xl);
	display: flex;
	align-items: center;
	justify-content: center;
}

/* ==========================================================================
   7. Full Cart Page & WooCommerce Blocks Styling
   ========================================================================== */
.wp-block-woocommerce-cart,
.wc-block-cart {
	max-width: 1340px !important;
	margin: 20px auto 60px !important;
	padding: 0 clamp(16px, 2.5vw, 32px) !important;
	font-family: inherit;
}

.wc-block-cart__form,
.wc-block-cart.is-large {
	display: grid !important;
	grid-template-columns: 1.4fr 1fr !important;
	gap: clamp(24px, 3vw, 44px) !important;
	align-items: start !important;
}

@media (max-width: 1024px) {
	.wc-block-cart__form,
	.wc-block-cart.is-large {
		grid-template-columns: 1fr !important;
	}
}

.wc-block-cart__main {
	background: rgba(255, 255, 255, 0.94) !important;
	backdrop-filter: blur(28px) !important;
	-webkit-backdrop-filter: blur(28px) !important;
	border: 1.5px solid rgba(226, 232, 240, 0.9) !important;
	border-radius: 24px !important;
	padding: clamp(20px, 2.5vw, 36px) !important;
	box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.05) !important;
}

.wc-block-cart-items {
	width: 100% !important;
	border-collapse: collapse !important;
}

.wc-block-cart-items__header th {
	padding: 12px 14px !important;
	font-size: 12px !important;
	font-weight: 700 !important;
	color: #64748B !important;
	text-transform: uppercase !important;
	border-bottom: 1.5px solid #E2E8F0 !important;
}

.wc-block-cart-items__row,
.wc-block-cart-item {
	border-bottom: 1px solid #F1F5F9 !important;
	padding: 18px 0 !important;
}

.wc-block-cart-item__image {
	width: 68px !important;
	height: 68px !important;
	border-radius: 16px !important;
	border: 1px solid #E2E8F0 !important;
	overflow: hidden !important;
	margin-right: 16px !important;
}

.wc-block-cart-item__image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
}

.wc-block-cart-item__product-name {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #0F172A !important;
	text-decoration: none !important;
	line-height: 1.4 !important;
	display: block !important;
}

.wc-block-cart-item__prices {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #2563EB !important;
	display: flex !important;
	align-items: center !important;
	gap: 8px !important;
	flex-wrap: wrap !important;
	margin: 6px 0 !important;
}

.wc-block-components-product-price {
	font-size: 15px !important;
	font-weight: 800 !important;
	color: #2563EB !important;
}

.wc-block-components-product-sale-badge {
	background: #EFF6FF !important;
	color: #1D4ED8 !important;
	border: 1px solid rgba(37, 99, 235, 0.2) !important;
	font-size: 11px !important;
	font-weight: 700 !important;
	padding: 3px 8px !important;
	border-radius: 999px !important;
}

/* Quantity controls in block */
.wc-block-components-quantity-selector {
	display: inline-flex !important;
	align-items: center !important;
	background: #F8FAFC !important;
	border: 1.5px solid #CBD5E1 !important;
	border-radius: 999px !important;
	padding: 2px 6px !important;
	height: 36px !important;
}

.wc-block-components-quantity-selector__button {
	border: none !important;
	background: transparent !important;
	color: #475569 !important;
	font-weight: 800 !important;
	width: 26px !important;
	height: 26px !important;
	cursor: pointer !important;
	border-radius: 50% !important;
	transition: all 0.2s !important;
}

.wc-block-components-quantity-selector__button:hover {
	background: #E2E8F0 !important;
	color: #0F172A !important;
}

.wc-block-components-quantity-selector__input {
	border: none !important;
	background: transparent !important;
	width: 36px !important;
	text-align: center !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	color: #0F172A !important;
}

.wc-block-cart-item__remove-link {
	color: #DC2626 !important;
	font-size: 12px !important;
	font-weight: 600 !important;
	margin-left: 12px !important;
	cursor: pointer !important;
}

/* ==========================================================================
   4. Modern Cart Studio Page & Order Settlement Deck
   ========================================================================== */
.uniteelements-cart-studio-wrap {
	max-width: 1280px !important;
	margin: 24px auto 72px !important;
	padding: 0 !important;
	box-sizing: border-box !important;
	width: 100% !important;
}

/* Funnel Stepper */
.uniteelements-cart-funnel-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(255, 255, 255, 0.92);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1.5px solid #E2E8F0;
	border-radius: 20px;
	padding: 16px 28px;
	margin-bottom: 32px;
	box-shadow: 0 8px 24px -6px rgba(15, 23, 42, 0.04), 0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.uniteelements-funnel-step {
	display: flex;
	align-items: center;
	gap: 12px;
	opacity: 0.55;
	transition: all 0.25s ease;
}

.uniteelements-funnel-step.is-active {
	opacity: 1;
}

.uniteelements-funnel-num {
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background: #F1F5F9;
	color: #475569;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 13.5px;
	font-weight: 800;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	flex-shrink: 0;
	transition: all 0.25s ease;
	border: 1px solid #E2E8F0;
}

.uniteelements-funnel-step.is-active .uniteelements-funnel-num {
	background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
	color: #FFFFFF;
	border-color: #1D4ED8;
	box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18), 0 4px 12px rgba(37, 99, 235, 0.35);
}

.uniteelements-funnel-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.uniteelements-funnel-text strong {
	font-size: 13.5px;
	font-weight: 800;
	color: #0F172A;
	letter-spacing: -0.01em;
}

.uniteelements-funnel-text span {
	font-size: 11.5px;
	color: #64748B;
	font-weight: 500;
}

.uniteelements-funnel-divider {
	flex: 1;
	height: 2px;
	background: linear-gradient(90deg, #E2E8F0 0%, #CBD5E1 50%, #E2E8F0 100%);
	margin: 0 20px;
	border-radius: 999px;
}

/* 2-Column Cart Grid Layout on Desktop (> 1024px) */
@media (min-width: 1025px) {
	.uniteelements-cart-grid-layout {
		display: grid !important;
		grid-template-columns: minmax(0, 1.4fr) minmax(360px, 400px) !important;
		gap: clamp(24px, 3vw, 36px) !important;
		align-items: start !important;
		width: 100% !important;
		box-sizing: border-box !important;
	}
}

/* Left: Cart Items Card */
.uniteelements-cart-items-card {
	background: #FFFFFF;
	border: 1.5px solid #E2E8F0;
	border-radius: 20px;
	padding: clamp(20px, 3vw, 28px);
	box-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04);
}

.uniteelements-cart-items-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	border-bottom: 1px solid #E2E8F0;
	padding-bottom: 16px;
}

.uniteelements-cart-items-title-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
}

.uniteelements-cart-items-title {
	font-size: clamp(1.2rem, 2.5vw, 1.4rem);
	font-weight: 800;
	color: #0F172A;
	margin: 0;
	letter-spacing: -0.02em;
}

.uniteelements-cart-count-badge {
	background: #EFF6FF;
	color: #1D4ED8;
	border: 1px solid #BFDBFE;
	font-size: 11.5px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 999px;
}

/* Cart Items Table */
.uniteelements-cart-table {
	width: 100%;
	border-collapse: collapse;
}

.uniteelements-cart-table th {
	font-size: 11.5px !important;
	font-weight: 700 !important;
	color: #64748B !important;
	text-transform: uppercase !important;
	letter-spacing: 0.05em !important;
	padding: 14px 10px !important;
	border-bottom: 1.5px solid #E2E8F0 !important;
	text-align: left !important;
}

.uniteelements-cart-table th.product-remove,
.uniteelements-cart-table td.product-remove {
	width: 36px !important;
	max-width: 40px !important;
	padding: 14px 6px !important;
	text-align: center !important;
}

.uniteelements-cart-table th.product-thumbnail,
.uniteelements-cart-table td.product-thumbnail {
	width: 68px !important;
	max-width: 72px !important;
	padding: 14px 8px !important;
	text-align: center !important;
}

.uniteelements-cart-table th.product-name,
.uniteelements-cart-table td.product-name {
	width: auto !important;
	min-width: 280px !important;
	padding: 14px 14px !important;
	text-align: left !important;
}

.uniteelements-cart-table th.product-price,
.uniteelements-cart-table td.product-price {
	width: 100px !important;
	max-width: 110px !important;
	padding: 14px 8px !important;
	text-align: right !important;
	white-space: nowrap !important;
	font-variant-numeric: tabular-nums;
}

.uniteelements-cart-table th.product-quantity,
.uniteelements-cart-table td.product-quantity {
	width: 95px !important;
	max-width: 105px !important;
	padding: 14px 6px !important;
	text-align: center !important;
}

.uniteelements-cart-table th.product-subtotal,
.uniteelements-cart-table td.product-subtotal {
	width: 110px !important;
	max-width: 120px !important;
	padding: 14px 10px !important;
	text-align: right !important;
	white-space: nowrap !important;
	font-variant-numeric: tabular-nums;
}

.uniteelements-cart-table td {
	padding: 16px 10px !important;
	vertical-align: middle !important;
}

.uniteelements-cart-row {
	border-bottom: 1px solid #F1F5F9;
	transition: background 0.15s ease;
}

.uniteelements-cart-row:hover {
	background: #F8FAFC;
}

.uniteelements-cart-remove-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	border-radius: 9px;
	background: #FEF2F2;
	color: #EF4444 !important;
	text-decoration: none;
	border: 1px solid #FEE2E2;
	transition: all 0.18s ease;
}

.uniteelements-cart-remove-btn:hover {
	background: #DC2626;
	color: #FFFFFF !important;
	border-color: #DC2626;
	transform: scale(1.08);
	box-shadow: 0 4px 12px rgba(220, 38, 38, 0.25);
}

.uniteelements-cart-thumb-box {
	width: 60px;
	height: 60px;
	border-radius: 14px;
	overflow: hidden;
	background: #F1F5F9;
	border: 1.5px solid #E2E8F0;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04);
}

.uniteelements-cart-thumb-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.uniteelements-cart-item-title {
	font-size: 15px !important;
	font-weight: 700 !important;
	color: #0F172A !important;
	line-height: 1.4 !important;
	letter-spacing: -0.01em !important;
	white-space: normal !important;
	word-break: normal !important;
	overflow-wrap: break-word !important;
	hyphens: none !important;
}

.uniteelements-cart-item-title a {
	color: #0F172A !important;
	text-decoration: none !important;
	transition: color 0.15s ease;
}

.uniteelements-cart-item-title a:hover {
	color: #2563EB !important;
}

.uniteelements-cart-item-badges {
	margin-top: 6px !important;
}

.uniteelements-badge-entitlement {
	display: inline-flex !important;
	align-items: center !important;
	gap: 5px !important;
	font-size: 11px !important;
	font-weight: 600 !important;
	color: #059669 !important;
	background: #ECFDF5 !important;
	border: 1px solid #A7F3D0 !important;
	padding: 2.5px 8px !important;
	border-radius: 6px !important;
	white-space: nowrap !important;
}

.uniteelements-cart-unit-price {
	font-size: 14.5px;
	font-weight: 600;
	color: #475569;
	white-space: nowrap !important;
	font-variant-numeric: tabular-nums;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.uniteelements-cart-line-total {
	font-size: 16px;
	font-weight: 800;
	color: #1D4ED8;
	white-space: nowrap !important;
	font-variant-numeric: tabular-nums;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* Quantity Input Pill */
.uniteelements-cart-qty-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.uniteelements-cart-qty-wrap .quantity {
	display: inline-flex !important;
	align-items: center !important;
	background: #F8FAFC !important;
	border: 1.5px solid #CBD5E1 !important;
	border-radius: 12px !important;
	padding: 2px 4px !important;
	transition: all 0.2s ease !important;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04) !important;
}

.uniteelements-cart-qty-wrap .quantity:focus-within {
	border-color: #2563EB !important;
	background: #FFFFFF !important;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12) !important;
}

.uniteelements-cart-qty-wrap .quantity input.qty {
	width: 52px !important;
	height: 34px !important;
	border: none !important;
	background: transparent !important;
	text-align: center !important;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #0F172A !important;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
	padding: 0 !important;
	margin: 0 !important;
	outline: none !important;
	box-shadow: none !important;
	-moz-appearance: textfield !important;
}

.uniteelements-cart-qty-wrap .quantity input.qty::-webkit-outer-spin-button,
.uniteelements-cart-qty-wrap .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none !important;
	margin: 0 !important;
}

/* Action Bar & High-Tech Coupon Console */
.uniteelements-cart-action-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	padding: 22px 0 6px;
}

.uniteelements-coupon-box {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-wrap: wrap;
}

.uniteelements-coupon-input-group {
	display: inline-flex;
	align-items: center;
	background: #F8FAFC;
	border: 1.5px solid #CBD5E1;
	border-radius: 12px;
	padding: 3px 4px 3px 12px;
	transition: all 0.2s ease;
	gap: 8px;
	box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
}

.uniteelements-coupon-input-group:focus-within {
	border-color: #2563EB;
	background: #FFFFFF;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.uniteelements-coupon-icon {
	color: #64748B;
	display: flex;
	align-items: center;
	flex-shrink: 0;
	transition: color 0.2s ease;
}

.uniteelements-coupon-input-group:focus-within .uniteelements-coupon-icon {
	color: #2563EB;
}

.uniteelements-coupon-input {
	min-width: 230px !important;
	width: 270px !important;
	border: none !important;
	background: transparent !important;
	padding: 8px 4px !important;
	font-size: 13.5px !important;
	font-weight: 600 !important;
	color: #0F172A !important;
	outline: none !important;
	box-shadow: none !important;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace !important;
	letter-spacing: 0.02em !important;
}

.uniteelements-coupon-input::placeholder {
	color: #94A3B8;
	font-weight: 500;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	letter-spacing: normal;
}

.uniteelements-btn-apply-coupon {
	display: inline-flex !important;
	align-items: center !important;
	gap: 6px !important;
	background: #0F172A !important;
	color: #FFFFFF !important;
	border: none !important;
	border-radius: 9px !important;
	padding: 8px 16px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	cursor: pointer !important;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
	flex-shrink: 0 !important;
	line-height: 1.4 !important;
	box-shadow: 0 2px 6px rgba(15, 23, 42, 0.12) !important;
}

.uniteelements-btn-apply-coupon:hover {
	background: #1E293B !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 6px 16px rgba(15, 23, 42, 0.2) !important;
	color: #FFFFFF !important;
}

.uniteelements-btn-update-cart {
	display: inline-flex !important;
	align-items: center !important;
	gap: 7px !important;
	background: #FFFFFF !important;
	color: #334155 !important;
	border: 1.5px solid #CBD5E1 !important;
	border-radius: 12px !important;
	padding: 10px 20px !important;
	font-size: 13px !important;
	font-weight: 700 !important;
	cursor: pointer !important;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1) !important;
	box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04) !important;
}

.uniteelements-btn-update-cart:hover {
	background: #F8FAFC !important;
	border-color: #93C5FD !important;
	color: #1D4ED8 !important;
	transform: translateY(-1px) !important;
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.12) !important;
}

/* ==========================================================================
   5. Order Settlement & Totals Card
   ========================================================================== */
.uniteelements-cart-totals-card {
	background: #FFFFFF;
	border: 1.5px solid #E2E8F0;
	border-radius: 20px;
	padding: clamp(20px, 3vw, 28px);
	box-shadow: 0 12px 32px -10px rgba(15, 23, 42, 0.05);
	position: sticky;
	top: 90px;
}

.uniteelements-totals-header {
	margin-bottom: 16px;
}

.uniteelements-totals-badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: #EFF6FF;
	color: #1D4ED8;
	border: 1px solid #BFDBFE;
	font-size: 11px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 6px;
	text-transform: uppercase;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
	letter-spacing: 0.04em;
	margin-bottom: 8px;
}

.uniteelements-totals-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #2563EB;
	box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.uniteelements-totals-title {
	font-size: 19px;
	font-weight: 800;
	color: #0F172A;
	margin: 0 0 16px;
	padding-bottom: 12px;
	border-bottom: 1px solid #E2E8F0;
	letter-spacing: -0.02em;
}

.uniteelements-totals-table {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 18px;
}

.uniteelements-totals-table th {
	padding: 10px 0;
	font-size: 13.5px;
	color: #64748B;
	text-align: left;
	font-weight: 600;
}

.uniteelements-totals-table td {
	padding: 10px 0;
	font-size: 14.5px;
	font-weight: 700;
	color: #0F172A;
	text-align: right;
	white-space: nowrap;
	font-variant-numeric: tabular-nums;
	font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

.uniteelements-totals-table .cart-discount th,
.uniteelements-totals-table .cart-discount td {
	color: #059669;
	font-weight: 700;
}

.uniteelements-totals-table .order-total th {
	border-top: 2px dashed #E2E8F0;
	padding-top: 16px;
	font-size: 15px;
	font-weight: 800;
	color: #0F172A;
}

.uniteelements-totals-table .order-total td {
	border-top: 2px dashed #E2E8F0;
	padding-top: 16px;
	font-size: 26px !important;
	font-weight: 900 !important;
	color: #2563EB !important;
	letter-spacing: -0.02em;
}

.uniteelements-proceed-wrap .checkout-button,
.cart-collaterals .wc-proceed-to-checkout .checkout-button {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-height: 52px !important;
	background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 55%, #3B82F6 100%) !important;
	color: #FFFFFF !important;
	font-size: 15px !important;
	font-weight: 800 !important;
	letter-spacing: -0.01em !important;
	padding: 14px 24px !important;
	border-radius: 14px !important;
	text-decoration: none !important;
	border: 1px solid rgba(255, 255, 255, 0.25) !important;
	box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.45), 0 8px 24px -4px rgba(37, 99, 235, 0.45) !important;
	transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1) !important;
	cursor: pointer !important;
	margin-top: 16px !important;
	box-sizing: border-box !important;
}

.uniteelements-proceed-wrap .checkout-button:hover,
.cart-collaterals .wc-proceed-to-checkout .checkout-button:hover {
	background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%) !important;
	transform: translateY(-2px) !important;
	box-shadow: inset 0 1px 1px 0 rgba(255, 255, 255, 0.55), 0 12px 32px -4px rgba(37, 99, 235, 0.6) !important;
	color: #FFFFFF !important;
}

.uniteelements-totals-trust-strip {
	display: flex;
	flex-direction: column;
	gap: 10px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid #E2E8F0;
}

.uniteelements-trust-item {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 12px;
	font-weight: 600;
	color: #475569;
	line-height: 1.35;
}

.uniteelements-trust-item svg {
	flex-shrink: 0;
}

/* ==========================================================================
   6. Modern Empty Cart Component
   ========================================================================== */
.uniteelements-empty-cart-container {
	max-width: 640px;
	margin: 48px auto 96px;
	padding: 0 16px;
}

.uniteelements-empty-cart-card {
	background: #FFFFFF;
	border: 1.5px solid #E2E8F0;
	border-radius: 24px;
	padding: clamp(32px, 5vw, 48px) clamp(20px, 4vw, 36px);
	text-align: center;
	box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.06);
	position: relative;
}

.uniteelements-empty-cart-icon-wrap {
	position: relative;
	display: inline-block;
	margin-bottom: 20px;
}

.uniteelements-empty-cart-aura {
	position: absolute;
	top: -20px;
	left: -20px;
	right: -20px;
	bottom: -20px;
	background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
	border-radius: 50%;
	filter: blur(20px);
	pointer-events: none;
}

.uniteelements-empty-cart-icon {
	width: 72px;
	height: 72px;
	border-radius: 20px;
	background: linear-gradient(135deg, #EFF6FF 0%, #DBEAFE 100%);
	color: #2563EB;
	border: 1.5px solid #BFDBFE;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 1;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15);
}

.uniteelements-empty-badge {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #F1F5F9;
	color: #475569;
	font-size: 11.5px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 999px;
	margin-bottom: 12px;
}

.uniteelements-empty-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: #94A3B8;
}

.uniteelements-empty-title {
	font-size: clamp(1.5rem, 3.5vw, 1.85rem);
	font-weight: 900;
	color: #0F172A;
	margin: 0 0 12px;
	letter-spacing: -0.025em;
}

.uniteelements-empty-lead {
	font-size: 14.5px;
	color: #64748B;
	line-height: 1.6;
	max-width: 480px;
	margin: 0 auto 28px;
}

.uniteelements-empty-actions {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	flex-wrap: wrap;
}

.uniteelements-empty-btn-primary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 100%);
	color: #FFFFFF !important;
	font-size: 13.5px;
	font-weight: 700;
	padding: 11px 22px;
	border-radius: 999px;
	text-decoration: none;
	box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
	transition: all 0.2s ease;
}

.uniteelements-empty-btn-primary:hover {
	background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
	transform: translateY(-2px);
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.45);
	color: #FFFFFF !important;
}

.uniteelements-empty-btn-secondary {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: #FFFFFF;
	color: #0F172A !important;
	border: 1.5px solid #CBD5E1;
	font-size: 13.5px;
	font-weight: 700;
	padding: 11px 20px;
	border-radius: 999px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.uniteelements-empty-btn-secondary:hover {
	background: #F8FAFC;
	border-color: #93C5FD;
	color: #1D4ED8 !important;
	transform: translateY(-2px);
}

/* ==========================================================================
   7. Responsive Mobile Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
	.uniteelements-cart-studio-wrap .uniteelements-cart-grid-layout,
	.uniteelements-cart-grid-layout {
		display: flex !important;
		flex-direction: column !important;
		grid-template-columns: 100% !important;
		width: 100% !important;
		gap: 24px !important;
	}
	.uniteelements-cart-items-card,
	.uniteelements-cart-sidebar-col,
	.cart-collaterals,
	.uniteelements-cart-totals-card {
		width: 100% !important;
		max-width: 100% !important;
		min-width: 0 !important;
		box-sizing: border-box !important;
		position: static !important;
	}
}

@media (max-width: 768px) {
	.uniteelements-cart-funnel-bar {
		flex-direction: column;
		align-items: flex-start;
		gap: 12px;
		padding: 14px 18px;
		border-radius: 16px;
	}
	.uniteelements-funnel-divider {
		display: none;
	}
	.uniteelements-cart-table thead {
		display: none;
	}
	.uniteelements-cart-table,
	.uniteelements-cart-table tbody,
	.uniteelements-cart-row,
	.uniteelements-cart-row td {
		display: block;
		width: 100%;
		box-sizing: border-box;
	}
	.uniteelements-cart-row {
		position: relative;
		padding: 16px 0;
		border-bottom: 1.5px solid #E2E8F0;
	}
	.uniteelements-cart-row td {
		padding: 6px 0;
		text-align: left !important;
	}
	.uniteelements-cart-row td.product-remove {
		position: absolute;
		top: 14px;
		right: 0;
		width: auto;
		padding: 0;
	}
	.uniteelements-cart-row td.product-subtotal {
		text-align: left !important;
	}
	.uniteelements-cart-action-bar {
		flex-direction: column;
		width: 100%;
		gap: 12px;
	}
	.uniteelements-coupon-box {
		width: 100%;
	}
	.uniteelements-coupon-input-group {
		width: 100%;
		box-sizing: border-box;
		display: flex;
	}
	.uniteelements-coupon-input {
		flex: 1 !important;
		min-width: 0 !important;
		width: 100% !important;
	}
	.uniteelements-btn-update-cart {
		width: 100% !important;
		justify-content: center !important;
		box-sizing: border-box !important;
	}
}

@media (max-width: 480px) {
	.uniteelements-cart-studio-wrap {
		margin-top: 16px;
		margin-bottom: 40px;
	}
	.uniteelements-cart-items-card,
	.uniteelements-cart-totals-card {
		padding: 16px 14px;
		border-radius: 16px;
	}
	.uniteelements-coupon-input-group {
		flex-direction: column;
		padding: 10px;
		gap: 10px;
		align-items: stretch;
	}
	.uniteelements-coupon-input {
		padding: 6px 4px !important;
	}
	.uniteelements-btn-apply-coupon {
		width: 100% !important;
		justify-content: center !important;
	}
	.uniteelements-empty-actions {
		flex-direction: column;
		width: 100%;
	}
	.uniteelements-empty-btn-primary,
	.uniteelements-empty-btn-secondary {
		width: 100%;
		justify-content: center;
		box-sizing: border-box;
	}
}



/* ==========================================================================
   8. Recommended Software Catalog Grid & Empty Cart Architecture
   ========================================================================== */
.uniteelements-empty-cart-container {
	max-width: 1140px;
	margin: 20px auto 60px;
	padding: 0 clamp(16px, 3vw, 24px);
	box-sizing: border-box;
}

.uniteelements-empty-cart-recommendations {
	margin-top: 48px;
}

.uniteelements-empty-rec-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 24px;
	flex-wrap: wrap;
	gap: 12px;
}

.uniteelements-empty-rec-title-wrap {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.uniteelements-rec-badge {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	background: #EFF6FF;
	color: #2563EB;
	border: 1px solid #BFDBFE;
	font-size: 11.5px;
	font-weight: 700;
	padding: 3px 10px;
	border-radius: 999px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.uniteelements-rec-title {
	font-size: clamp(20px, 3vw, 26px);
	font-weight: 800;
	color: #0F172A;
	margin: 0;
	letter-spacing: -0.025em;
}

.uniteelements-rec-view-all {
	font-size: 13.5px;
	font-weight: 700;
	color: #2563EB;
	text-decoration: none;
	transition: all 0.2s ease;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.uniteelements-rec-view-all:hover {
	color: #1D4ED8;
	transform: translateX(3px);
}

.uniteelements-rec-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 22px;
}

.uniteelements-rec-card {
	background: #FFFFFF;
	border: 1.5px solid #E2E8F0;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 4px 16px -2px rgba(15, 23, 42, 0.04);
	display: flex;
	flex-direction: column;
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.uniteelements-rec-card:hover {
	transform: translateY(-4px);
	border-color: #93C5FD;
	box-shadow: 0 16px 36px -8px rgba(37, 99, 235, 0.12);
}

.uniteelements-rec-media {
	position: relative;
	width: 100%;
	height: 160px;
	background: linear-gradient(135deg, #F8FAFC 0%, #EFF6FF 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	text-decoration: none;
}

.uniteelements-rec-img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.uniteelements-rec-card:hover .uniteelements-rec-img {
	transform: scale(1.05);
}

.uniteelements-rec-placeholder {
	width: 60px;
	height: 60px;
	border-radius: 16px;
	background: #FFFFFF;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
	border: 1px solid rgba(219, 234, 254, 0.8);
}

.uniteelements-rec-license-tag {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(15, 23, 42, 0.75);
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	color: #FFFFFF;
	font-size: 10.5px;
	font-weight: 700;
	padding: 3px 8px;
	border-radius: 6px;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.uniteelements-rec-info {
	padding: 18px;
	display: flex;
	flex-direction: column;
	flex: 1;
}

.uniteelements-rec-rating {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 6px;
}

.uniteelements-rec-stars {
	color: #F59E0B;
	font-size: 12px;
	letter-spacing: 1px;
}

.uniteelements-rec-score {
	font-size: 11px;
	font-weight: 700;
	color: #64748B;
}

.uniteelements-rec-item-title {
	font-size: 15px;
	font-weight: 800;
	color: #0F172A;
	margin: 0 0 8px;
	line-height: 1.35;
}

.uniteelements-rec-item-title a {
	color: #0F172A;
	text-decoration: none;
	transition: color 0.15s ease;
}

.uniteelements-rec-item-title a:hover {
	color: #2563EB;
}

.uniteelements-rec-desc {
	font-size: 12.5px;
	color: #64748B;
	line-height: 1.5;
	margin: 0 0 12px;
}

.uniteelements-rec-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin-bottom: 16px;
}

.uniteelements-rec-tag {
	font-size: 10.5px;
	font-weight: 600;
	background: #F1F5F9;
	color: #475569;
	padding: 2px 7px;
	border-radius: 4px;
	border: 1px solid #E2E8F0;
}

.uniteelements-rec-footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: auto;
	padding-top: 12px;
	border-top: 1px solid #F1F5F9;
}

.uniteelements-rec-price-wrap {
	display: flex;
	flex-direction: column;
}

.uniteelements-rec-price-label {
	font-size: 10.5px;
	color: #94A3B8;
	font-weight: 600;
	text-transform: uppercase;
}

.uniteelements-rec-price {
	font-size: 16px;
	font-weight: 900;
	color: #1D4ED8;
}

.uniteelements-rec-deploy-btn {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	background: #0F172A;
	color: #FFFFFF !important;
	font-size: 12.5px;
	font-weight: 700;
	padding: 8px 15px;
	border-radius: 999px;
	text-decoration: none;
	transition: all 0.2s ease;
}

.uniteelements-rec-deploy-btn:hover {
	background: #2563EB;
	transform: translateY(-1px);
	box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Empty Trust Deck */
.uniteelements-empty-trust-deck {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 16px;
	margin-top: 48px;
}

.uniteelements-empty-trust-card {
	background: #FFFFFF;
	border: 1.5px solid #E2E8F0;
	border-radius: 18px;
	padding: 18px 20px;
	display: flex;
	align-items: center;
	gap: 14px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.02);
}

.uniteelements-trust-icon-box {
	width: 44px;
	height: 44px;
	border-radius: 12px;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.uniteelements-trust-card-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.uniteelements-trust-card-text strong {
	font-size: 13.5px;
	font-weight: 800;
	color: #0F172A;
}

.uniteelements-trust-card-text span {
	font-size: 12px;
	color: #64748B;
	line-height: 1.4;
}

/* ==========================================================================
   9. WooCommerce Gutenberg Empty Cart Block Overrides & Polish
   ========================================================================== */
.wc-block-cart__empty-cart-section {
	text-align: center !important;
	padding: 48px 24px !important;
	background: #FFFFFF !important;
	border: 1.5px solid #E2E8F0 !important;
	border-radius: 24px !important;
	box-shadow: 0 16px 40px -12px rgba(15, 23, 42, 0.06) !important;
	max-width: 800px !important;
	margin: 0 auto 40px !important;
}

.wc-block-cart__empty-cart-title {
	font-size: 26px !important;
	font-weight: 800 !important;
	color: #0F172A !important;
	margin-bottom: 12px !important;
	letter-spacing: -0.02em !important;
}

.wc-block-grid__products {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
	gap: 20px !important;
	list-style: none !important;
	padding: 0 !important;
	margin: 24px 0 !important;
}

.wc-block-grid__product {
	background: #FFFFFF !important;
	border: 1.5px solid #E2E8F0 !important;
	border-radius: 18px !important;
	padding: 16px !important;
	text-align: center !important;
	transition: all 0.2s ease !important;
	display: flex !important;
	flex-direction: column !important;
	justify-content: space-between !important;
}

.wc-block-grid__product:hover {
	border-color: #93C5FD !important;
	transform: translateY(-3px) !important;
	box-shadow: 0 12px 28px -6px rgba(37, 99, 235, 0.1) !important;
}

.wc-block-grid__product-image {
	border-radius: 12px !important;
	overflow: hidden !important;
	margin-bottom: 12px !important;
}

.wc-block-grid__product-title {
	font-size: 14.5px !important;
	font-weight: 700 !important;
	color: #0F172A !important;
	margin: 8px 0 !important;
	line-height: 1.35 !important;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link,
.wc-block-grid__product-add-to-cart button {
	background: #0F172A !important;
	color: #FFFFFF !important;
	font-size: 12.5px !important;
	font-weight: 700 !important;
	padding: 8px 16px !important;
	border-radius: 999px !important;
	border: none !important;
	cursor: pointer !important;
	transition: background 0.2s ease !important;
}

.wc-block-grid__product-add-to-cart .wp-block-button__link:hover,
.wc-block-grid__product-add-to-cart button:hover {
	background: #2563EB !important;
}
