.ac-mobile-menu-button {
	display: none;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	border-radius: 9999px;
	background: transparent;
	color: #0f172a;
	cursor: pointer;
	transition: background-color 160ms ease, transform 160ms ease;
}

.ac-mobile-menu-button:active {
	transform: scale(0.96);
}

.ac-menu-overlay {
	position: fixed;
	inset: 0;
	z-index: 80;
	display: none;
	background: rgba(15, 23, 42, 0.48);
	backdrop-filter: blur(2px);
}

.ac-menu-panel {
	position: fixed;
	inset: 0 auto 0 0;
	z-index: 90;
	width: min(86vw, 360px);
	transform: translateX(-100%);
	background: #ffffff;
	box-shadow: 0 20px 50px rgba(15, 23, 42, 0.24);
	transition: transform 220ms ease;
	display: flex;
	flex-direction: column;
}

.ac-menu-open .ac-menu-overlay {
	display: block;
}

.ac-menu-open .ac-menu-panel {
	transform: translateX(0);
}

.ac-menu-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px;
	border-bottom: 1px solid #e5e7eb;
}

.ac-menu-brand {
	font-family: Manrope, sans-serif;
	font-size: 22px;
	font-weight: 800;
	letter-spacing: -0.04em;
	color: #0f172a;
}

.ac-menu-close {
	width: 40px;
	height: 40px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8f9fb;
	color: #334155;
}

.ac-menu-body {
	padding: 20px;
	overflow-y: auto;
}

.ac-menu-search {
	position: relative;
	margin-bottom: 24px;
}

.ac-menu-search input {
	width: 100%;
	border: 0;
	border-radius: 14px;
	background: #f2f4f6;
	padding: 14px 44px 14px 16px;
	font-size: 14px;
	color: #0f172a;
}

.ac-menu-search .material-symbols-outlined {
	position: absolute;
	right: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: #64748b;
}

.ac-menu-label {
	margin: 0 0 12px;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: #94a3b8;
}

.ac-menu-list {
	display: flex;
	flex-direction: column;
	gap: 6px;
	margin-bottom: 24px;
}

.ac-menu-list a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 14px 12px;
	border-radius: 12px;
	text-decoration: none;
	color: #334155;
	font-weight: 700;
}

.ac-menu-list a:hover,
.ac-menu-list a:focus {
	background: color-mix(in srgb, var(--ac-primary-container) 10%, white);
	color: var(--ac-primary-container);
}

.ac-menu-actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.ac-menu-actions a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px;
	border-radius: 12px;
	background: #0f172a;
	color: #ffffff;
	font-weight: 800;
	text-decoration: none;
}

.ac-menu-actions a:first-child {
	background: var(--ac-primary-container);
}

.ac-mobile-header-icons {
	display: none;
}

body.ac-menu-open {
	overflow: hidden;
}

.ac-contact-dock {
	position: fixed;
	right: 20px;
	bottom: 80px;
	z-index: 70;
	display: flex;
	flex-direction: column;
	gap: 10px;
	opacity: 0;
	pointer-events: none;
	transform: translateY(14px);
	transition: opacity 180ms ease, transform 180ms ease;
}

.ac-contact-dock.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.ac-contact-dock a {
	width: 46px;
	height: 46px;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	text-decoration: none;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
	transition: transform 160ms ease, box-shadow 160ms ease;
}

.ac-contact-dock a:hover,
.ac-contact-dock a:focus {
	transform: translateY(-2px);
	box-shadow: 0 16px 38px rgba(15, 23, 42, 0.26);
}

.ac-contact-call {
	background: #0f172a;
}

.ac-contact-whatsapp {
	background: #22c55e;
}

.ac-cart-overlay {
	position: fixed;
	inset: 0;
	z-index: 95;
	display: none;
	background: rgba(15, 23, 42, 0.5);
	backdrop-filter: blur(2px);
}

.ac-cart-drawer {
	position: fixed;
	inset: 0 0 0 auto;
	z-index: 100;
	width: min(92vw, 390px);
	transform: translateX(100%);
	background: #ffffff;
	box-shadow: -20px 0 50px rgba(15, 23, 42, 0.2);
	transition: transform 220ms ease;
	display: flex;
	flex-direction: column;
}

.ac-cart-open .ac-cart-overlay {
	display: block;
}

.ac-cart-open .ac-cart-drawer {
	transform: translateX(0);
}

.ac-cart-head,
.ac-cart-foot {
	padding: 18px;
	border-bottom: 1px solid #e5e7eb;
}

.ac-cart-foot {
	margin-top: auto;
	border-top: 1px solid #e5e7eb;
	border-bottom: 0;
}

.ac-cart-title {
	margin: 0;
	font-size: 18px;
	font-weight: 800;
	color: #0f172a;
}

.ac-cart-close {
	width: 38px;
	height: 38px;
	border: 0;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8f9fb;
	color: #334155;
	cursor: pointer;
}

.ac-cart-body {
	padding: 18px;
	overflow-y: auto;
}

.ac-cart-empty {
	display: flex;
	min-height: 220px;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 8px;
	text-align: center;
	color: #64748b;
}

.ac-cart-empty .material-symbols-outlined {
	font-size: 42px;
	color: #cbd5e1;
}

.ac-cart-items {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.ac-cart-item {
	display: grid;
	grid-template-columns: 82px minmax(0, 1fr);
	gap: 12px;
	padding: 12px;
	border: 1px solid #eef2f7;
	border-radius: 16px;
	background: #ffffff;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
}

.ac-cart-item-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 82px;
	height: 82px;
	border-radius: 12px;
	background: #f8fafc;
	overflow: hidden;
}

.ac-cart-item-title {
	display: block;
	color: #0f172a;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.3;
	text-decoration: none;
}

.ac-cart-item-price {
	margin: 6px 0 10px;
	color: var(--ac-primary);
	font-size: 13px;
	font-weight: 800;
}

.ac-cart-remove {
	width: 28px;
	height: 28px;
	border: 0;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 28px;
	background: #f8fafc;
	color: #64748b;
	cursor: pointer;
}

.ac-cart-remove .material-symbols-outlined {
	font-size: 18px;
}

.ac-cart-qty-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

.ac-cart-qty {
	display: flex;
	align-items: center;
	border: 1px solid #e2e8f0;
	border-radius: 9999px;
	overflow: hidden;
}

.ac-cart-qty button {
	width: 30px;
	height: 30px;
	border: 0;
	background: #f8fafc;
	color: #0f172a;
	font-size: 16px;
	font-weight: 900;
	cursor: pointer;
}

.ac-cart-qty span {
	min-width: 30px;
	text-align: center;
	font-size: 13px;
	font-weight: 900;
	color: #0f172a;
}

.ac-cart-line-total {
	color: #0f172a;
	font-size: 13px;
	font-weight: 900;
	white-space: nowrap;
}

.ac-cart-summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-top: 16px;
	padding: 16px;
	border-radius: 14px;
	background: #f8fafc;
	color: #0f172a;
	font-weight: 800;
}

.ac-cart-summary strong {
	color: var(--ac-primary);
}

.ac-cart-status {
	display: flex;
	gap: 12px;
	align-items: flex-start;
	padding: 14px;
	border-radius: 14px;
	background: #f0fdf4;
	color: #166534;
}

.ac-cart-status.is-loading {
	background: #f8fafc;
	color: #334155;
}

.ac-cart-status.is-error {
	background: #fef2f2;
	color: #991b1b;
}

.ac-cart-view {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 14px;
	border-radius: 12px;
	background: var(--ac-primary);
	color: #ffffff;
	font-weight: 800;
	text-decoration: none;
}

.ac-mobile-bottom-nav {
	position: fixed;
	left: 50%;
	bottom: 0;
	z-index: 75;
	width: min(100vw - 24px, 520px);
	height: 86px;
	display: none;
	align-items: center;
	justify-content: space-around;
	padding: 10px 18px 14px;
	border: 1px solid #e5e7eb;
	border-bottom: 0;
	border-radius: 18px 18px 0 0;
	background: #ffffff;
	box-shadow: 0 -10px 34px rgba(15, 23, 42, 0.16);
	transform: translateX(-50%);
}

.ac-mobile-bottom-nav a {
	display: flex;
	flex: 1 1 0;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 5px;
	min-width: 0;
	color: #74747f;
	font-size: 12px;
	font-weight: 900;
	text-decoration: none;
}

.ac-mobile-bottom-nav .material-symbols-outlined {
	font-size: 28px;
	line-height: 1;
}

.ac-mobile-bottom-nav a.is-active {
	color: var(--ac-primary);
}

.ac-back-to-top {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 70;
	width: 44px;
	height: 44px;
	border: 0;
	border-radius: 9999px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--ac-primary);
	color: #ffffff;
	box-shadow: 0 12px 30px rgba(15, 23, 42, 0.22);
	cursor: pointer;
	opacity: 0;
	pointer-events: none;
	transform: translateY(12px);
	transition: opacity 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.ac-back-to-top:hover,
.ac-back-to-top:focus {
	background: var(--ac-primary-container);
}

.ac-back-to-top.is-visible {
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.ac-checkout-header-inner {
	gap: 12px;
}

.ac-checkout-brand {
	line-height: 1;
}

.ac-mobile-brand {
	width: min(180px, 100%);
	flex: 0 0 auto;
	overflow: hidden;
}

.ac-mobile-brand img,
.ac-checkout-brand img {
	display: block;
	height: 50px !important;
	width: auto;
	max-width: 100%;
	object-fit: contain;
}

@media (max-width: 767px) {
	body {
		padding-bottom: 96px;
	}

	header.sticky,
	.ac-checkout-header.sticky {
		position: sticky !important;
		top: 0 !important;
		z-index: 50 !important;
	}

	.ac-mobile-menu-button {
		display: flex;
		order: 0;
		flex: 0 0 40px;
		width: 40px;
		height: 40px;
		margin-left: 0;
	}

	.ac-product-card {
		border-radius: 10px;
	}

	.ac-product-card .h-48 {
		height: 132px !important;
		margin-bottom: 12px !important;
	}

	.ac-product-card .p-4 {
		padding: 12px !important;
	}

	.ac-product-card .p-6 {
		padding: 12px !important;
	}

	.ac-product-card .px-5 {
		padding-left: 12px !important;
		padding-right: 12px !important;
	}

	.ac-product-card .pb-5 {
		padding-bottom: 12px !important;
	}

	.ac-product-card .font-headline-sm,
	.ac-product-card .text-headline-sm {
		font-size: 14px !important;
		line-height: 1.3 !important;
	}

	.ac-product-card .font-price-lg,
	.ac-product-card .text-price-lg {
		font-size: 15px !important;
		line-height: 1.2 !important;
	}

	.ac-product-card .font-label-md,
	.ac-product-card .text-xs {
		font-size: 10px !important;
	}

	.ac-product-card .mt-4 {
		margin-top: 12px !important;
	}

	.ac-product-card .py-3 {
		padding-top: 9px !important;
		padding-bottom: 9px !important;
	}

	.ac-back-to-top {
		right: 16px;
		bottom: 16px;
	}

	.ac-contact-dock {
		right: 16px;
		bottom: 110px;
	}

	.ac-contact-dock a {
		width: 42px;
		height: 42px;
	}

	.ac-mobile-bottom-nav {
		display: flex;
	}

	.ac-mobile-header-icons {
		display: flex;
		align-items: center;
		gap: 8px;
		margin-left: auto;
	}

	.ac-checkout-header-inner {
		padding-left: 16px !important;
		padding-right: 16px !important;
		gap: 8px;
	}

	.ac-checkout-brand {
		font-size: 20px !important;
		letter-spacing: -0.05em;
		width: min(130px, 100%);
	}

	.ac-checkout-menu-button {
		order: 0;
	}

	.ac-mobile-header-icons button,
	.ac-mobile-header-icons a {
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 9999px;
		color: #334155;
	}

	.ac-mobile-header-icons button:active,
	.ac-mobile-header-icons a:active {
		transform: scale(0.96);
	}

	.ac-mobile-hide {
		display: none !important;
	}

	.ac-mobile-header-icons a,
	.ac-mobile-header-icons button {
		width: 40px;
		height: 40px;
		flex: 0 0 40px;
	}

	body.woocommerce-account .woocommerce form.login,
	body.woocommerce-account .woocommerce form.register {
		background: #ffffff;
		border: 1px solid #e5e7eb;
		border-radius: 16px;
		padding: 24px;
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
	}

	body.woocommerce-account .woocommerce form .form-row {
		margin-bottom: 16px;
	}

	body.woocommerce-account .woocommerce form .form-row input,
	body.woocommerce-account .woocommerce form .form-row select,
	body.woocommerce-account .woocommerce form .form-row textarea {
		width: 100%;
		border-radius: 12px;
		border: 1px solid #e2e8f0;
		padding: 12px 14px;
		background: #f8f9fb;
		color: #191c1e;
	}

	body.woocommerce-account .woocommerce form .form-row input:focus,
	body.woocommerce-account .woocommerce form .form-row select:focus,
	body.woocommerce-account .woocommerce form .form-row textarea:focus {
		outline: none;
		border-color: var(--ac-primary-container);
		box-shadow: 0 0 0 1px var(--ac-primary-container);
	}

	body.woocommerce-account .woocommerce .button {
		background: var(--ac-primary);
		color: #ffffff;
		border-radius: 12px;
		padding: 12px 18px;
		font-weight: 800;
		border: 0;
	}

	body.woocommerce-account .woocommerce .button:hover {
		background: var(--ac-primary-container);
	}
}

/* FORCE SAME BRAND LOGO SIZE ON DESKTOP, MOBILE AND CHECKOUT */
.ac-mobile-brand,
.ac-desktop-brand,
.ac-checkout-brand {
	width: auto !important;
	max-width: 220px !important;
	height: 50px !important;
	flex: 0 0 auto !important;
	display: block !important;
}

.ac-mobile-brand img,
.ac-desktop-brand img,
.ac-checkout-brand img {
	display: block !important;
	height: 50px !important;
	max-height: 50px !important;
	width: auto !important;
	max-width: 220px !important;
	object-fit: contain !important;
}