/* ==========================================================================
   biXci Smart Cart & Full-Screen Category Navigation - Stylesheet
   Design System: Frosted Glass Anti-Gravity Panel, Inter Tight, biXci Yellow & Blue
   ========================================================================== */

:root {
	--bixci-yellow: #FFDA00;
	--bixci-blue: #0A3B91;
	--bixci-bg: #F2F2F0;
	--bixci-surface: #FFFFFF;
	--bixci-surface-blur: rgba(242, 242, 240, 0.88);
	--bixci-text-main: #111111;
	--bixci-text-muted: #666666;
	--bixci-teal: #4ECDC4;
	--bixci-red: #C0392B;
	--bixci-green: #00A650;
	--bixci-border: rgba(10, 59, 145, 0.18);
	--bixci-shadow: 0 14px 40px rgba(0, 0, 0, 0.14);
	--bixci-font: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
	--bixci-radius: 16px;
	--bixci-transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   1. STICKY BOTTOM NAVIGATION BAR & FREE SHIPPING PANEL
   ========================================================================== */
.bixci-bottom-nav-wrapper {
	position: fixed;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 100000;
	background: rgba(255, 255, 255, 0.88);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.08);
	font-family: var(--bixci-font);
	box-sizing: border-box;
}

@media (min-width: 992px) {
	.bixci-bottom-nav-wrapper {
		display: none;
	}
	.bixci-bottom-nav-wrapper.show-desktop {
		display: block;
		max-width: 480px;
		left: 50%;
		transform: translateX(-50%);
		border-radius: 20px 20px 0 0;
		bottom: 0;
		overflow: visible;
	}
}

/* Top Shipping Tracker Bar (Above Bottom Nav) - Frosted Glass Curved Bar */
.bixci-shipping-tracker-bar {
	background: rgba(249, 249, 248, 0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	padding: 8px 16px 6px 16px;
	border-top-left-radius: 50% 14px;
	border-top-right-radius: 50% 14px;
	border-top: 1.5px solid rgba(255, 255, 255, 0.7);
	border-bottom: 1px solid rgba(235, 235, 230, 0.6);
	box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.06);
	position: relative;
}

.bixci-tracker-header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 2px;
	font-size: 12px;
	line-height: 1.2;
}

.bixci-tracker-left {
	color: var(--bixci-text-main);
	font-weight: 500;
}

.bixci-tracker-left strong {
	font-weight: 800;
}

.bixci-tracker-dynamic-msg {
	margin-left: calc(22% + 10px);
	transition: margin-left 0.35s ease;
}

/* 2-Part Kinetic Rotator for Goal Tracker Dynamic Message */
.bixci-msg-rotator-wrap {
	display: inline-block;
	height: 18px;
	overflow: hidden;
	position: relative;
	vertical-align: middle;
}

.bixci-msg-rotator-track {
	display: flex;
	flex-direction: column;
	animation: bixciFlipTwoLines 4s cubic-bezier(0.68, -0.4, 0.265, 1.4) infinite;
}

.bixci-msg-line {
	height: 18px;
	line-height: 18px;
	font-size: 12px;
	font-weight: 500;
	color: #111111;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	text-align: right;
	white-space: nowrap;
}

.bixci-msg-line strong {
	font-weight: 800;
	margin: 0 3px;
}

@keyframes bixciFlipTwoLines {
	0%, 42% {
		transform: translateY(0%);
	}
	50%, 92% {
		transform: translateY(-50%);
	}
	100% {
		transform: translateY(0%);
	}
}

.bixci-tracker-right-rotator {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	color: var(--bixci-green);
	font-weight: 800;
	font-size: 11px;
}

.bixci-kinetic-rotator-wrap {
	display: inline-block;
	height: 16px;
	overflow: hidden;
	position: relative;
	vertical-align: middle;
	min-width: 60px;
}

.bixci-rotator-track {
	display: flex;
	flex-direction: column;
	animation: bixciFlipWords 4.5s cubic-bezier(0.68, -0.4, 0.265, 1.4) infinite;
}

.bixci-rotator-word {
	height: 16px;
	line-height: 16px;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: -0.1px;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	white-space: nowrap;
	color: #0A3B91; /* Solid Dark Blue for all words */
}

@keyframes bixciFlipWords {
	0%, 28% {
		transform: translateY(0%);
	}
	33%, 61% {
		transform: translateY(-33.333%);
	}
	66%, 94% {
		transform: translateY(-66.666%);
	}
	100% {
		transform: translateY(0%);
	}
}

/* Elliptical Arc SVG Vector Track */
.bixci-tracker-arc-wrap {
	position: relative;
	width: 100%;
	height: 18px;
}

.bixci-tracker-arc-svg {
	width: 100%;
	height: 18px;
	display: block;
	overflow: visible;
}

.bixci-arc-track-bg {
	fill: none;
	stroke: #E2E8F0;
	stroke-width: 4;
	stroke-linecap: round;
}

.bixci-arc-track-fill {
	fill: none;
	stroke: var(--bixci-green);
	stroke-width: 4;
	stroke-linecap: round;
	stroke-dasharray: 100 150;
	stroke-dashoffset: 100;
	transition: stroke-dashoffset 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Clickable Milestone Dots & Selected Gift Avatar Preview Badge */
button.bixci-marker-dot {
	cursor: pointer;
	padding: 0;
	margin: 0;
	outline: none;
	appearance: none;
	background: #FFFFFF;
	border: 2px solid #CBD5E1;
	border-radius: 50%;
	width: 13px;
	height: 13px;
	position: absolute;
	transform: translate(-50%, -50%);
	z-index: 5;
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

button.bixci-marker-dot:hover,
button.bixci-marker-dot.active {
	transform: translate(-50%, -50%) scale(1.3);
	border-color: #0A3B91;
	box-shadow: 0 0 0 3px rgba(10, 59, 145, 0.2);
}

.bixci-dot-pulse {
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 1.5px solid var(--bixci-green);
	opacity: 0;
	animation: bixciDotPulse 2.5s infinite;
}

@keyframes bixciDotPulse {
	0% { transform: scale(0.7); opacity: 0.9; }
	100% { transform: scale(1.9); opacity: 0; }
}

.bixci-marker-dot.gift-dot {
	left: 60%;
	top: 3px;
}

.bixci-marker-dot.shipping-dot {
	left: 97.5%;
	top: 15px;
	transform: translate(-50%, -50%);
}

.bixci-marker-dot.reached {
	background: var(--bixci-green);
	border-color: #FFFFFF;
	box-shadow: 0 0 0 2px var(--bixci-green);
}

/* Gift Cart Item States */
.bixci-cart-item.bixci-gift-item {
	transition: all 0.3s ease;
	border-radius: 12px;
	margin-bottom: 8px;
}

.bixci-cart-item.bixci-gift-pending {
	background: #f1f5f9 !important;
	border: 1.5px dashed #94a3b8 !important;
	box-shadow: none !important;
}

.bixci-cart-item.bixci-gift-pending .bixci-item-thumb {
	filter: grayscale(85%);
	opacity: 0.75;
}

.bixci-cart-item.bixci-gift-pending .bixci-item-name {
	color: #475569;
}

.bixci-gift-badge {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 7px;
	border-radius: 4px;
	margin-top: 3px;
}

.bixci-gift-badge.pending {
	background: #e2e8f0;
	color: #475569;
	border: 1px solid #cbd5e1;
}

.bixci-gift-badge.winner {
	background: #fef08a;
	color: #854d0e;
	border: 1px solid #fde047;
	font-size: 10.5px;
	font-weight: 800;
	letter-spacing: 0.2px;
}

.bixci-cart-item.bixci-gift-winner {
	background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%) !important;
	border: 1.5px solid #eab308 !important;
	box-shadow: 0 4px 14px rgba(234, 179, 8, 0.25) !important;
}

.bixci-cart-item.bixci-gift-winner .bixci-item-thumb {
	filter: none;
	opacity: 1;
}

/* Circular Floating Selected Gift Thumbnail Badge (+5px larger: 27px) */
.bixci-selected-gift-preview {
	position: absolute;
	top: -9px;
	left: calc(50% + 15px);
	transform: translateX(-50%);
	width: 27px;
	height: 27px;
	background: rgba(255, 255, 255, 0.95);
	border: 2px solid rgba(255, 255, 255, 0.45);
	border-radius: 50%;
	padding: 0;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.08);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	pointer-events: none;
	animation: bixciBounceIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bixci-selected-gift-preview img {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
	display: block;
}

.bixci-selected-gift-preview .bixci-preview-content {
	font-size: 11px;
	line-height: 1;
}

/* Floating Milestone Popovers */
.bixci-milestone-popover {
	position: absolute;
	bottom: 32px;
	background: #FFFFFF;
	border-radius: 14px;
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18), 0 2px 8px rgba(0, 0, 0, 0.08);
	border: 1px solid #ECECE8;
	padding: 12px 14px;
	width: 260px;
	z-index: 999;
	display: none;
	opacity: 0;
	transform: translateY(8px) scale(0.95);
	transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

#bixci_popover_gift {
	left: 20%;
	transform-origin: bottom center;
}

#bixci_popover_shipping {
	right: 6px;
	transform-origin: bottom right;
}

.bixci-milestone-popover.active {
	display: block;
	opacity: 1;
	transform: translateY(0) scale(1);
}

.bixci-popover-arrow {
	position: absolute;
	bottom: -6px;
	left: 50%;
	transform: translateX(-50%) rotate(45deg);
	width: 12px;
	height: 12px;
	background: #FFFFFF;
	border-right: 1px solid #ECECE8;
	border-bottom: 1px solid #ECECE8;
}

.bixci-popover-arrow.arrow-right {
	left: auto;
	right: 18px;
}

.bixci-popover-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 8px;
	padding-bottom: 6px;
	border-bottom: 1px solid #F2F2F0;
}

.bixci-popover-icon {
	font-size: 18px;
}

.bixci-popover-title-wrap h4 {
	font-size: 12px;
	font-weight: 800;
	margin: 0;
	color: #111111;
}

.bixci-popover-title-wrap p {
	font-size: 10px;
	color: #666666;
	margin: 1px 0 0 0;
}

.bixci-popover-close {
	background: none;
	border: none;
	font-size: 18px;
	color: #999999;
	cursor: pointer;
	padding: 0 4px;
	margin-left: auto;
	line-height: 1;
}

.bixci-popover-close:hover {
	color: #111111;
}

.bixci-popover-desc {
	font-size: 11px;
	color: #444444;
	line-height: 1.35;
	margin: 0 0 8px 0;
}

.bixci-popover-gift-grid {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.bixci-popover-gift-card {
	cursor: pointer;
}

.bixci-popover-gift-card input {
	display: none;
}

.bixci-popover-gift-inner {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 6px 8px;
	background: #F9F9F8;
	border: 1px solid #EAEAEA;
	border-radius: 8px;
	font-size: 11px;
	font-weight: 600;
	color: #333333;
	transition: var(--bixci-transition);
}

.bixci-popover-gift-card input:checked + .bixci-popover-gift-inner {
	background: #FFFDEB;
	border-color: #FFD600;
	color: #111111;
	font-weight: 800;
	box-shadow: 0 2px 6px rgba(255, 214, 0, 0.3);
}

/* 8-Product Gift Grid Styles */
.bixci-popover-gift-large {
	width: 320px !important;
	left: 5% !important;
}

.bixci-popover-gift-grid-8 {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 6px;
	max-height: 220px;
	overflow-y: auto;
	padding-right: 4px;
}

.bixci-popover-gift-grid-8::-webkit-scrollbar {
	width: 4px;
}

.bixci-popover-gift-grid-8::-webkit-scrollbar-thumb {
	background: #CBD5E1;
	border-radius: 4px;
}

.bixci-popover-gift-card-8 {
	cursor: pointer;
	margin: 0;
}

.bixci-popover-gift-card-8 input {
	display: none;
}

.bixci-popover-gift-inner-8 {
	display: flex;
	align-items: center;
	gap: 6px;
	padding: 5px 6px;
	background: #F9F9F8;
	border: 1.5px solid #EAEAEA;
	border-radius: 8px;
	transition: var(--bixci-transition);
	height: 100%;
}

.bixci-gift-thumb-8 {
	width: 32px;
	height: 32px;
	border-radius: 6px;
	object-fit: cover;
	flex-shrink: 0;
	border: 1px solid #ECECE8;
}

.bixci-popover-gift-name-8 {
	font-size: 10px;
	font-weight: 600;
	color: #222222;
	line-height: 1.2;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bixci-popover-gift-card-8 input:checked + .bixci-popover-gift-inner-8 {
	background: #FFFDEB;
	border-color: #FFD600;
	box-shadow: 0 2px 8px rgba(255, 214, 0, 0.35);
}

.bixci-popover-gift-card-8 input:checked + .bixci-popover-gift-inner-8 .bixci-popover-gift-name-8 {
	color: #111111;
	font-weight: 800;
}

.bixci-popover-badge-tag {
	background: #E8F8F0;
	color: #27AE60;
	padding: 4px 8px;
	border-radius: 6px;
	font-size: 10px;
	font-weight: 700;
	text-align: center;
}

.bixci-popover-needed-banner {
	background: #FFFDEB;
	border: 1px dashed #FFD600;
	border-radius: 8px;
	padding: 6px 10px;
	font-size: 11px;
	font-weight: 600;
	color: #333333;
	margin-bottom: 8px;
	text-align: center;
}

.bixci-popover-needed-banner strong {
	color: #0A3B91;
	font-weight: 800;
}

.bixci-popover-benefits-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 6px;
}

.bixci-benefit-item {
	display: flex;
	align-items: flex-start;
	gap: 6px;
	background: #F8FAF9;
	padding: 6px 8px;
	border-radius: 8px;
	border: 1px solid #EAEFEA;
}

.bixci-benefit-icon {
	font-size: 14px;
	line-height: 1;
	margin-top: 1px;
}

.bixci-benefit-text {
	display: flex;
	flex-direction: column;
}

.bixci-benefit-text strong {
	font-size: 11px;
	color: #111111;
	font-weight: 800;
}

.bixci-benefit-text span {
	font-size: 10.5px;
	color: #555555;
	line-height: 1.25;
}

/* Free Gift Selection Box inside Mini Cart Drawer */
.bixci-gift-selector-box {
	background: #FFFDEB;
	border: 1.5px dashed #FFD600;
	border-radius: 12px;
	padding: 10px 14px;
	margin: 10px 16px;
	display: none;
}

.bixci-gift-selector-box.unlocked {
	display: block;
	animation: bixciFadeIn 0.3s ease-in-out;
}

.bixci-gift-header {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 6px;
}

.bixci-gift-icon {
	font-size: 18px;
}

.bixci-gift-title-wrap h4 {
	font-size: 12px;
	font-weight: 800;
	margin: 0;
	color: #111111;
}

.bixci-gift-title-wrap p {
	font-size: 11px;
	color: #666666;
	margin: 1px 0 0 0;
}

.bixci-gift-options-grid {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
}

.bixci-gift-card {
	flex: 1;
	min-width: 80px;
	cursor: pointer;
}

.bixci-gift-card input {
	display: none;
}

.bixci-gift-card-inner {
	display: flex;
	align-items: center;
	gap: 4px;
	padding: 5px 8px;
	background: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 8px;
	font-size: 10px;
	font-weight: 600;
	color: #333333;
	transition: var(--bixci-transition);
}

.bixci-gift-card input:checked + .bixci-gift-card-inner {
	background: #0A3B91;
	color: #FFFFFF;
	border-color: #0A3B91;
	font-weight: 800;
	box-shadow: 0 2px 6px rgba(10, 59, 145, 0.3);
}

/* 3-Column Bottom Navigation Bar */
.bixci-bottom-nav-grid {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding: 6px 16px calc(6px + env(safe-area-inset-bottom));
	background: #FFFFFF;
	position: relative;
	overflow: visible;
}

.bixci-nav-tab {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: none;
	border: none;
	color: var(--bixci-text-main);
	text-decoration: none;
	cursor: pointer;
	padding: 4px 8px;
	font-family: var(--bixci-font);
	transition: var(--bixci-transition);
}

.bixci-nav-tab:hover,
.bixci-nav-tab.active {
	color: var(--bixci-blue);
	background: rgba(10, 59, 145, 0.08);
	border-radius: 12px;
}

.bixci-tab-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 24px;
	color: var(--bixci-text-main);
}

.bixci-nav-tab.active .bixci-tab-icon {
	color: var(--bixci-blue);
}

.bixci-tab-label {
	font-size: 11px;
	font-weight: 700;
	margin-top: 3px;
	color: var(--bixci-text-main);
}

/* Off-Screen Left Floating Home Button (Small 3D Yellow Pill Style) */
.bixci-tab-home-pill {
	position: absolute;
	left: -20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 15;
	text-decoration: none;
	cursor: pointer;
}

.bixci-home-pill-inner {
	background: linear-gradient(180deg, #FFF066 0%, #FFD600 55%, #E6B800 100%);
	color: var(--bixci-text-main);
	padding: 7px 12px 7px 22px;
	border-radius: 30px;
	border: 2.5px solid #FFFFFF;
	border-bottom: 3.5px solid #C89200;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 
		inset 0 1px 1px rgba(255, 255, 255, 0.9),
		inset 0 -2px 3px rgba(0, 0, 0, 0.12),
		0 6px 16px -2px rgba(255, 214, 0, 0.65),
		0 4px 12px rgba(0, 0, 0, 0.18);
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	user-select: none;
}

.bixci-tab-home-pill:hover .bixci-home-pill-inner,
.bixci-tab-home-pill:active .bixci-home-pill-inner {
	transform: scale(0.95);
	background: linear-gradient(180deg, #FFF380 0%, #FFDC1A 55%, #ECA600 100%);
}

.bixci-home-pill-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111111;
}

/* Off-Screen Right Floating Checkout Button (Small 3D Yellow Pill Style) */
.bixci-tab-checkout-pill {
	position: absolute;
	right: -20px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 15;
	text-decoration: none;
	cursor: pointer;
}

.bixci-checkout-pill-inner {
	background: linear-gradient(180deg, #FFF066 0%, #FFD600 55%, #E6B800 100%);
	color: var(--bixci-text-main);
	padding: 7px 22px 7px 12px;
	border-radius: 30px;
	border: 2.5px solid #FFFFFF;
	border-bottom: 3.5px solid #C89200;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 
		inset 0 1px 1px rgba(255, 255, 255, 0.9),
		inset 0 -2px 3px rgba(0, 0, 0, 0.12),
		0 6px 16px -2px rgba(255, 214, 0, 0.65),
		0 4px 12px rgba(0, 0, 0, 0.18);
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	user-select: none;
}

.bixci-tab-checkout-pill:hover .bixci-checkout-pill-inner,
.bixci-tab-checkout-pill:active .bixci-checkout-pill-inner {
	transform: scale(0.95);
	background: linear-gradient(180deg, #FFF380 0%, #FFDC1A 55%, #ECA600 100%);
}

.bixci-checkout-pill-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	color: #111111;
}

/* Central Highlighted biXci Yellow Carrito Pill (Tactile Realistic 3D Button) */
.bixci-tab-cart-pill {
	padding: 0;
	position: relative;
	z-index: 10;
	margin-top: -22px;
	margin-bottom: -2px;
	text-decoration: none;
}

.bixci-cart-pill-inner {
	background: linear-gradient(180deg, #FFF066 0%, #FFD600 55%, #E6B800 100%);
	color: var(--bixci-text-main);
	padding: 10px 36px 9px 36px;
	border-radius: 38px;
	border: 3px solid #FFFFFF;
	border-bottom: 4px solid #C89200;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: 
		inset 0 1px 1px rgba(255, 255, 255, 0.9),
		inset 0 -2px 3px rgba(0, 0, 0, 0.12),
		0 10px 24px -2px rgba(255, 214, 0, 0.7),
		0 6px 14px rgba(0, 0, 0, 0.22);
	transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
	position: relative;
	user-select: none;
}

.bixci-tab-cart-pill:hover .bixci-cart-pill-inner {
	background: linear-gradient(180deg, #FFF380 0%, #FFDC1A 55%, #ECA600 100%);
	transform: translateY(-3px);
	box-shadow: 
		inset 0 1px 2px rgba(255, 255, 255, 1),
		inset 0 -2px 3px rgba(0, 0, 0, 0.15),
		0 14px 28px -2px rgba(255, 214, 0, 0.85),
		0 8px 18px rgba(0, 0, 0, 0.26);
}

.bixci-tab-cart-pill:active .bixci-cart-pill-inner {
	transform: translateY(2px);
	border-bottom-width: 2px;
	box-shadow: 
		inset 0 2px 4px rgba(0, 0, 0, 0.2),
		0 4px 10px rgba(255, 214, 0, 0.5),
		0 2px 6px rgba(0, 0, 0, 0.15);
}

.bixci-cart-pill-icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.6));
}

.bixci-cargo-bike-icon {
	width: 36px;
	height: 23px;
}

.bixci-cart-badge {
	position: absolute;
	top: -10px;
	right: -16px;
	background: linear-gradient(180deg, #1850B3 0%, #0A3B91 100%);
	color: #FFFFFF;
	font-size: 11px;
	font-weight: 900;
	height: 20px;
	min-width: 20px;
	padding: 0 6px;
	border-radius: 12px;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 3px 8px rgba(10, 59, 145, 0.5), inset 0 1px 1px rgba(255, 255, 255, 0.5);
	opacity: 0;
	transform: scale(0.6);
	transition: var(--bixci-transition);
}

.bixci-cart-badge.active {
	opacity: 1;
	transform: scale(1);
}

.bixci-pill-label {
	font-size: 12px;
	font-weight: 800;
	margin-top: 2px;
	letter-spacing: -0.2px;
	color: #111111;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   2. 80% LEFT-ALIGNED INTERACTIVE CATEGORY PANEL
   ========================================================================== */
.bixci-fullscreen-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(17, 17, 17, 0.5);
	backdrop-filter: blur(6px);
	-webkit-backdrop-filter: blur(6px);
	z-index: 99980;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bixci-fullscreen-overlay.active {
	opacity: 1;
	visibility: visible;
}

/* Category Panel: 80% width, attached to Left, stops ABOVE bottom nav bar (90px bottom offset) */
.bixci-fullscreen-panel {
	position: fixed;
	top: 0;
	left: 0;
	width: 80%;
	max-width: 500px;
	bottom: 84px; /* Does NOT cover the bottom navigation bar! */
	z-index: 99985;
	background: rgba(244, 244, 240, 0.94);
	backdrop-filter: blur(20px) saturate(180%);
	-webkit-backdrop-filter: blur(20px) saturate(180%);
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-100%);
	box-shadow: 10px 0 35px rgba(0, 0, 0, 0.18);
	border-radius: 0 20px 20px 0;
	border-right: 2px solid var(--bixci-yellow);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, visibility 0.3s ease;
	font-family: var(--bixci-font);
	overflow: hidden;
}

.bixci-fullscreen-panel.active {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

/* Panel Header with Yellow-to-Blue Gradient Border */
.bixci-panel-header {
	background: rgba(255, 255, 255, 0.96);
	padding: 14px 18px 10px 18px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
	position: relative;
	border-bottom: 4px solid;
	border-image: linear-gradient(90deg, #FFDA00 0%, #0A3B91 100%) 1;
}

.bixci-panel-top-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}

.bixci-panel-logo {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bixci-logo-icon {
	width: 30px;
	height: 30px;
	background: var(--bixci-blue);
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 800;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.bixci-logo-text {
	font-size: 20px;
	font-weight: 800;
	color: var(--bixci-blue);
	letter-spacing: -0.5px;
}

.bixci-header-close-btn {
	background: none;
	border: none;
	font-size: 28px;
	color: var(--bixci-text-muted);
	cursor: pointer;
	line-height: 1;
	transition: var(--bixci-transition);
}

.bixci-header-close-btn:hover {
	color: var(--bixci-text-main);
	transform: rotate(90deg);
}

/* Search Bar Input & Dynamic Moving Ticker Text */
.bixci-panel-search-wrapper {
	position: relative;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
}

.bixci-search-icon {
	position: absolute;
	left: 14px;
	color: var(--bixci-blue);
	pointer-events: none;
	z-index: 3;
}

.bixci-search-ticker {
	position: absolute;
	left: 40px;
	right: 40px;
	top: 50%;
	transform: translateY(-50%);
	overflow: hidden;
	white-space: nowrap;
	pointer-events: none;
	color: #666666;
	font-size: 13px;
	font-weight: 500;
	z-index: 2;
	transition: opacity 0.2s ease, visibility 0.2s ease;
}

.bixci-panel-search-wrapper.is-focused .bixci-search-ticker,
.bixci-panel-search-wrapper.has-value .bixci-search-ticker {
	opacity: 0;
	visibility: hidden;
}

.bixci-ticker-text {
	display: inline-block;
	white-space: nowrap;
	animation: bixciTickerScroll 8s linear infinite;
}

@keyframes bixciTickerScroll {
	0% {
		transform: translateX(0%);
	}
	45% {
		transform: translateX(-40%);
	}
	55% {
		transform: translateX(-40%);
	}
	95% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(0%);
	}
}

.bixci-panel-search-wrapper input {
	width: 100%;
	padding: 10px 38px;
	background: #FFFFFF;
	border: 1px solid var(--bixci-blue);
	border-radius: 30px;
	font-family: var(--bixci-font);
	font-size: 15px !important; /* Mobile zoom prevention */
	font-weight: 600;
	color: var(--bixci-text-main);
	box-shadow: 0 4px 14px rgba(10, 59, 145, 0.08);
	transition: var(--bixci-transition);
	box-sizing: border-box;
	position: relative;
	z-index: 1;
}

.bixci-panel-search-wrapper input:focus {
	outline: none;
	border-color: var(--bixci-blue);
	box-shadow: 0 4px 20px rgba(10, 59, 145, 0.2);
}

.bixci-clear-search {
	position: absolute;
	right: 12px;
	background: none;
	border: none;
	font-size: 18px;
	color: var(--bixci-text-muted);
	cursor: pointer;
	display: none;
	z-index: 3;
}

/* Ultra-Compact Floating Product Search Ticker Pill (Continuous Infinite Marquee Carousel) */
.bixci-floating-product-suggestion {
	display: none;
	align-items: center;
	margin-top: 3px;
	padding: 4px 10px;
	background: var(--bixci-yellow);
	color: var(--bixci-text-main);
	border-radius: 16px;
	font-size: 11.5px;
	font-weight: 700;
	cursor: pointer;
	box-shadow: 0 3px 10px rgba(255, 218, 0, 0.45);
	border: 1px solid rgba(17, 17, 17, 0.12);
	overflow: hidden;
	height: 24px;
	transition: var(--bixci-transition);
}

.bixci-floating-product-suggestion.show {
	display: flex;
}

.bixci-floating-product-suggestion:hover {
	transform: scale(1.01);
	box-shadow: 0 4px 14px rgba(255, 218, 0, 0.65);
}

.bixci-float-ticker-wrapper {
	width: 100%;
	overflow: hidden;
	position: relative;
	white-space: nowrap;
}

.bixci-float-ticker-track {
	display: inline-flex;
	white-space: nowrap;
	animation: bixciInfiniteMarquee 9s linear infinite;
	will-change: transform;
}

.bixci-floating-product-suggestion:hover .bixci-float-ticker-track {
	animation-play-state: paused;
}

.bixci-float-ticker-item {
	display: inline-block;
	white-space: nowrap;
	font-weight: 700;
	padding-right: 8px;
}

.bixci-float-ticker-item strong {
	color: var(--bixci-blue);
	font-weight: 800;
	background: #FFFFFF;
	padding: 1px 6px;
	border-radius: 8px;
	margin: 0 3px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

@keyframes bixciInfiniteMarquee {
	0% {
		transform: translateX(0%);
	}
	100% {
		transform: translateX(-50%);
	}
}

/* Quick Pillar Navigation Bar */
.bixci-pillar-tabs-nav {
	display: flex;
	gap: 6px;
	overflow-x: auto;
	padding-top: 10px;
	margin-top: 4px;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.bixci-pillar-tabs-nav::-webkit-scrollbar {
	display: none;
}

.bixci-pillar-tab-btn {
	background: #FFFFFF;
	border: 1.5px solid var(--bixci-blue);
	border-radius: 18px;
	padding: 5px 12px;
	font-family: var(--bixci-font);
	font-size: 11.5px;
	font-weight: 800;
	color: var(--bixci-blue);
	white-space: nowrap;
	cursor: pointer;
	transition: var(--bixci-transition);
}

.bixci-pillar-tab-btn:hover,
.bixci-pillar-tab-btn.active {
	background: var(--bixci-yellow);
	color: var(--bixci-text-main);
	border-color: var(--bixci-text-main);
}

/* Panel Body & Responsive Columns Grid */
.bixci-panel-body {
	flex: 1;
	overflow-y: auto;
	padding: 16px;
	-webkit-overflow-scrolling: touch;
}

.bixci-panel-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 14px;
	width: 100%;
}

@media (min-width: 768px) {
	.bixci-panel-grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 14px;
	}
}

/* Column Header & Modules */
.bixci-category-column {
	background: rgba(255, 255, 255, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.9);
	border-radius: 16px;
	padding: 12px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	transition: var(--bixci-transition);
}

.bixci-column-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	padding-bottom: 6px;
	border-bottom: 2px solid var(--bixci-yellow);
	cursor: pointer;
}

.bixci-column-title-wrap {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bixci-column-icon {
	color: var(--bixci-blue);
	display: flex;
	align-items: center;
}

.bixci-column-header h3 {
	margin: 0;
	font-size: 12px;
	font-weight: 800;
	color: var(--bixci-blue);
	letter-spacing: 0.3px;
	text-transform: uppercase;
	line-height: 1.2;
}

.bixci-column-collapse-icon {
	color: var(--bixci-blue);
	display: flex;
	align-items: center;
	transition: var(--bixci-transition);
}

.bixci-category-column.bixci-column-collapsed .bixci-column-collapse-icon svg {
	transform: rotate(-90deg);
}

.bixci-column-modules {
	display: flex;
	flex-direction: column;
	gap: 8px;
	transition: var(--bixci-transition);
}

.bixci-category-column.bixci-column-collapsed .bixci-column-modules {
	display: none;
}

/* Rounded White Pill Modules with Thin Blue Outline */
.bixci-pill-module {
	background: #FFFFFF;
	border: 1px solid var(--bixci-border);
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(10, 59, 145, 0.05);
	transition: var(--bixci-transition);
}

/* Collapsible extra category pills (hidden by default unless .show-all) */
.bixci-pill-module.bixci-pill-extra {
	display: none;
}

.bixci-category-column.show-all .bixci-pill-module.bixci-pill-extra {
	display: block;
}

.bixci-pill-module:hover,
.bixci-pill-module.highlighted {
	background: #E6F0FA;
	border-color: var(--bixci-blue);
	transform: translateY(-2px);
	box-shadow: 0 6px 16px rgba(10, 59, 145, 0.12);
}

/* Pill Header: Flush Split-Segment Layout */
.bixci-pill-header {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	padding: 0;
	min-height: 40px;
}

.bixci-pill-title {
	display: flex;
	align-items: center;
	gap: 6px;
	font-size: 12.5px;
	font-weight: 700;
	color: var(--bixci-text-main);
	text-decoration: none;
	flex: 1;
	padding: 8px 10px;
}

.bixci-pill-name-text {
	line-height: 1.2;
}

.bixci-cat-count {
	font-size: 11px;
	font-weight: 800;
	background: var(--bixci-bg);
	color: var(--bixci-blue);
	padding: 2px 6px;
	border-radius: 10px;
}

/* Overlapping Circular Avatars Stack */
.bixci-pill-avatars-stack {
	display: inline-flex;
	align-items: center;
	margin-left: auto;
	margin-right: 4px;
}

.bixci-avatar-img {
	width: 24px;
	height: 24px;
	border-radius: 50%;
	margin-left: -8px;
	border: 2px solid #FFFFFF;
	object-fit: cover;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
	background: #FFFFFF;
	flex-shrink: 0;
	transition: var(--bixci-transition);
}

.bixci-avatar-img:first-child {
	margin-left: 0;
}

.bixci-pill-module:hover .bixci-avatar-img {
	border-color: #E6F0FA;
	transform: scale(1.06);
}

/* Large Integrated Right-Segment Toggle Button (Straight Left Border) */
.bixci-pill-toggle {
	width: 48px;
	min-width: 44px;
	background: #F0F4F9;
	border: none;
	border-left: 1.5px solid var(--bixci-border);
	border-radius: 0 13px 13px 0;
	color: var(--bixci-blue);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	transition: var(--bixci-transition);
}

.bixci-pill-toggle:hover {
	background: var(--bixci-yellow);
	color: var(--bixci-text-main);
	border-left-color: var(--bixci-text-main);
}

.bixci-pill-module.expanded .bixci-pill-toggle {
	background: var(--bixci-yellow);
	color: var(--bixci-text-main);
	border-left-color: var(--bixci-text-main);
}

.bixci-pill-module.expanded .bixci-pill-toggle svg {
	transform: rotate(180deg);
}

/* Accordion Sub-Items */
.bixci-subitems-accordion {
	display: none;
	flex-direction: column;
	background: #F8FBFE;
	padding: 6px 10px 8px 10px;
	border-top: 1px dashed rgba(10, 59, 145, 0.15);
}

.bixci-pill-module.expanded .bixci-subitems-accordion {
	display: flex;
}

.bixci-subitem-link {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 5px 7px;
	font-size: 12px;
	font-weight: 600;
	color: #333333;
	text-decoration: none;
	border-radius: 8px;
	transition: var(--bixci-transition);
}

.bixci-subitem-link:hover {
	background: var(--bixci-yellow);
	color: var(--bixci-text-main);
}

.bixci-sub-count {
	font-size: 10px;
	color: #888;
}

/* Ver más / Ver menos Toggle Button */
.bixci-btn-toggle-column {
	background: #F0F4F8;
	border: 1px dashed var(--bixci-blue);
	color: var(--bixci-blue);
	border-radius: 12px;
	padding: 8px 12px;
	font-family: var(--bixci-font);
	font-size: 12px;
	font-weight: 800;
	width: 100%;
	cursor: pointer;
	margin-top: 4px;
	transition: var(--bixci-transition);
}

.bixci-btn-toggle-column:hover {
	background: var(--bixci-yellow);
	color: var(--bixci-text-main);
	border-style: solid;
}

/* Floating Yellow Circle Close Button (Positioned at bottom inside 80% panel) */
.bixci-floating-close {
	position: absolute;
	bottom: 16px;
	right: 16px;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: var(--bixci-yellow);
	border: 2px solid var(--bixci-text-main);
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	z-index: 99;
	transition: var(--bixci-transition);
}

.bixci-floating-close:hover {
	transform: scale(1.1) rotate(90deg);
}

/* ==========================================================================
   3. SLIDE-OVER MINI CART DRAWER
   ========================================================================== */
.bixci-drawer-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(17, 17, 17, 0.6);
	backdrop-filter: blur(4px);
	z-index: 99998;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.bixci-drawer-overlay.active {
	opacity: 1;
	visibility: visible;
}

.bixci-cart-drawer {
	position: fixed;
	top: 56px;
	right: 0;
	bottom: 120px;
	width: 90vw;
	max-width: 390px;
	background: var(--bixci-surface);
	z-index: 99999;
	display: flex;
	flex-direction: column;
	border-top-left-radius: 18px;
	border-bottom-left-radius: 18px;
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.2);
	transform: translateX(100%);
	transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
	font-family: var(--bixci-font);
	overflow: hidden;
}

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

/* Drawer Header */
.bixci-drawer-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px 14px;
	border-bottom: 1px solid var(--bixci-border);
	background: #FFFFFF;
}

.bixci-drawer-title {
	display: flex;
	align-items: center;
	gap: 8px;
}

.bixci-drawer-title h3 {
	margin: 0;
	font-size: 16.5px;
	font-weight: 800;
	color: var(--bixci-text-main);
}

.bixci-header-badge {
	background: var(--bixci-yellow);
	color: var(--bixci-text-main);
	font-size: 11.5px;
	font-weight: 800;
	padding: 2px 7px;
	border-radius: 12px;
}

.bixci-close-btn {
	background: none;
	border: none;
	font-size: 22px;
	line-height: 1;
	color: var(--bixci-text-muted);
	cursor: pointer;
	padding: 2px;
	transition: var(--bixci-transition);
}

.bixci-close-btn:hover {
	color: var(--bixci-text-main);
	transform: rotate(90deg);
}

/* Free Shipping Progress Bar inside Drawer */
.bixci-free-shipping-bar {
	background: #F8F9FA;
	padding: 6px 14px;
	border-bottom: 1px solid var(--bixci-border);
}

.bixci-shipping-message {
	font-size: 11.5px;
	color: var(--bixci-text-main);
	margin-bottom: 3px;
	text-align: center;
}

.bixci-shipping-message span {
	color: var(--bixci-green);
	font-weight: 800;
}

.bixci-progress-track {
	height: 5px;
	background: #E2E8F0;
	border-radius: 10px;
	overflow: hidden;
	position: relative;
}

.bixci-progress-fill {
	height: 100%;
	background: var(--bixci-green);
	border-radius: 10px;
	transition: width 0.4s ease;
}

/* Drawer Scrollable Body */
.bixci-drawer-body {
	flex: 1;
	overflow-y: auto;
	padding: 6px 12px;
	-webkit-overflow-scrolling: touch;
}

.bixci-empty-cart {
	text-align: center;
	padding: 30px 16px;
}

.bixci-empty-icon {
	font-size: 44px;
	margin-bottom: 10px;
}

.bixci-empty-cart p {
	font-size: 15px;
	color: var(--bixci-text-muted);
	margin-bottom: 16px;
}

.bixci-btn-continue {
	display: inline-block;
	background: var(--bixci-yellow);
	color: var(--bixci-text-main);
	padding: 8px 18px;
	border-radius: 10px;
	font-weight: 800;
	text-decoration: none;
}

/* Cart Item Row - Compact Design fitting 6 items simultaneously */
.bixci-items-list {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.bixci-cart-item {
	display: flex;
	gap: 8px;
	padding: 8px;
	align-items: center;
	border: 1.5px solid hsl(43, 55%, 68%);
	border-radius: 10px;
	margin-bottom: 6px;
	box-shadow: 0 1px 4px hsla(43, 50%, 55%, 0.15);
	background: hsla(43, 60%, 97%, 0.45);
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.bixci-cart-item:last-child {
	margin-bottom: 0;
}

.bixci-cart-item:hover {
	border-color: hsl(43, 60%, 58%);
	box-shadow: 0 2px 8px hsla(43, 55%, 50%, 0.22);
}

.bixci-item-image {
	width: 70px !important;
	height: 70px !important;
	min-width: 70px !important;
	min-height: 70px !important;
	border-radius: 10px;
	overflow: hidden;
	background: #FFFFFF;
	border: 1px solid #E2E8F0;
	flex-shrink: 0;
	display: flex !important;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

.bixci-item-image a {
	display: flex !important;
	width: 100% !important;
	height: 100% !important;
	align-items: center;
	justify-content: center;
	padding: 0 !important;
	margin: 0 !important;
}

.bixci-item-image img,
.bixci-item-image a img,
img.bixci-item-thumb {
	width: 100% !important;
	height: 100% !important;
	min-width: 100% !important;
	min-height: 100% !important;
	max-width: 100% !important;
	max-height: 100% !important;
	object-fit: contain !important;
	display: block !important;
	padding: 2px !important;
	margin: 0 !important;
	box-sizing: border-box !important;
}

.bixci-item-details {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.bixci-item-header {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 4px;
}

.bixci-item-name {
	font-size: 12px;
	font-weight: 700;
	color: var(--bixci-text-main);
	line-height: 1.2;
	margin: 0;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.bixci-remove-item {
	background: none;
	border: none;
	color: #94A3B8;
	font-size: 15px;
	cursor: pointer;
	padding: 0 2px;
	line-height: 1;
}

.bixci-remove-item:hover {
	color: var(--bixci-red);
}

.bixci-item-sub {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 1px;
}

.bixci-item-price {
	font-size: 13px;
	font-weight: 800;
	color: var(--bixci-text-main);
}

/* Compact Quantity Selector */
.bixci-qty-selector {
	display: inline-flex;
	align-items: center;
	border: 1px solid var(--bixci-border);
	border-radius: 5px;
	background: #FFFFFF;
	overflow: hidden;
	height: 22px;
}

.bixci-qty-btn {
	width: 22px;
	height: 22px;
	background: var(--bixci-bg);
	border: none;
	font-size: 12px;
	font-weight: 700;
	color: var(--bixci-text-main);
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
}

.bixci-qty-btn:hover {
	background: #E0E0DB;
}

.bixci-qty-input {
	min-width: 30px;
	width: 30px;
	height: 22px;
	border: none;
	text-align: center;
	font-family: var(--bixci-font);
	font-size: 12px !important;
	font-weight: 700;
	color: var(--bixci-text-main);
	-moz-appearance: textfield;
	padding: 0 2px;
	box-sizing: border-box;
	transition: width 0.15s ease;
}

.bixci-qty-input::-webkit-outer-spin-button,
.bixci-qty-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

/* Intelligent Cross-sells */
.bixci-cross-sells-wrapper {
	margin-top: 24px;
	padding-top: 16px;
	border-top: 2px stroke var(--bixci-border);
}

.bixci-cross-sells-wrapper h4 {
	font-size: 14px;
	font-weight: 800;
	margin: 0 0 12px 0;
	color: var(--bixci-text-main);
}

.bixci-cross-sells-grid {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.bixci-cross-item {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 10px;
	background: var(--bixci-bg);
	border-radius: 10px;
}

.bixci-cross-media {
	width: 44px;
	height: 44px;
	border-radius: 8px;
	overflow: hidden;
	flex-shrink: 0;
}

.bixci-cross-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.bixci-cross-info {
	flex: 1;
	display: flex;
	flex-direction: column;
}

.bixci-cross-title {
	font-size: 12px;
	font-weight: 700;
	color: var(--bixci-text-main);
	line-height: 1.2;
}

.bixci-cross-price {
	font-size: 12px;
	font-weight: 800;
	color: var(--bixci-green);
}

.bixci-btn-add-cross {
	background: #FFFFFF;
	border: 1px solid var(--bixci-text-main);
	color: var(--bixci-text-main);
	font-family: var(--bixci-font);
	font-size: 11px;
	font-weight: 800;
	padding: 6px 12px;
	border-radius: 8px;
	cursor: pointer;
	transition: var(--bixci-transition);
}

.bixci-btn-add-cross:hover {
	background: var(--bixci-text-main);
	color: #FFFFFF;
}

/* Drawer Footer */
.bixci-drawer-footer {
	padding: 10px 14px;
	border-top: 1px solid var(--bixci-border);
	background: #FFFFFF;
	box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.04);
}

.bixci-footer-summary {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 8px;
}

.bixci-summary-row {
	display: flex;
	justify-content: space-between;
	font-size: 14px;
	font-weight: 600;
	color: var(--bixci-text-muted);
}

.bixci-subtotal-val {
	font-size: 16px;
	font-weight: 800;
	color: var(--bixci-text-main);
}

.bixci-summary-row.shipping-note {
	font-size: 13px;
	align-items: flex-start;
}

.bixci-summary-row.bixci-volume-row {
	font-size: 13px;
	align-items: flex-start;
	padding: 6px 8px;
	margin: 4px 0;
	background: hsla(38, 90%, 95%, 0.7);
	border: 1px solid hsla(38, 70%, 75%, 0.5);
	border-radius: 8px;
	animation: bixci-volume-fade-in 0.3s ease;
}

#bixci_volume_surcharge_row.bixci-hidden {
	display: none !important;
}

.bixci-volume-row .bixci-main-label {
	color: #92400e;
}

@keyframes bixci-volume-fade-in {
	from { opacity: 0; transform: translateY(-4px); }
	to   { opacity: 1; transform: translateY(0); }
}

.bixci-shipping-label-wrap {
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	min-width: 0;
	flex: 1;
	margin-right: 8px;
	gap: 2px 4px;
}

.bixci-main-label {
	flex-shrink: 0;
	font-weight: 600;
	color: var(--bixci-text-muted);
}

.bixci-delivery-mode-detail {
	display: inline-block;
	font-size: 11px;
	font-weight: 500;
	color: #667085;
	margin-left: 0;
	white-space: normal;
	word-break: break-word;
	line-height: 1.25;
	max-width: 100%;
}

.bixci-delivery-mode-detail:empty {
	display: none;
}

.bixci-shipping-val {
	color: var(--bixci-green);
	font-weight: 800;
	flex-shrink: 0;
	margin-left: 6px;
}

.bixci-total-row {
	margin-top: 4px;
	padding-top: 6px;
	border-top: 1px dashed #E2E8F0;
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.bixci-total-label {
	font-size: 14px;
	font-weight: 800;
	color: #0F172A;
}

.bixci-total-val-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
}

.bixci-total-val {
	font-size: 16px;
	font-weight: 800;
	color: #0A3B91;
}

.bixci-igv-note {
	font-size: 9.5px;
	font-weight: 600;
	color: #64748B;
	margin-top: 1px;
}

.bixci-btn-checkout {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	background: linear-gradient(180deg, #FFF066 0%, #FFD600 55%, #E6B800 100%);
	color: #0B132B;
	padding: 10px 14px;
	border: 1px solid #E5C000;
	border-radius: 12px;
	font-size: 15px;
	font-weight: 800;
	text-decoration: none;
	box-shadow: 0 6px 20px rgba(255, 214, 0, 0.45), 0 2px 4px rgba(0, 0, 0, 0.1);
	transition: var(--bixci-transition);
	box-sizing: border-box;
}

.bixci-btn-checkout:hover {
	background: linear-gradient(180deg, #FFF380 0%, #FFDC1A 55%, #ECA600 100%);
	color: #000000;
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(255, 214, 0, 0.6);
}

.bixci-btn-checkout svg {
	stroke: #0B132B;
	transition: stroke 0.2s ease;
}

.bixci-btn-checkout:hover svg {
	stroke: #000000;
}

/* Floating Total a Pagar Badge on Checkout Page */
.bixci-checkout-floating-total-badge {
	position: fixed;
	bottom: 125px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 99997;
	background: #FFFFFF;
	border: 1.5px solid #0A3B91;
	border-radius: 10px;
	padding: 3px 12px;
	box-shadow: 0 6px 20px rgba(10, 59, 145, 0.16), 0 2px 6px rgba(0, 0, 0, 0.08);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	white-space: nowrap;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	max-width: 90vw;
}

.bixci-checkout-floating-total-badge:hover {
	transform: translateX(-50%) translateY(-2px);
	box-shadow: 0 8px 24px rgba(10, 59, 145, 0.22);
}

.bixci-float-total-main {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 13px;
	font-weight: 700;
	color: #0F172A;
	line-height: 1.1;
	margin: 0;
}

.bixci-float-total-title {
	font-weight: 700;
	color: #334155;
	line-height: 1.1;
}

.bixci-float-total-amount {
	font-size: 14px;
	font-weight: 800;
	color: #0A3B91;
	line-height: 1.1;
}

.bixci-float-total-sub {
	display: flex;
	align-items: center;
	gap: 4px;
	font-size: 9.5px;
	font-weight: 600;
	color: #64748B;
	margin-top: 0px;
	line-height: 1.0;
}

.bixci-cargo-bike-icon-mini {
	color: #0A3B91;
	flex-shrink: 0;
}

/* ==========================================================================
   4. QUICK ADD VARIATION MODAL
   ========================================================================== */
.bixci-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(17, 17, 17, 0.6);
	backdrop-filter: blur(4px);
	z-index: 999990;
	opacity: 0;
	visibility: hidden;
	transition: var(--bixci-transition);
}

.bixci-modal-overlay.active {
	opacity: 1;
	visibility: visible;
}

.bixci-quick-modal {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -45%) scale(0.95);
	width: 90%;
	max-width: 400px;
	background: #FFFFFF;
	border-radius: 20px;
	z-index: 999991;
	box-shadow: var(--bixci-shadow);
	opacity: 0;
	visibility: hidden;
	transition: var(--bixci-transition);
	font-family: var(--bixci-font);
}

.bixci-quick-modal.active {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.bixci-modal-content {
	position: relative;
	padding: 20px;
}

.bixci-modal-close {
	position: absolute;
	top: 12px;
	right: 14px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--bixci-text-muted);
}

/* ====================================================== */
/* GLOSSARY MODE TOGGLE SWITCH & ALPHABETICAL VIEW        */
/* ====================================================== */
.bixci-panel-logo-wrap {
	display: flex;
	align-items: center;
	gap: 12px;
}

.bixci-glossary-toggle-switch {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: rgba(0, 71, 255, 0.06);
	border: 1px solid rgba(0, 71, 255, 0.16);
	padding: 4px 10px 4px 6px;
	border-radius: 20px;
	cursor: pointer;
	user-select: none;
	transition: var(--bixci-transition);
}

.bixci-glossary-toggle-switch:hover {
	background: rgba(0, 71, 255, 0.12);
	border-color: rgba(0, 71, 255, 0.35);
}

.bixci-glossary-toggle-switch input {
	display: none;
}

.bixci-toggle-slider {
	width: 28px;
	height: 16px;
	background: #CBD5E1;
	border-radius: 10px;
	position: relative;
	transition: background 0.25s ease;
	flex-shrink: 0;
}

.bixci-toggle-slider::after {
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: 12px;
	height: 12px;
	background: #FFFFFF;
	border-radius: 50%;
	transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
	box-shadow: 0 1px 3px rgba(0,0,0,0.25);
}

.bixci-glossary-toggle-switch input:checked + .bixci-toggle-slider {
	background: var(--bixci-blue);
}

.bixci-glossary-toggle-switch input:checked + .bixci-toggle-slider::after {
	transform: translateX(12px);
}

.bixci-toggle-label {
	font-size: 11px;
	font-weight: 700;
	color: var(--bixci-blue);
	letter-spacing: -0.2px;
	text-transform: uppercase;
}

/* Glossary Container */
.bixci-glossary-container {
	padding: 16px;
}

.bixci-glossary-letters-bar {
	display: flex;
	align-items: center;
	gap: 6px;
	overflow-x: auto;
	padding: 10px 0 4px 0;
	margin-top: 8px;
	scrollbar-width: none;
	border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.bixci-glossary-letters-bar::-webkit-scrollbar {
	display: none;
}

.bixci-glossary-letter-btn {
	min-width: 32px;
	height: 32px;
	border-radius: 8px;
	background: #F1F5F9;
	color: #334155;
	font-size: 13px;
	font-weight: 700;
	border: 1px solid #E2E8F0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: var(--bixci-transition);
	flex-shrink: 0;
}

.bixci-glossary-letter-btn:hover,
.bixci-glossary-letter-btn.active {
	background: var(--bixci-blue);
	color: #FFFFFF;
	border-color: var(--bixci-blue);
}

/* Continuous Glossary Grid */
.bixci-glossary-continuous-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* Small Letter Marker Divider */
.bixci-letter-marker-divider {
	width: 100%;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-top: 14px;
	margin-bottom: 6px;
}

.bixci-letter-marker-divider:first-child {
	margin-top: 0;
}

.bixci-letter-marker-chip {
	min-width: 26px;
	height: 26px;
	padding: 0 8px;
	background: var(--bixci-blue);
	color: #FFFFFF;
	font-size: 13px;
	font-weight: 800;
	border-radius: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 2px 4px rgba(0, 71, 255, 0.2);
	flex-shrink: 0;
}

.bixci-letter-marker-line {
	flex: 1;
	height: 1px;
	background: linear-gradient(to right, rgba(0, 71, 255, 0.2), rgba(0, 0, 0, 0.05));
}

/* Glossary Item Pill */
.bixci-glossary-item-pill {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 8px;
	padding: 8px 12px;
	background: #FFFFFF;
	border: 1px solid #E2E8F0;
	border-radius: 10px;
	text-decoration: none;
	transition: var(--bixci-transition);
	box-shadow: 0 1px 3px rgba(0,0,0,0.02);
	flex: 1 1 calc(50% - 8px);
	min-width: 150px;
}

@media (min-width: 768px) {
	.bixci-glossary-item-pill {
		flex: 1 1 calc(33.333% - 8px);
	}
}

.bixci-glossary-item-pill:hover {
	background: #EFF6FF;
	border-color: #BFDBFE;
	transform: translateY(-1px);
	box-shadow: 0 3px 8px rgba(0, 71, 255, 0.08);
}

.bixci-glossary-item-info {
	display: flex;
	flex-direction: column;
	gap: 1px;
	min-width: 0;
}

.bixci-glossary-item-name {
	font-size: 12px;
	font-weight: 700;
	color: #1E293B;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.bixci-glossary-parent-tag {
	font-size: 9px;
	font-weight: 500;
	color: #94A3B8;
}