/* =========================================================
   FRUITS2GO CUSTOM CART
========================================================= */

.f2g-cart {
	/* Brand */
	--f2g-green: #00866f;
	--f2g-green-dark: #006f5d;
	--f2g-orange: #f7a623;

	/* Surfaces */
	--f2g-bg: #f3f5f4;
	--f2g-card: #ffffff;

	/* Text */
	--f2g-text: #171717;
	--f2g-muted: #707672;
	--f2g-border: #e2e6e4;

	/* Typography — approximately +15% */
	--f2g-fs-title: 48px;
	--f2g-fs-continue: 15px;
	--f2g-fs-table: 11.5px;

	--f2g-fs-product: 16px;
	--f2g-fs-meta: 13px;

	--f2g-fs-price: 15px;
	--f2g-fs-total: 15px;

	--f2g-fs-qty-btn: 19.5px;
	--f2g-fs-qty: 15px;

	--f2g-fs-remove: 18px;

	--f2g-fs-delivery-title: 21px;
	--f2g-fs-delivery-strong: 15px;
	--f2g-fs-delivery-text: 14px;
	--f2g-fs-delivery-small: 13px;
	--f2g-fs-delivery-link: 14px;

	--f2g-fs-summary: 14px;
	--f2g-fs-summary-total: 16px;
	--f2g-fs-button: 15px;

	--f2g-fs-empty-title: 28px;
	--f2g-fs-empty-copy: 15px;

	width: 100%;
	max-width: 1240px;

	margin: 0 auto;
	padding: 56px 28px 88px;

	display: block !important;

	color: var(--f2g-text);

	font-family: "Poppins", Arial, Helvetica, sans-serif !important;

	box-sizing: border-box;

	grid-template-columns: none !important;
	grid-template-rows: none !important;

	column-gap: 0 !important;
	row-gap: 0 !important;
}


/* =========================================================
   GLOBAL RESET
========================================================= */

html body .elementor .f2g-cart,
html body .elementor .f2g-cart *,
html body .elementor .f2g-cart *::before,
html body .elementor .f2g-cart *::after {
	box-sizing: border-box;

	font-family: "Poppins", Arial, Helvetica, sans-serif !important;
	font-style: normal !important;
}


.f2g-cart__header,
.f2g-cart__items,
.f2g-cart-checkout-panel {
	grid-column: auto !important;
	grid-row: auto !important;

	width: 100% !important;
}


/* =========================================================
   DESKTOP VISIBILITY
========================================================= */

@media (min-width: 768px) {

	.f2g-cart .f2g-cart__mobile-back,
	.f2g-cart .f2g-cart__mobile-title {
		display: none !important;
	}

	.f2g-cart .f2g-cart__title {
		display: block !important;
	}

	.f2g-cart .f2g-cart__continue {
		display: inline-flex !important;
	}

	.f2g-cart .f2g-cart-table-head,
	.f2g-cart .f2g-cart-item {
		display: grid !important;
	}
}


/* =========================================================
   HEADER
========================================================= */

.f2g-cart .f2g-cart__header {
	display: flex;
	align-items: center;
	justify-content: space-between;

	width: 100%;

	margin: 0 0 42px !important;
	padding: 0 !important;
}


/* Main title */

html body .elementor .f2g-cart h1.f2g-cart__title,
html body .elementor .f2g-cart .f2g-cart__title {
	margin: 0 !important;

	font-size: var(--f2g-fs-title) !important;
	font-weight: 600 !important;
	line-height: 1.1 !important;

	letter-spacing: -0.03em !important;
	text-transform: none !important;

	color: var(--f2g-text);
}


/* Continue shopping */

.f2g-cart .f2g-cart__continue {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	gap: 9px;

	min-height: 44px;

	padding: 9px 17px;

	border: 1px solid var(--f2g-border);
	border-radius: 10px;

	background: #ffffff;

	color: var(--f2g-text) !important;

	font-size: var(--f2g-fs-continue) !important;
	font-weight: 600 !important;
	line-height: 1.2;

	text-decoration: none !important;

	transition:
		border-color 0.2s ease,
		transform 0.2s ease;
}

.f2g-cart .f2g-cart__continue:hover {
	border-color: var(--f2g-green);

	transform: translateX(-2px);
}


.f2g-cart__mobile-back,
.f2g-cart__mobile-title {
	display: none;
}


/* =========================================================
   DESKTOP TABLE HEADER
========================================================= */

html body .elementor .f2g-cart .f2g-cart-table-head {
	display: grid;

	grid-template-columns:
		minmax(0, 2.6fr)
		minmax(110px, 0.8fr)
		minmax(135px, 0.78fr)
		minmax(120px, 0.75fr)
		40px;

	gap: 20px;

	width: 100%;

	padding: 0 0 16px;

	border-bottom: 1px solid var(--f2g-border);

	color: #7a7f7c;

	font-size: var(--f2g-fs-table) !important;
	font-weight: 600 !important;

	text-transform: uppercase;

	letter-spacing: 0.08em;
}

html body .elementor .f2g-cart .f2g-cart-table-head > div {
	font-size: inherit !important;
	font-weight: inherit !important;
}


/* =========================================================
   CART ITEMS
========================================================= */

.f2g-cart__items {
	display: flex;
	flex-direction: column;
}


.f2g-cart .f2g-cart-item {
	position: relative;

	display: grid;

	grid-template-columns:
		minmax(0, 2.6fr)
		minmax(110px, 0.8fr)
		minmax(135px, 0.78fr)
		minmax(120px, 0.75fr)
		40px;

	align-items: center;

	gap: 20px;

	width: 100%;

	margin: 0 !important;
	padding: 22px 0 !important;

	border: 0 !important;
	border-bottom: 1px solid var(--f2g-border) !important;

	border-radius: 0 !important;

	background: transparent !important;

	box-shadow: none !important;
}


/* =========================================================
   PRODUCT
========================================================= */

.f2g-cart-item__product {
	display: grid;

	grid-template-columns:
		118px minmax(0, 1fr);

	align-items: center;

	gap: 20px;

	min-width: 0;
}


.f2g-cart-item__image {
	width: 118px;
	height: 118px;

	overflow: hidden;

	border-radius: 12px;

	background: #f1f4f3;
}


.f2g-cart-item__image a {
	display: block;

	width: 100%;
	height: 100%;
}


.f2g-cart-item__image img {
	display: block;

	width: 100%;
	height: 100%;

	margin: 0;

	object-fit: contain;
}


.f2g-cart-item__info {
	min-width: 0;
}


/* Product name */

html body .elementor .f2g-cart h3.f2g-cart-item__name,
html body .elementor .f2g-cart .f2g-cart-item__name,
html body .elementor .f2g-cart .f2g-cart-item__name a {
	font-size: var(--f2g-fs-product) !important;
	font-weight: 500 !important;
	line-height: 1.35 !important;

	letter-spacing: -0.01em !important;

	text-transform: none !important;
}


html body .elementor .f2g-cart h3.f2g-cart-item__name {
	margin: 0 0 6px !important;

	word-break: normal;
	overflow-wrap: break-word;
}


html body .elementor .f2g-cart .f2g-cart-item__name a {
	color: var(--f2g-text) !important;

	text-decoration: none !important;
}


html body .elementor .f2g-cart .f2g-cart-item__name a:hover {
	color: var(--f2g-green) !important;
}


/* Product meta */

.f2g-cart .f2g-cart-item__meta {
	font-size: var(--f2g-fs-meta) !important;
	font-weight: 400;

	line-height: 1.5;

	color: var(--f2g-muted);
}


.f2g-cart-item__meta p,
.f2g-cart-item__meta dl {
	margin: 0;
}


.f2g-cart-item__meta dt,
.f2g-cart-item__meta dd {
	display: inline;

	margin: 0;
}


.f2g-cart-item__meta dd::after {
	content: "";

	display: block;
}


.f2g-cart-item__mobile-price {
	display: none;
}


/* =========================================================
   PRICE
========================================================= */

html body .elementor .f2g-cart .f2g-cart-item__price {
	font-size: var(--f2g-fs-price) !important;
	font-weight: 600 !important;

	color: var(--f2g-text);
}


/* =========================================================
   QUANTITY
========================================================= */

.f2g-cart-item__qty {
	display: flex;

	align-items: center;
}


.f2g-cart-qty {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	width: 126px;
	height: 42px;

	padding: 2px;

	border: 1px solid var(--f2g-border);
	border-radius: 999px;

	background: #ffffff;
}


.f2g-cart .f2g-cart-qty__btn {
	appearance: none !important;
	-webkit-appearance: none !important;

	display: inline-flex !important;

	align-items: center;
	justify-content: center;

	flex: 0 0 36px;

	width: 36px !important;
	height: 36px !important;

	min-width: 36px !important;
	min-height: 36px !important;

	max-width: 36px !important;
	max-height: 36px !important;

	margin: 0 !important;
	padding: 0 !important;

	border: 0 !important;
	border-radius: 50% !important;

	background: transparent !important;

	color: var(--f2g-text) !important;

	font-size: var(--f2g-fs-qty-btn) !important;
	font-weight: 500 !important;
	line-height: 1 !important;

	box-shadow: none !important;

	cursor: pointer;
}


.f2g-cart .f2g-cart-qty__minus:hover {
	color: var(--f2g-green) !important;
}


.f2g-cart .f2g-cart-qty__plus {
	background: var(--f2g-orange) !important;

	color: #ffffff !important;
}


.f2g-cart .f2g-cart-qty__plus:hover {
	background: #e89616 !important;

	color: #ffffff !important;
}


html body .elementor .f2g-cart .f2g-cart-qty__value {
	display: flex;

	align-items: center;
	justify-content: center;

	flex: 0 0 48px;

	height: 36px;

	font-size: var(--f2g-fs-qty) !important;
	font-weight: 600 !important;
}


/* =========================================================
   LINE TOTAL
========================================================= */

html body .elementor .f2g-cart .f2g-cart-item__total {
	font-size: var(--f2g-fs-total) !important;
	font-weight: 700 !important;

	color: var(--f2g-text);
}


/* =========================================================
   REMOVE
========================================================= */

.f2g-cart-item__remove-wrap {
	display: flex;

	align-items: center;
	justify-content: flex-end;
}


.f2g-cart .f2g-cart-item__remove {
	appearance: none !important;
	-webkit-appearance: none !important;

	display: inline-flex !important;

	align-items: center !important;
	justify-content: center !important;

	width: 30px !important;
	height: 30px !important;

	min-width: 30px !important;
	min-height: 30px !important;

	max-width: 30px !important;
	max-height: 30px !important;

	margin: 0 !important;
	padding: 0 !important;

	border: 0 !important;
	border-radius: 50% !important;

	background: transparent !important;

	color: var(--f2g-text) !important;

	font-size: var(--f2g-fs-remove) !important;
	font-weight: 400 !important;
	line-height: 1 !important;

	box-shadow: none !important;

	cursor: pointer;
}


.f2g-cart .f2g-cart-item__remove:hover,
.f2g-cart .f2g-cart-item__remove:focus {
	background: #fff0ed !important;

	color: #d95b4e !important;
}


/* =========================================================
   CHECKOUT PANEL
========================================================= */

.f2g-cart-checkout-panel {
	display: grid;

	grid-template-columns:
		minmax(0, 1.4fr)
		minmax(300px, 0.82fr);

	gap: 46px;

	margin-top: 40px;

	padding: 32px 38px;

	border-radius: 26px;

	background: #eef2f3;

	box-shadow:
		0 10px 32px rgba(0, 0, 0, 0.055);
}


/* =========================================================
   DELIVERY / PICKUP
========================================================= */

.f2g-cart-delivery {
	display: flex;

	flex-direction: column;

	align-items: flex-start;

	min-width: 0;
}


html body .elementor .f2g-cart .f2g-cart-delivery h2 {
	margin: 0 0 18px;

	font-size: var(--f2g-fs-delivery-title) !important;
	font-weight: 600 !important;
	line-height: 1.3 !important;

	letter-spacing: -0.02em !important;

	text-transform: none !important;
}


.f2g-cart-delivery__option {
	display: flex;

	align-items: flex-start;

	gap: 14px;
}


.f2g-cart-delivery__indicator {
	display: flex;

	align-items: center;
	justify-content: center;

	flex: 0 0 22px;

	width: 22px;
	height: 22px;

	margin-top: 1px;

	border-radius: 50%;

	background: var(--f2g-orange);

	color: #ffffff;

	font-size: 12.5px !important;
	font-weight: 700 !important;
}


.f2g-cart-delivery__content {
	display: flex;

	flex-direction: column;

	align-items: flex-start;

	gap: 5px;
}


.f2g-cart-delivery__content > strong {
	font-size: var(--f2g-fs-delivery-strong) !important;
	font-weight: 600 !important;
}


.f2g-cart-delivery__content span {
	font-size: var(--f2g-fs-delivery-text) !important;
	line-height: 1.4;

	color: var(--f2g-muted);
}


.f2g-cart-delivery__content span b {
	color: var(--f2g-text);

	font-weight: 600;
}


.f2g-cart-delivery__content small {
	margin-top: 5px;

	font-size: var(--f2g-fs-delivery-small) !important;
	line-height: 1.4;

	color: #8a8f8d;
}


.f2g-cart-delivery__change {
	display: inline-flex;

	margin-top: 18px;

	color: var(--f2g-green) !important;

	font-size: var(--f2g-fs-delivery-link) !important;
	font-weight: 600 !important;

	text-decoration: underline !important;

	text-underline-offset: 3px;
}


/* =========================================================
   SUMMARY
========================================================= */

.f2g-cart-summary {
	align-self: center;

	width: 100%;
}


html body .elementor .f2g-cart .f2g-cart-summary__row {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 18px;

	padding: 8px 0;

	font-size: var(--f2g-fs-summary) !important;
}


.f2g-cart-summary__row span {
	color: #747a76;
}


.f2g-cart-summary__row strong {
	color: var(--f2g-text);

	font-weight: 600 !important;
}


.f2g-cart-summary__divider {
	margin: 10px 0;

	border-top: 1px solid #d4dbd8;
}


html body .elementor .f2g-cart .f2g-cart-summary__total {
	font-size: var(--f2g-fs-summary-total) !important;
}


.f2g-cart-summary__total span,
.f2g-cart-summary__total strong {
	color: var(--f2g-text);

	font-weight: 700 !important;
}


/* =========================================================
   CHECKOUT BUTTON
========================================================= */

html body .elementor .f2g-cart .f2g-cart-btn {
	display: flex;

	align-items: center;
	justify-content: space-between;

	width: 100%;

	min-height: 52px;

	margin-top: 18px;

	padding: 13px 18px;

	border: 0;
	border-radius: 10px;

	font-size: var(--f2g-fs-button) !important;
	font-weight: 600 !important;

	text-decoration: none !important;

	cursor: pointer;

	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}


.f2g-cart .f2g-cart-btn--primary,
.f2g-cart .f2g-cart-btn--primary:visited,
.f2g-cart .f2g-cart-btn--primary:focus {
	background: var(--f2g-green);

	color: #ffffff !important;
}


.f2g-cart .f2g-cart-btn--primary:hover {
	background: var(--f2g-green-dark);

	color: #ffffff !important;

	transform: translateY(-1px);
}


.f2g-cart-btn__amount {
	font-weight: 700 !important;
}


/* =========================================================
   AJAX LOADING
========================================================= */

.f2g-cart-item.is-loading {
	opacity: 0.52;

	pointer-events: none;

	transition: opacity 0.2s ease;
}


/* =========================================================
   EMPTY CART
========================================================= */

.f2g-cart-empty {
	width: 100%;
	max-width: 620px;

	margin: 30px auto 80px;
	padding: 20px 24px 40px;

	text-align: center;
}


.f2g-cart-empty__count {
	margin-bottom: 48px;

	font-size: 15px;
	font-weight: 500;

	color: var(--f2g-muted);
}


/* Illustration */

.f2g-cart-empty__visual {
	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 42px;
}


.f2g-cart-empty__bag {
	position: relative;

	width: 130px;
	height: 122px;

	border: 4px solid var(--f2g-text);
	border-radius: 8px 8px 18px 18px;

	background: #ffffff;

	transform: rotate(-3deg);
}


.f2g-cart-empty__bag-handle {
	position: absolute;

	left: 50%;
	top: -48px;

	width: 62px;
	height: 58px;

	transform: translateX(-50%);

	border: 4px solid var(--f2g-text);
	border-bottom: 0;

	border-radius: 34px 34px 0 0;
}


.f2g-cart-empty__face {
	position: absolute;

	left: 50%;
	top: 48%;

	transform: translate(-50%, -50%);

	width: 56px;
	height: 48px;
}


.f2g-cart-empty__eye {
	position: absolute;
	top: 7px;

	width: 5px;
	height: 12px;

	border-radius: 999px;

	background: var(--f2g-text);
}


.f2g-cart-empty__eye:first-child {
	left: 10px;
}


.f2g-cart-empty__eye:nth-child(2) {
	right: 10px;
}


.f2g-cart-empty__smile {
	position: absolute;

	left: 50%;
	bottom: 2px;

	width: 28px;
	height: 16px;

	transform: translateX(-50%);

	border-bottom: 4px solid var(--f2g-text);
	border-radius: 0 0 30px 30px;
}


/* Small decorative accents */

.f2g-cart-empty__visual::before,
.f2g-cart-empty__visual::after {
	content: "";

	width: 8px;
	height: 8px;

	margin: 0 28px;

	border-radius: 50%;

	background: var(--f2g-orange);
}


/* Heading */

html body .elementor .f2g-cart .f2g-cart-empty__title {
	margin: 0 0 16px;

	font-size: 28px !important;
	font-weight: 600 !important;
	line-height: 1.2 !important;

	letter-spacing: -0.02em !important;

	color: var(--f2g-text);
}


/* Body */

html body .elementor .f2g-cart .f2g-cart-empty__text {
	max-width: 480px;

	margin: 0 auto 30px;

	font-size: 15px !important;
	font-weight: 400 !important;
	line-height: 1.65 !important;

	color: var(--f2g-muted);
}


/* CTA */

html body .elementor .f2g-cart .f2g-cart-empty__button {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	min-width: 230px;
	min-height: 54px;

	padding: 14px 28px;

	border-radius: 12px;

	background: var(--f2g-green);

	color: #ffffff !important;

	font-size: 15px !important;
	font-weight: 600 !important;

	text-decoration: none !important;

	transition:
		background-color 0.2s ease,
		transform 0.2s ease;
}


html body .elementor .f2g-cart .f2g-cart-empty__button:hover {
	background: var(--f2g-green-dark);

	transform: translateY(-1px);
}


/* =========================================================
   EMPTY CART MOBILE
========================================================= */

@media (max-width: 767px) {

	.f2g-cart-empty {
		max-width: none;

		margin: 10px auto 40px;
		padding: 20px 18px 30px;
	}


	.f2g-cart-empty__count {
		margin-bottom: 42px;

		font-size: 13px;
	}


	.f2g-cart-empty__visual {
		margin-bottom: 34px;
	}


	.f2g-cart-empty__bag {
		width: 112px;
		height: 106px;

		border-width: 3px;
	}


	.f2g-cart-empty__bag-handle {
		top: -42px;

		width: 54px;
		height: 50px;

		border-width: 3px;
	}


	html body .elementor .f2g-cart .f2g-cart-empty__title {
		font-size: 22px !important;
	}


	html body .elementor .f2g-cart .f2g-cart-empty__text {
		max-width: 320px;

		margin-bottom: 26px;

		font-size: 13px !important;
	}


	html body .elementor .f2g-cart .f2g-cart-empty__button {
		width: 100%;
		min-width: 0;

		min-height: 52px;

		border-radius: 999px;

		font-size: 14px !important;
	}
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

	.f2g-cart {
		padding-left: 20px;
		padding-right: 20px;

		--f2g-fs-product: 15px;
	}


	.f2g-cart-table-head,
	.f2g-cart-item {
		grid-template-columns:
			minmax(0, 2.1fr)
			minmax(95px, 0.7fr)
			minmax(125px, 0.78fr)
			minmax(100px, 0.7fr)
			34px;
	}


	.f2g-cart-item__product {
		grid-template-columns:
			96px minmax(0, 1fr);

		gap: 15px;
	}


	.f2g-cart-item__image {
		width: 96px;
		height: 96px;
	}


	.f2g-cart-checkout-panel {
		grid-template-columns:
			minmax(0, 1.25fr)
			minmax(280px, 0.85fr);

		gap: 28px;

		padding: 28px;
	}
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

	.f2g-cart {
		/* Mobile typography — also increased ~15% */
		--f2g-fs-mobile-title: 21px;
		--f2g-fs-product: 14px;
		--f2g-fs-meta: 10.5px;
		--f2g-fs-mobile-price: 12.5px;

		--f2g-fs-qty-btn: 17px;
		--f2g-fs-qty: 14px;

		--f2g-fs-remove: 15px;

		--f2g-fs-delivery-title: 18.5px;
		--f2g-fs-delivery-strong: 14px;
		--f2g-fs-delivery-text: 12.5px;
		--f2g-fs-delivery-small: 11.5px;
		--f2g-fs-delivery-link: 12.5px;

		--f2g-fs-summary: 14px;
		--f2g-fs-summary-total: 16px;
		--f2g-fs-button: 14px;

		max-width: none;

		padding: 18px 12px 30px;

		background: #f4f6f5;
	}


	/* =====================================================
	   MOBILE HEADER
	===================================================== */

	.f2g-cart .f2g-cart__header {
		position: relative;

		height: 58px;

		margin: 0 0 14px !important;
	}


	.f2g-cart .f2g-cart__title,
	.f2g-cart .f2g-cart__continue {
		display: none !important;
	}


	.f2g-cart .f2g-cart__mobile-back {
		display: flex !important;

		align-items: center;
		justify-content: center;

		position: absolute;

		left: 0;
		top: 50%;

		width: 44px;
		height: 44px;

		transform: translateY(-50%);

		border-radius: 50%;

		background: #ffffff;

		color: var(--f2g-green) !important;

		font-size: 21px !important;

		text-decoration: none !important;
	}


	html body .elementor .f2g-cart h2.f2g-cart__mobile-title,
	html body .elementor .f2g-cart .f2g-cart__mobile-title {
		display: block !important;

		position: absolute;

		left: 50%;
		top: 50%;

		margin: 0 !important;

		transform: translate(-50%, -50%);

		font-size: var(--f2g-fs-mobile-title) !important;
		font-weight: 500 !important;
		line-height: 1.2 !important;

		letter-spacing: -0.02em !important;

		text-transform: none !important;
	}


	/* =====================================================
	   HIDE DESKTOP TABLE HEADER
	===================================================== */

	html body .elementor .f2g-cart .f2g-cart-table-head {
		display: none !important;
		visibility: hidden !important;

		position: absolute !important;

		width: 0 !important;
		height: 0 !important;

		min-width: 0 !important;
		min-height: 0 !important;

		max-width: 0 !important;
		max-height: 0 !important;

		margin: 0 !important;
		padding: 0 !important;

		overflow: hidden !important;

		border: 0 !important;

		opacity: 0 !important;

		pointer-events: none !important;
	}


	/* =====================================================
	   MOBILE ITEMS
	===================================================== */

	.f2g-cart__items {
		gap: 12px;
	}


	.f2g-cart .f2g-cart-item {
		display: grid !important;

		grid-template-columns:
			110px minmax(0, 1fr);

		grid-template-areas:
			"product product"
			"qty qty";

		gap: 10px;

		padding: 13px !important;

		border: 0 !important;
		border-radius: 20px !important;

		background: #ffffff !important;
	}


	.f2g-cart-item__product {
		grid-area: product;

		grid-template-columns:
			96px minmax(0, 1fr);

		gap: 12px;

		align-items: start;
	}


	.f2g-cart-item__image {
		width: 96px;
		height: 108px;

		border-radius: 14px;
	}


	.f2g-cart-item__info {
		min-width: 0;

		padding-right: 28px;
	}


	html body .elementor .f2g-cart h3.f2g-cart-item__name,
	html body .elementor .f2g-cart .f2g-cart-item__name,
	html body .elementor .f2g-cart .f2g-cart-item__name a {
		margin-top: 1px !important;
		margin-bottom: 4px !important;

		font-size: var(--f2g-fs-product) !important;
		font-weight: 500 !important;
		line-height: 1.25 !important;

		letter-spacing: -0.01em !important;
	}


	.f2g-cart .f2g-cart-item__meta {
		max-height: 36px;

		overflow-y: auto;

		font-size: var(--f2g-fs-meta) !important;
		line-height: 1.35;
	}


	html body .elementor .f2g-cart .f2g-cart-item__mobile-price {
		display: block;

		margin-top: 6px;

		font-size: var(--f2g-fs-mobile-price) !important;
		font-weight: 500 !important;
		line-height: 1.3 !important;

		color: var(--f2g-text);
	}


	.f2g-cart .f2g-cart-item__price,
	.f2g-cart .f2g-cart-item__total {
		display: none !important;
	}


	/* =====================================================
	   MOBILE QUANTITY
	===================================================== */

	.f2g-cart .f2g-cart-item__qty {
		grid-area: qty;

		position: relative;

		z-index: 2;

		margin-top: -48px;
		margin-left: 108px;
	}


	.f2g-cart .f2g-cart-qty {
		width: 116px;
		height: 40px;
	}


	.f2g-cart .f2g-cart-qty__btn {
		flex-basis: 34px;

		width: 34px !important;
		height: 34px !important;

		min-width: 34px !important;
		min-height: 34px !important;

		max-width: 34px !important;
		max-height: 34px !important;

		font-size: var(--f2g-fs-qty-btn) !important;
	}


	html body .elementor .f2g-cart .f2g-cart-qty__value {
		flex-basis: 44px;

		font-size: var(--f2g-fs-qty) !important;
	}


	/* =====================================================
	   MOBILE REMOVE
	===================================================== */

	.f2g-cart .f2g-cart-item__remove-wrap {
		position: absolute;

		right: 10px;
		top: 10px;
	}


	.f2g-cart .f2g-cart-item__remove {
		width: 24px !important;
		height: 24px !important;

		min-width: 24px !important;
		min-height: 24px !important;

		max-width: 24px !important;
		max-height: 24px !important;

		font-size: var(--f2g-fs-remove) !important;
	}


	/* =====================================================
	   MOBILE CHECKOUT PANEL
	===================================================== */

	.f2g-cart .f2g-cart-checkout-panel {
		display: flex;

		flex-direction: column;

		gap: 20px;

		margin-top: 16px;

		padding: 20px 18px;

		border-radius: 22px;

		background: #ffffff;

		box-shadow: none;
	}


	.f2g-cart .f2g-cart-summary {
		padding-top: 18px;

		border-top: 1px solid var(--f2g-border);
	}


	.f2g-cart .f2g-cart-btn {
		min-height: 52px;

		border-radius: 999px;
	}
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 420px) {

	.f2g-cart {
		--f2g-fs-product: 13px;
		--f2g-fs-mobile-price: 12px;

		padding-left: 9px;
		padding-right: 9px;
	}


	.f2g-cart .f2g-cart-item {
		padding: 11px !important;
	}


	.f2g-cart-item__product {
		grid-template-columns:
			90px minmax(0, 1fr);

		gap: 11px;
	}


	.f2g-cart-item__image {
		width: 90px;
		height: 102px;
	}


	.f2g-cart .f2g-cart-item__qty {
		margin-left: 101px;
		margin-top: -44px;
	}


	.f2g-cart .f2g-cart-qty {
		width: 112px;
	}
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 360px) {

	.f2g-cart {
		--f2g-fs-mobile-title: 19.5px;
		--f2g-fs-product: 12.5px;
	}


	.f2g-cart-item__product {
		grid-template-columns:
			84px minmax(0, 1fr);
	}


	.f2g-cart-item__image {
		width: 84px;
		height: 98px;
	}


	.f2g-cart .f2g-cart-item__qty {
		margin-left: 94px;
	}


	.f2g-cart .f2g-cart-qty {
		width: 106px;
	}
}

/* =========================================================
   CART INTERACTION HARDENING
   Keep this block at the end of the stylesheet.
========================================================= */

.f2g-cart .f2g-cart-item__remove-wrap {
	position: relative;
	z-index: 50;
	pointer-events: auto !important;
}

.f2g-cart .f2g-cart-item__remove,
.f2g-cart .f2g-cart-qty,
.f2g-cart .f2g-cart-qty__btn,
.f2g-cart-empty__visual {
	touch-action: manipulation;
	-webkit-tap-highlight-color: transparent;
}

.f2g-cart .f2g-cart-item__remove {
	position: relative;
	z-index: 51;
	pointer-events: auto !important;
	user-select: none;
	-webkit-user-select: none;
}

.f2g-cart .f2g-cart-item__remove:focus-visible,
.f2g-cart .f2g-cart-qty__btn:focus-visible,
.f2g-cart-empty__button:focus-visible {
	outline: 2px solid var(--f2g-green) !important;
	outline-offset: 3px;
}

@media (max-width: 767px) {
	.f2g-cart .f2g-cart-item__remove-wrap {
		position: absolute;
		right: 8px;
		top: 8px;
		z-index: 50;
		width: 42px;
		height: 42px;
		display: flex;
		align-items: center;
		justify-content: center;
		pointer-events: auto !important;
	}

	.f2g-cart .f2g-cart-item__remove {
		width: 38px !important;
		height: 38px !important;
		min-width: 38px !important;
		min-height: 38px !important;
		max-width: 38px !important;
		max-height: 38px !important;
		border-radius: 50% !important;
		background: #ffffff !important;
		color: var(--f2g-muted) !important;
		font-size: 17px !important;
		box-shadow: 0 1px 5px rgba(0, 0, 0, 0.09) !important;
	}

	.f2g-cart .f2g-cart-item__remove:active {
		background: #fff0ed !important;
		color: #d95b4e !important;
		transform: scale(0.94);
	}
}

/* Empty-cart blink interaction. */
@keyframes f2g-cart-blink {
	0%, 35%, 100% { transform: scaleY(1); }
	45%, 55% { transform: scaleY(0.12); }
}

.f2g-cart-empty__visual {
	cursor: pointer;
}

.f2g-cart-empty__eye {
	transform-origin: center;
}

@media (hover: hover) {
	.f2g-cart-empty__visual:hover .f2g-cart-empty__eye {
		animation: f2g-cart-blink 0.45s ease-in-out 1;
	}
}

.f2g-cart-empty__visual.is-blinking .f2g-cart-empty__eye {
	animation: f2g-cart-blink 0.45s ease-in-out 1;
}

.f2g-cart-empty__visual:hover .f2g-cart-empty__bag,
.f2g-cart-empty__visual.is-blinking .f2g-cart-empty__bag {
	transform: rotate(-3deg) translateY(-2px);
	transition: transform 0.2s ease;
}

@media (prefers-reduced-motion: reduce) {
	.f2g-cart-empty__visual:hover .f2g-cart-empty__eye,
	.f2g-cart-empty__visual.is-blinking .f2g-cart-empty__eye {
		animation: none !important;
	}

	.f2g-cart-empty__visual:hover .f2g-cart-empty__bag,
	.f2g-cart-empty__visual.is-blinking .f2g-cart-empty__bag {
		transform: rotate(-3deg);
		transition: none;
	}
}

/* =========================================================
   FINAL MERGED OVERRIDES — V1.2.0
========================================================= */

/* Consistent soft background behind product images. */
.f2g-cart {
	--f2g-image-bg: #F0F5F3;
}

.f2g-cart-item__image {
	background: var(--f2g-image-bg) !important;
}

/* Empty cart: remove redundant controls and add breathing room. */
.f2g-cart:has(.f2g-cart-empty) .f2g-cart__continue {
	display: none !important;
}

.f2g-cart:has(.f2g-cart-empty) .f2g-cart__header {
	margin-bottom: 74px !important;
}

.f2g-cart .f2g-cart-empty__count {
	display: none !important;
}

.f2g-cart-empty {
	margin-top: 0 !important;
}

/* Secure checkout button content. */
.f2g-cart-btn__main {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	min-width: 0;
}

.f2g-cart-btn__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 18px;
	width: 18px;
	height: 18px;
	color: currentColor;
}

.f2g-cart-btn__icon svg {
	display: block;
	width: 100%;
	height: 100%;
	overflow: visible;
}

.f2g-cart-btn__label {
	font-size: inherit !important;
	font-weight: 600 !important;
	line-height: 1;
	color: inherit !important;
	white-space: nowrap;
}

.f2g-cart-btn__amount {
	margin-left: auto;
	font-size: inherit !important;
	font-weight: 700 !important;
	line-height: 1;
	color: inherit !important;
	white-space: nowrap;
}

@media (max-width: 767px) {
	.f2g-cart:has(.f2g-cart-empty) .f2g-cart__header {
		margin-bottom: 38px !important;
	}

	.f2g-cart-btn__main {
		gap: 8px;
	}

	.f2g-cart-btn__icon {
		flex-basis: 17px;
		width: 17px;
		height: 17px;
	}
}
