			.aigenix-cart-container {
				display: inline-flex;
				align-items: center;
				position: relative;
				width: 100%;
			}

			.aigenix-cart-icon-wrap {
				display: inline-flex;
				position: relative;
				cursor: pointer;
				text-decoration: none;
				color: inherit;
				padding: 8px;
			}

			.aigenix-cart-icon {
				display: inline-flex;
				align-items: center;
				justify-content: center;
				transition: all 0.3s ease;
			}

			.aigenix-cart-badge {
				position: absolute;
				top: 0;
				right: 0;
				background-color: #ef4444;
				color: #ffffff;
				font-size: 11px;
				font-weight: 700;
				min-width: 18px;
				height: 18px;
				border-radius: 50%;
				display: flex;
				align-items: center;
				justify-content: center;
				padding: 0 4px;
				box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
				transition: all 0.3s ease;
			}

			.aigenix-cart-dropdown {
				position: absolute;
				top: 100%;
				right: 0;
				width: 320px;
				background: #ffffff;
				border: 1px solid #e2e8f0;
				border-radius: var(--av-radius-lg);
				box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
				padding: 20px;
				z-index: 9999;
				visibility: hidden;
				opacity: 0;
				transform: translateY(10px);
				transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
				margin-top: 8px;
			}

			.aigenix-cart-container:hover .aigenix-cart-dropdown {
				visibility: visible;
				opacity: 1;
				transform: translateY(0);
			}

			/* WC mini cart tweaks */
			.aigenix-cart-dropdown .woocommerce-mini-cart {
				margin: 0;
				padding: 0;
				list-style: none;
				max-height: 320px;
				overflow-y: auto;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart::-webkit-scrollbar {
				width: 4px;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart::-webkit-scrollbar-thumb {
				background-color: rgba(0, 0, 0, 0.2);
				border-radius: 4px;
			}

			html[data-theme="dark"] .aigenix-cart-dropdown .woocommerce-mini-cart::-webkit-scrollbar-thumb {
				background-color: rgba(255, 255, 255, 0.2);
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart-item {
				display: flex;
				flex-direction: column;
				gap: 12px;
				padding: 12px 0;
				padding-inline-end: 28px;
				border-bottom: 1px solid #f1f5f9;
				position: relative;
				transition: border-color 0.3s ease;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart-item:last-child {
				border-bottom: none;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart-item img {
				width: 48px;
				height: 48px;
				object-fit: cover;
				border-radius: var(--av-radius-sm);
				flex-shrink: 0;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart-item a:not(.remove) {
				display: flex;
				align-items: center;
				gap: 12px;
				flex: 1;
				text-decoration: none;
				color: #0f172a;
				font-weight: 500;
				margin-bottom: 0;
				transition: color 0.3s ease;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart-item .quantity {
				color: #64748b;
				font-size: 13px;
				white-space: nowrap;
				margin-top: 0;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart-item a.remove {
				position: absolute;
				inset-inline-end: 0;
				top: 50%;
				transform: translateY(-50%);
				color: #ef4444 !important;
				font-size: 20px;
				line-height: 1;
				text-decoration: none;
				transition: all 0.3s ease;
				display: flex;
				align-items: center;
				justify-content: center;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart-item a.remove:hover {
				color: #dc2626 !important;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart__total {
				margin: 16px 0;
				font-weight: 700;
				display: flex;
				justify-content: space-between;
				font-size: 15px;
				color: #0f172a;
				padding-top: 12px;
				border-top: 1px solid #e2e8f0;
			}

			html[data-theme="dark"] .aigenix-cart-dropdown .woocommerce-mini-cart__total {
				border-top-color: #334155;
				color: #f8fafc;
			}

			html[data-theme="dark"] .aigenix-cart-dropdown .woocommerce-mini-cart__total .amount,
			html[data-theme="dark"] .aigenix-cart-dropdown .woocommerce-mini-cart-item .quantity .amount {
				color: #f8fafc;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart__buttons {
				display: flex;
				gap: 8px;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart__buttons a.button {
				flex: 1;
				text-align: center;
				padding: 10px;
				font-size: 13px;
				font-weight: 600;
				text-decoration: none;
				border-radius: var(--av-radius-sm);
				display: inline-block;
				transition: all 0.3s ease;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart__buttons a.button.checkout {
				background-color: #2563eb;
				color: #ffffff;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart__buttons a.button:not(.checkout) {
				background-color: #f1f5f9 !important;
				color: #475569 !important;
			}

			.aigenix-cart-dropdown .woocommerce-mini-cart__empty-message {
				margin: 0;
				text-align: center;
				padding: 20px 0;
				color: #64748b;
			}

			html[data-theme="dark"] .aigenix-cart-dropdown .woocommerce-mini-cart__empty-message {
				color: #94a3b8;
			}

			html[data-theme="dark"] .aigenix-cart-dropdown {
				background: #1e293b;
				border-color: #334155;
			}

			html[data-theme="dark"] .aigenix-cart-dropdown .woocommerce-mini-cart-item {
				border-bottom-color: #334155;
			}

			html[data-theme="dark"] .aigenix-cart-dropdown .woocommerce-mini-cart-item a:not(.remove) {
				color: #f8fafc;
			}

			html[data-theme="dark"] .aigenix-cart-dropdown .woocommerce-mini-cart-item .quantity {
				color: #94a3b8;
			}

			html[data-theme="dark"] .aigenix-cart-dropdown .woocommerce-mini-cart__buttons a.button:not(.checkout) {
				background-color: #334155;
				color: #f8fafc;
			}