/**
 * Avenalife Core — public styles (minimal).
 */

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute;
	width: 1px;
	word-wrap: normal !important;
}

:root {
	--al-color-primary: #4a5d3f;
	--al-color-cream: #f5f0e8;
	--al-color-dark: #1a1a1a;
	--al-color-white: #ffffff;
	--al-radius: 8px;
	--al-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
}

/* Store status */
.al-store-status {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-weight: 600;
	font-size: 0.9rem;
}

.al-store-status__dot {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: #c0392b;
}

.al-store-status.is-open .al-store-status__dot {
	background: #2e7d32;
}

.al-business-hours__list {
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
}

.al-business-hours__list li {
	margin: 0.35rem 0;
}

/* Contact & social */
.al-contact__item,
.al-copyright__line,
.al-copyright__credit {
	margin: 0.35rem 0;
}

.al-social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.al-social a {
	color: var(--al-color-primary);
	text-decoration: none;
	font-weight: 600;
}

.al-social a:hover {
	text-decoration: underline;
}

.al-btn--whatsapp {
	display: inline-block;
	padding: 0.65rem 1.25rem;
	background: var(--al-color-primary);
	color: var(--al-color-white);
	border-radius: var(--al-radius);
	text-decoration: none;
	font-weight: 600;
}

.al-btn--whatsapp:hover {
	opacity: 0.92;
	color: var(--al-color-white);
}

/* —— Botones globales (.al-btn): NO mezclar con estilos del hero (#al-hero) —— */
.al-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.35rem;
	border-radius: var(--al-radius);
	font-weight: 600;
	text-decoration: none;
	transition: opacity 0.2s ease, transform 0.2s ease;
	border: 2px solid transparent;
	box-sizing: border-box;
}

.al-btn:hover {
	opacity: 0.92;
	transform: translateY(-1px);
}

.al-btn--primary {
	background: var(--al-color-primary);
	color: var(--al-color-white);
}

.al-btn--outline {
	background: transparent;
	color: var(--al-color-white);
	border-color: var(--al-color-white);
}

.al-btn--sm {
	padding: 0.55rem 1rem;
	font-size: 0.9rem;
}

/* Floating chat — Fase 3F premium */
.al-chat {
	--al-chat-olive: #4a5d3f;
	--al-chat-olive-dark: #3a4a31;
	--al-chat-cream: #f5f0e8;
	--al-chat-dark: #1a1a1a;
	position: fixed;
	bottom: max(12px, env(safe-area-inset-bottom, 0px));
	z-index: 99990;
	font-family: inherit;
	width: auto;
	max-width: calc(100vw - max(12px, env(safe-area-inset-right, 0px)) - max(12px, env(safe-area-inset-left, 0px)));
	margin: 0;
	padding: 0;
}

.al-chat.al-chat--bottom-right,
#al-chat-widget.al-chat--bottom-right {
	right: max(12px, env(safe-area-inset-right, 0px));
	left: auto;
	transform: none;
	margin: 0;
}

.al-chat.al-chat--bottom-left,
#al-chat-widget.al-chat--bottom-left {
	left: max(12px, env(safe-area-inset-left, 0px));
	right: auto;
	transform: none;
	margin: 0;
}

.al-chat__fab {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	margin: 0;
	padding: 0;
	animation: al-chat-fab-enter 0.55s ease 2s both;
}

.al-chat__nudge {
	position: absolute;
	right: 0;
	bottom: calc(100% + 10px);
	width: max-content;
	max-width: min(240px, calc(100vw - 5rem));
	padding: 0.65rem 2rem 0.65rem 0.85rem;
	background: var(--al-color-white);
	color: var(--al-chat-dark);
	border-radius: 14px;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.12);
	border: 1px solid rgba(74, 93, 63, 0.1);
	opacity: 0;
	transform: translateY(8px);
	transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
	visibility: hidden;
	pointer-events: none;
}

.al-chat__nudge.is-visible {
	opacity: 1;
	transform: translateY(0);
	visibility: visible;
	pointer-events: auto;
}

.al-chat--bottom-left .al-chat__nudge {
	right: auto;
	left: 0;
}

.al-chat__nudge-text {
	margin: 0;
	font-size: 0.85rem;
	line-height: 1.4;
	font-weight: 600;
}

.al-chat__nudge-close {
	position: absolute;
	top: 0.35rem;
	right: 0.35rem;
	border: none;
	background: transparent;
	color: var(--al-chat-dark);
	font-size: 1.1rem;
	line-height: 1;
	cursor: pointer;
	padding: 0.15rem;
	opacity: 0.55;
}

.al-chat__nudge-close:hover {
	opacity: 0.85;
}

.al-chat__hint {
	position: absolute;
	top: 50%;
	right: calc(100% + 0.65rem);
	transform: translateY(-50%);
	display: inline-block;
	padding: 0.45rem 0.85rem;
	background: var(--al-color-white);
	color: var(--al-chat-dark);
	border-radius: 999px;
	font-size: 0.85rem;
	font-weight: 600;
	line-height: 1.2;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
	border: 1px solid rgba(74, 93, 63, 0.12);
	white-space: nowrap;
	opacity: 1;
	visibility: visible;
	transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
	animation: al-chat-hint-enter 0.45s ease 2.2s both;
}

.al-chat--bottom-left .al-chat__hint {
	right: auto;
	left: calc(100% + 0.65rem);
}

.al-chat__hint.is-collapsed {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

.al-chat--bottom-right .al-chat__hint.is-collapsed {
	transform: translateY(-50%) translateX(8px);
}

.al-chat--bottom-left .al-chat__hint.is-collapsed {
	transform: translateY(-50%) translateX(-8px);
}

.al-chat__window {
	position: absolute;
	bottom: calc(100% + 0.75rem);
	width: min(320px, calc(100vw - 2rem));
	max-height: min(70vh, 560px);
	display: flex;
	flex-direction: column;
	background: var(--al-color-white);
	border-radius: 12px;
	box-shadow: 0 12px 40px rgba(26, 26, 26, 0.14);
	border: 1px solid rgba(74, 93, 63, 0.12);
	overflow: hidden;
	min-height: 0;
}

.al-chat--bottom-left .al-chat__window {
	left: 0;
	right: auto;
}

.al-chat--bottom-right .al-chat__window {
	right: 0;
	left: auto;
}

.al-chat__window[hidden] {
	display: none !important;
}

.al-chat__window-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	padding: 0.85rem 1rem;
	background: var(--al-chat-accent, var(--al-chat-olive));
	color: var(--al-color-white);
	flex-shrink: 0;
}

.al-chat__header-brand {
	display: flex;
	align-items: center;
	gap: 0.65rem;
	min-width: 0;
	flex: 1;
}

.al-chat__header-copy {
	min-width: 0;
}

.al-chat__avatar {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--al-chat-olive-dark);
	color: var(--al-color-white);
	font-weight: 700;
	flex-shrink: 0;
	line-height: 1;
}

.al-chat__avatar--header {
	width: 36px;
	height: 36px;
	font-size: 0.95rem;
}

.al-chat__avatar--sm {
	width: 28px;
	height: 28px;
	font-size: 0.75rem;
}

.al-chat__avatar--image {
	overflow: hidden;
	padding: 0;
	background: var(--al-chat-olive-dark);
}

.al-chat__avatar-img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}

.al-chat__window-title {
	margin: 0;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.25;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

.al-chat__window-subtitle {
	margin: 0.15rem 0 0;
	font-size: 0.75rem;
	line-height: 1.3;
	opacity: 0.8;
	font-weight: 500;
}

.al-chat__close {
	border: none;
	background: transparent;
	color: inherit;
	font-size: 1.35rem;
	line-height: 1;
	cursor: pointer;
	padding: 0.15rem 0.35rem;
	flex-shrink: 0;
}

.al-chat__body {
	flex: 1 1 auto;
	min-height: 0;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
}

.al-chat__messages {
	flex: 0 0 auto;
	overflow: visible;
	padding: 1rem 1rem 0;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	min-height: 0;
	max-height: none;
}

.al-chat__message {
	max-width: 100%;
}

.al-chat__message--bot {
	align-self: flex-start;
	max-width: 92%;
}

.al-chat__message--user {
	align-self: flex-end;
	max-width: 88%;
}

.al-chat__message-row {
	display: flex;
	align-items: flex-end;
	gap: 0.5rem;
}

.al-chat__message-content {
	min-width: 0;
	flex: 1;
}

.al-chat__message-label {
	display: block;
	font-size: 0.7rem;
	font-weight: 700;
	opacity: 0.65;
	margin-bottom: 0.2rem;
	text-transform: none;
}

.al-chat__message-text {
	margin: 0;
	padding: 0.65rem 0.85rem;
	border-radius: 14px;
	font-size: 0.9rem;
	line-height: 1.5;
	background: var(--al-chat-cream);
	color: var(--al-chat-dark);
	text-transform: none;
}

.al-chat__message--user .al-chat__message-text {
	background: rgba(74, 93, 63, 0.12);
}

.al-chat__message-text--typing {
	display: flex;
	align-items: center;
	min-height: 1.45em;
}

.al-chat__typing {
	display: inline-flex;
	align-items: center;
	gap: 0.25rem;
}

.al-chat__typing-dot {
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--al-chat-olive-dark);
	opacity: 0.35;
	animation: al-chat-typing-dot 1.2s ease-in-out infinite;
}

.al-chat__typing-dot:nth-child(2) {
	animation-delay: 0.15s;
}

.al-chat__typing-dot:nth-child(3) {
	animation-delay: 0.3s;
}

.al-chat__typing-text {
	font-size: 0.85rem;
	color: var(--al-chat-olive-dark);
	opacity: 0.75;
}

@keyframes al-chat-typing-dot {
	0%,
	80%,
	100% {
		opacity: 0.35;
		transform: translateY(0);
	}

	40% {
		opacity: 1;
		transform: translateY(-3px);
	}
}

.al-chat__faq {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 0.5rem;
	padding: 0 1rem 1rem;
	margin-top: 1rem;
	border-top: none;
	flex-shrink: 0;
}

.al-chat__faq-btn {
	width: 100%;
	border: 1px solid rgba(245, 240, 232, 0.9);
	background: var(--al-chat-cream);
	color: var(--al-chat-dark);
	border-radius: 15px;
	padding: 12px 16px;
	font-size: 0.875rem;
	line-height: 1.45;
	cursor: pointer;
	text-align: left;
	text-transform: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.al-chat__faq-btn:hover,
.al-chat__faq-btn:focus-visible {
	background: rgba(74, 93, 63, 0.12);
	border-color: rgba(74, 93, 63, 0.18);
	color: var(--al-chat-olive-dark);
	outline: none;
}

.al-chat__faq-btn:active {
	background: rgba(74, 93, 63, 0.18);
	color: var(--al-chat-olive-dark);
}

.al-chat__footer {
	padding: 0.75rem 1rem 1rem;
	border-top: 1px solid rgba(74, 93, 63, 0.08);
	flex-shrink: 0;
	background: var(--al-color-white);
}

.al-chat__escalate {
	display: block;
	width: 100%;
	text-align: center;
	padding: 0.75rem 1rem;
	background: var(--al-chat-olive);
	color: #fff;
	border-radius: 10px;
	text-decoration: none;
	font-weight: 600;
	border: none;
	cursor: pointer;
	font-size: 0.9rem;
	font-family: inherit;
	text-transform: none;
	transition: background-color 0.2s ease;
}

.al-chat__escalate:hover,
.al-chat__escalate:focus-visible {
	background: var(--al-chat-olive-dark);
	color: #fff;
	outline: none;
}

.al-chat__escalate--fallback {
	margin-top: 0.5rem;
}

.al-chat__escalate--fallback[hidden],
.al-chat__escalate[hidden] {
	display: none !important;
}

.al-chat-agent-card {
	margin: 1rem 0;
	padding: 0.5rem 1rem 1rem;
	border: 1px solid #c3c4c7;
	border-radius: 4px;
	background: #fff;
}

.al-chat__toggle,
#al-chat-toggle.al-chat__toggle {
	position: relative;
	width: 60px;
	height: 60px;
	border: none;
	border-radius: 50%;
	background-color: var(--al-chat-accent, #4a5d3f);
	background-image: none;
	color: var(--al-color-white);
	cursor: pointer;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: transform 0.2s ease;
	font-size: 1.5rem;
	line-height: 1;
	flex-shrink: 0;
}

.al-chat__toggle::after {
	content: "";
	position: absolute;
	inset: -5px;
	border-radius: 50%;
	border: 2px solid rgba(74, 93, 63, 0.35);
	opacity: 0;
	pointer-events: none;
	animation: al-chat-pulse 5s ease-in-out infinite;
	animation-delay: 4s;
}

.al-chat__toggle:hover {
	transform: scale(1.05);
}

.al-chat__toggle-icon {
	display: block;
	line-height: 1;
}

.al-chat__toggle-icon--svg {
	display: flex;
	align-items: center;
	justify-content: center;
}

.al-chat__toggle-svg {
	display: block;
	width: 26px;
	height: 26px;
}

@keyframes al-chat-fab-enter {
	from {
		opacity: 0;
		transform: translateY(12px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes al-chat-hint-enter {
	from {
		opacity: 0;
		transform: translateY(calc(-50% + 8px));
	}

	to {
		opacity: 1;
		transform: translateY(-50%);
	}
}

@keyframes al-chat-pulse {
	0%,
	70%,
	100% {
		opacity: 0;
		transform: scale(1);
	}

	80% {
		opacity: 0.85;
		transform: scale(1.08);
	}
}

@media (prefers-reduced-motion: reduce) {
	.al-chat__fab,
	.al-chat__hint,
	.al-chat__nudge {
		animation: none;
		transition: none;
	}

	.al-chat__toggle::after {
		animation: none;
		display: none;
	}

	.al-chat__hint,
	.al-chat__nudge {
		display: none;
	}

	.al-chat__typing-dot {
		animation: none;
		opacity: 0.7;
	}
}

/* —— Homepage Fase 2B —— */
.al-container {
	width: min(1200px, calc(100% - 2rem));
	margin-left: auto;
	margin-right: auto;
}

.al-top-bar {
	background: var(--al-color-primary);
	color: var(--al-color-white);
	padding: 0.5rem 1rem;
	font-size: 0.85rem;
}

.al-top-bar__text {
	margin: 0;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.al-top-bar__segment {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.al-top-bar__icon {
	width: auto;
	object-fit: contain;
	flex-shrink: 0;
	display: block;
}

.al-top-bar__sep {
	opacity: 0.85;
	padding: 0 0.25rem;
}

.al-top-bar--ticker {
	overflow: hidden;
	padding: 0.45rem 0;
	text-align: start;
}

.al-top-bar--ticker .al-top-bar__text--static {
	display: none;
}

.al-top-bar__viewport {
	overflow: hidden;
	width: 100%;
	display: block;
}

.al-top-bar__track {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	width: max-content;
	will-change: transform;
	animation: al-top-bar-ticker var(--al-ticker-speed, 28s) linear infinite;
}

.al-top-bar__half {
	display: flex;
	flex-shrink: 0;
	flex-wrap: nowrap;
	align-items: center;
}

.al-top-bar__item {
	display: inline-flex;
	flex-shrink: 0;
	align-items: center;
	padding-right: 3rem;
	white-space: nowrap;
}

@keyframes al-top-bar-ticker {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* —— Hero (foto cover, texto directo, sin tarjeta; contenido boxed Elementor) —— */

body #al-hero.al-hero,
body #al-hero.al-hero--overlay {
	position: relative;
	display: flex;
	align-items: center;
	overflow: hidden;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	min-height: 440px;
	background: var(--al-color-cream, #f5f0e8);
}

.al-hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.al-hero__poster,
.al-hero__image {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	transition: opacity 0.6s ease;
}

.al-hero__poster {
	z-index: 1;
}

.al-hero__image--empty {
	background: var(--al-color-cream, #f5f0e8);
}

.al-hero__poster--mobile,
.al-hero__image--mobile {
	display: none;
}

@media (max-width: 767px) {
	.al-hero__poster--desktop,
	.al-hero__image--desktop {
		display: none;
	}

	.al-hero__poster--mobile,
	.al-hero__image--mobile {
		display: block;
	}
}

.al-hero__video {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center center;
	opacity: 0;
	transition: opacity 0.6s ease;
}

.al-hero--playing .al-hero__video {
	opacity: 1;
}

.al-hero--playing .al-hero__poster {
	opacity: 0;
}

.al-hero--has-video:not(.al-hero--playing) .al-hero__video {
	pointer-events: none;
}

.al-hero__scrim {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
	background: linear-gradient(
		90deg,
		rgba(20, 22, 16, 0.34) 0%,
		rgba(20, 22, 16, 0.16) 32%,
		rgba(20, 22, 16, 0) 60%
	);
}

body #al-hero .al-hero__inner,
body #al-hero .al-hero__inner.al-container {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
	padding: 0;
	box-sizing: border-box;
}

.al-hero__inner::before {
	display: none;
}

body #al-hero .al-hero__content {
	width: 100%;
	max-width: 560px;
	margin-left: 0 !important;
	margin-right: auto !important;
	text-align: left !important;
	color: var(--al-color-dark);
}

.al-hero__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	margin: 0 0 1.25rem;
	padding: 0.45rem 1rem;
	background-color: var(--al-hero-badge-bg, #eaf0e6);
	border: 1px solid rgba(74, 93, 63, 0.22);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--al-hero-badge-text, #4a5d3f);
}

.al-hero__badge-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--al-hero-badge-text, #4a5d3f);
}

.al-hero--title-align-left .al-hero__content {
	margin-right: auto;
	margin-left: 0;
	text-align: left;
}

.al-hero--title-align-center .al-hero__content {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.al-hero--title-align-right .al-hero__content {
	margin-left: auto;
	margin-right: 0;
	text-align: right;
}

body #al-hero.al-hero--title-align-left h1.al-hero__title,
body #al-hero.al-hero--title-align-center h1.al-hero__title,
body #al-hero.al-hero--title-align-right h1.al-hero__title {
	text-align: left !important;
}

body #al-hero.al-hero--subtitle-align-left .al-hero__subtitle,
body #al-hero.al-hero--subtitle-align-center .al-hero__subtitle,
body #al-hero.al-hero--subtitle-align-right .al-hero__subtitle {
	text-align: left !important;
}

body #al-hero h1.al-hero__title {
	margin: 0 0 1.25rem;
	font-size: 56px !important;
	line-height: 1.07 !important;
	font-weight: 700;
	color: var(--al-hero-title-color, var(--al-color-primary));
	text-shadow:
		0 1px 2px rgba(255, 255, 255, 0.92),
		0 2px 18px rgba(255, 255, 255, 0.55),
		0 1px 4px rgba(0, 0, 0, 0.14);
}

body #al-hero.al-hero--title-mode-single h1.al-hero__title {
	white-space: nowrap;
}

body #al-hero .al-hero__subtitle {
	margin: 0 0 1.75rem;
	max-width: 430px;
	font-size: 21px !important;
	line-height: 1.55;
	opacity: 1;
	color: var(--al-hero-subtitle-color, var(--al-color-dark));
	text-shadow:
		0 1px 2px rgba(255, 255, 255, 0.95),
		0 1px 12px rgba(255, 255, 255, 0.62),
		0 1px 3px rgba(0, 0, 0, 0.12);
}

.al-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 0;
	justify-content: flex-start !important;
}

.al-hero--buttons-align-left .al-hero__actions,
.al-hero--buttons-align-center .al-hero__actions,
.al-hero--buttons-align-right .al-hero__actions {
	justify-content: flex-start !important;
}

.al-hero--title-align-left .al-hero__content,
.al-hero--title-align-center .al-hero__content,
.al-hero--title-align-right .al-hero__content {
	margin-left: 0 !important;
	margin-right: auto !important;
	text-align: left !important;
	align-items: flex-start !important;
}

.al-hero--title-align-center .al-hero__content,
.al-hero--title-align-right .al-hero__content {
	display: flex;
	flex-direction: column;
	align-items: flex-start !important;
}

body #al-hero a.al-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: auto;
	padding: 15px 30px;
	border-radius: var(--al-radius);
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
	border: 2px solid transparent;
	box-sizing: border-box;
}

body #al-hero a.al-hero__btn:hover {
	transform: translateY(-1px);
}

body #al-hero a.al-hero__btn.al-hero__btn--primary {
	background-color: #4a5d3f !important;
	color: #fff !important;
	border-color: #4a5d3f !important;
}

body #al-hero a.al-hero__btn.al-hero__btn--primary:hover {
	background-color: #3d4f33 !important;
	color: #fff !important;
	border-color: #3d4f33 !important;
}

body #al-hero a.al-hero__btn.al-hero__btn--secondary {
	background-color: rgba(255, 255, 255, 0.9) !important;
	color: #4a5d3f !important;
	border: 2px solid #4a5d3f !important;
}

body #al-hero a.al-hero__btn.al-hero__btn--secondary:hover {
	background-color: #4a5d3f !important;
	color: #fff !important;
	border-color: #4a5d3f !important;
}

/* Hero — tablet */
@media (min-width: 769px) and (max-width: 1024px) {
	body #al-hero.al-hero,
	body #al-hero.al-hero--overlay {
		display: flex !important;
		align-items: center !important;
		min-height: 480px !important;
	}

	body #al-hero .al-hero__inner,
	body #al-hero .al-hero__inner.al-container {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 0 !important;
		box-sizing: border-box;
	}

	body #al-hero h1.al-hero__title {
		font-size: 44px !important;
		line-height: 1.07 !important;
	}

	body #al-hero .al-hero__subtitle {
		font-size: 19px !important;
		max-width: 430px;
	}
}

/* Hero — desktop */
@media (min-width: 1025px) {
	body #al-hero.al-hero,
	body #al-hero.al-hero--overlay {
		display: flex !important;
		align-items: center !important;
		min-height: 580px !important;
	}

	body #al-hero .al-hero__inner,
	body #al-hero .al-hero__inner.al-container {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 0 !important;
		box-sizing: border-box;
	}

	body #al-hero .al-hero__content {
		max-width: 560px;
		margin-left: 0 !important;
		margin-right: auto !important;
		text-align: left !important;
	}

	body #al-hero h1.al-hero__title {
		font-size: 64px !important;
		line-height: 1.05 !important;
	}

	body #al-hero .al-hero__subtitle {
		font-size: 24px !important;
		max-width: 430px;
	}

	body #al-hero .al-hero__badge {
		font-size: 14px !important;
	}

	body #al-hero a.al-hero__btn {
		font-size: 17px !important;
		padding: 16px 32px !important;
	}
}

/* Hero — móvil */
@media (max-width: 768px) {
	body #al-hero.al-hero,
	body #al-hero.al-hero--overlay {
		display: flex !important;
		align-items: center !important;
		min-height: 440px !important;
	}

	body #al-hero .al-hero__inner,
	body #al-hero .al-hero__inner.al-container {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding: 0 !important;
		box-sizing: border-box;
	}

	body #al-hero .al-hero__content {
		max-width: 100% !important;
		width: 100%;
		margin-left: 0 !important;
		margin-right: auto !important;
		text-align: left !important;
	}

	body #al-hero .al-hero__badge {
		margin-bottom: 0.75rem;
		font-size: 12px !important;
	}

	body #al-hero h1.al-hero__title {
		margin-bottom: 0.75rem;
		font-size: 30px !important;
		line-height: 1.15 !important;
	}

	body #al-hero.al-hero--title-mode-single h1.al-hero__title {
		white-space: normal;
	}

	body #al-hero .al-hero__subtitle {
		margin-bottom: 1rem;
		max-width: 100%;
		font-size: 16px !important;
		line-height: 1.45 !important;
	}

	body #al-hero .al-hero__actions {
		flex-direction: row;
		flex-wrap: wrap;
		align-items: center;
		gap: 0.5rem;
	}

	body #al-hero a.al-hero__btn {
		width: auto !important;
		min-height: 0;
		padding: 13px 22px !important;
		font-size: 15px !important;
	}
}

/* Hero — celular chico */
@media (max-width: 380px) {
	body #al-hero h1.al-hero__title {
		font-size: 26px !important;
	}

	body #al-hero .al-hero__actions {
		flex-direction: column;
		align-items: flex-start;
	}
}

.al-trust {
	--al-trust-title-size: 1.125rem;
	--al-trust-subtitle-size: 0.9rem;
	--al-trust-card-ratio: 3 / 4;
	padding: 3rem 0 4rem;
	background: #f5f0e8;
	border-top: none;
}

/* Trust bar: mismo ancho que #al-hero — anula .al-container en section.al-trust */
body .e-con-boxed:has(.al-trust),
body .e-con-boxed:has(.al-trust) > .e-con-inner,
body .e-con:has(.al-trust) > .e-con-inner,
body .elementor-widget-html:has(.al-trust),
body .elementor-widget-html:has(.al-trust) > .elementor-widget-container,
body .elementor-widget-shortcode:has(.al-trust),
body .elementor-widget-shortcode:has(.al-trust) > .elementor-widget-container {
	max-width: none !important;
	width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	--content-width: 100% !important;
	--container-max-width: 100% !important;
	--padding-left: 0px !important;
	--padding-right: 0px !important;
}

@supports not selector(:has(*)) {
	body.elementor-3610 section.al-trust.al-container,
	body.page-id-3610 section.al-trust.al-container {
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

body section.al-trust,
body section.al-trust.al-container {
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	box-sizing: border-box;
}

body section.al-trust .al-trust__grid {
	width: 100% !important;
	max-width: min(1320px, 100%) !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 16px !important;
	padding-right: 16px !important;
	box-sizing: border-box;
}

.al-trust__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.5rem;
	list-style: none;
	margin: 0 auto;
	padding: 0;
	max-width: min(1320px, 100%);
}

.al-trust__card {
	margin: 0;
	border-radius: 26px;
	overflow: hidden;
	box-shadow: 0 14px 36px rgba(26, 26, 26, 0.14);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
	.al-trust__card:hover {
		transform: translateY(-5px);
		box-shadow: 0 22px 48px rgba(26, 26, 26, 0.2);
	}
}

.al-trust__card-inner {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	min-height: 100%;
	aspect-ratio: var(--al-trust-card-ratio);
	background-color: #4a5d3f;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.al-trust__card-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(26, 26, 26, 0.88) 0%, rgba(26, 26, 26, 0.42) 42%, rgba(26, 26, 26, 0) 72%);
	pointer-events: none;
}

.al-trust__card-content {
	position: relative;
	z-index: 1;
	padding: 1.5rem 1.35rem 1.65rem;
}

.al-trust__icon-wrap {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3.25rem;
	height: 3.25rem;
	margin-bottom: 1rem;
	border-radius: 50%;
	background: #f5f0e8;
}

.al-trust__icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	color: #4a5d3f;
}

.al-trust__icon svg {
	display: block;
	width: 26px;
	height: 26px;
}

.al-trust__card-title {
	margin: 0;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: var(--al-trust-title-size);
	font-weight: 600;
	line-height: 1.25;
	color: #fff;
}

.al-trust__card-subtitle {
	margin: 0.5rem 0 0;
	font-size: var(--al-trust-subtitle-size);
	font-weight: 400;
	line-height: 1.45;
	color: rgba(245, 240, 232, 0.92);
}

.al-benefits {
	padding: 5rem 0 4rem;
	background: var(--al-color-cream);
}

.al-section-title {
	margin: 0 0 2rem;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	color: var(--al-color-dark);
}

.al-section-title--center {
	text-align: center;
}

.al-section-title--light {
	color: var(--al-color-white);
}

.al-benefits__grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.al-benefits__card {
	background: var(--al-color-white);
	border-radius: var(--al-radius);
	padding: 1.25rem;
	box-shadow: 0 4px 16px rgba(26, 26, 26, 0.06);
}

.al-benefits__card-title {
	margin: 0 0 0.5rem;
	font-size: 1rem;
	color: var(--al-color-primary);
}

.al-benefits__card-text {
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.45;
	color: #444;
}

.al-promo-videos {
	--al-promo-text-align: center;
	--al-promo-heading-size: clamp(1.75rem, 4vw, 2.5rem);
	--al-promo-title-size: 1.25rem;
	--al-promo-desc-size: 1rem;
	--al-promo-block-gap: 2.25rem;
	padding: 4rem 0 5rem;
	background: #f5f0e8;
	text-align: var(--al-promo-text-align);
}

.al-promo-videos--align-left .al-promo-videos__list {
	align-items: flex-start;
}

.al-promo-videos--align-right .al-promo-videos__list {
	align-items: flex-end;
}

.al-promo-videos__inner {
	max-width: 960px;
	margin-left: auto;
	margin-right: auto;
}

.al-promo-videos__header {
	margin: 0 0 3rem;
	text-align: inherit;
}

.al-promo-videos__heading {
	margin: 0 0 0.35rem;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: var(--al-promo-heading-size);
	font-weight: 600;
	line-height: 1.2;
	color: #1a1a1a;
	text-align: inherit;
}

.al-promo-videos__subheading {
	margin: 0;
	font-size: 1.05rem;
	line-height: 1.45;
	color: #4a5d3f;
	text-align: inherit;
}

.al-promo-videos__list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0;
}

.al-promo-video {
	width: 100%;
	margin: 0;
	padding: var(--al-promo-block-gap) 0;
}

.al-promo-video:first-child {
	padding-top: 0;
}

.al-promo-video:last-child {
	padding-bottom: 0;
}

.al-promo-videos__divider {
	display: block;
	flex-shrink: 0;
	width: 80px;
	height: 1px;
	margin: 0 auto;
	padding: 0;
	border: 0;
	background-color: rgba(74, 93, 63, 0.3);
}

.al-promo-video__title {
	margin: 0 0 1.25rem;
	text-align: inherit;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: var(--al-promo-title-size);
	font-weight: 600;
	line-height: 1.3;
	color: #3a4a31;
}

.al-promo-video__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(26, 26, 26, 0.14);
	overflow: hidden;
	background: #000;
}

.al-promo-video__player {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	background: #000;
}

.al-promo-video__caption {
	max-width: 620px;
	margin: 1.25rem auto 0;
	text-align: inherit;
	font-size: var(--al-promo-desc-size);
	line-height: 1.6;
	color: #1a1a1a;
}

.al-promo-videos--align-left .al-promo-video__caption {
	margin-left: 0;
	margin-right: auto;
}

.al-promo-videos--align-right .al-promo-video__caption {
	margin-left: auto;
	margin-right: 0;
}

@media (max-width: 767px) {
	.al-promo-video__caption {
		padding-inline: 16px;
	}
}

.al-bestsellers {
	padding: 4rem 0;
	background: var(--al-color-cream);
}

.al-products {
	display: grid;
	gap: 1.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.al-products--cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

.al-products__item {
	position: relative;
	background: var(--al-color-white);
	border-radius: var(--al-radius);
	padding: 1rem;
	box-shadow: 0 4px 16px rgba(26, 26, 26, 0.06);
}

.al-products__badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 2;
	background: var(--al-color-primary);
	color: var(--al-color-white);
	font-size: 0.7rem;
	font-weight: 700;
	padding: 0.2rem 0.45rem;
	border-radius: 4px;
}

.al-products__thumb {
	display: block;
	margin-bottom: 0.75rem;
}

.al-products__thumb img {
	width: 100%;
	height: auto;
	border-radius: 6px;
}

.al-products__title {
	margin: 0 0 0.35rem;
	font-size: 1rem;
}

.al-products__title a {
	color: var(--al-color-dark);
	text-decoration: none;
}

.al-products__rating {
	margin-bottom: 0.35rem;
	font-size: 0.85rem;
}

.al-products__price {
	margin-bottom: 0.75rem;
	font-weight: 700;
	color: var(--al-color-primary);
}

.al-reviews-carousel {
	padding: 4rem 0;
	background: var(--al-color-cream);
	overflow: hidden;
}

.al-reviews-carousel .al-reviews-carousel__heading {
	--al-reviews-heading-size: clamp(1.75rem, 3vw, 2.25rem);
	--al-reviews-heading-color: var(--al-color-dark);
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: var(--al-reviews-heading-size);
	color: var(--al-reviews-heading-color);
}

.al-reviews-carousel--marquee {
	--al-marquee-gap: 1rem;
	--al-marquee-card-w: calc((min(100vw, 1320px) - 2rem - (2 * var(--al-marquee-gap))) / 3);
	--al-review-avatar-size: 48px;
}

.al-reviews-carousel__filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin: 0 0 1.5rem;
}

.al-reviews-carousel__filter {
	border: 2px solid var(--al-color-primary);
	background: transparent;
	color: var(--al-color-primary);
	border-radius: 999px;
	padding: 0.45rem 1rem;
	font: inherit;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease;
}

.al-reviews-carousel__filter:hover,
.al-reviews-carousel__filter.is-active {
	background: var(--al-color-primary);
	color: var(--al-color-white);
}

.al-reviews-carousel__source {
	display: none !important;
}

.al-reviews-marquee {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	width: 100%;
}

.al-reviews-marquee__row {
	width: 100%;
	flex: 0 0 auto;
}

.al-reviews-marquee__viewport {
	overflow: hidden;
	width: 100%;
	position: relative;
	-webkit-mask-image: linear-gradient(to right, transparent 0, #000 1.5rem, #000 calc(100% - 1.5rem), transparent 100%);
	mask-image: linear-gradient(to right, transparent 0, #000 1.5rem, #000 calc(100% - 1.5rem), transparent 100%);
}

.al-reviews-marquee__track {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: var(--al-marquee-gap);
	width: max-content;
	will-change: transform;
	animation-play-state: running;
}

.al-reviews-carousel--animated .al-reviews-marquee__row--left .al-reviews-marquee__track {
	animation: al-reviews-marquee-left var(--al-reviews-speed, 45s) linear infinite;
}

.al-reviews-carousel--animated .al-reviews-marquee__row--right .al-reviews-marquee__track {
	animation: al-reviews-marquee-right var(--al-reviews-speed, 45s) linear infinite;
}

@media (hover: hover) and (pointer: fine) {
	.al-reviews-carousel.is-paused .al-reviews-marquee__track {
		animation-play-state: paused;
	}
}

@media (hover: none), (pointer: coarse) {
	.al-reviews-carousel.is-paused .al-reviews-marquee__track {
		animation-play-state: paused;
	}
}

.al-reviews-carousel--static .al-reviews-marquee__track {
	animation: none !important;
}

.al-reviews-carousel__card {
	box-sizing: border-box;
	flex: 0 0 var(--al-marquee-card-w);
	width: var(--al-marquee-card-w);
	min-width: var(--al-marquee-card-w);
	max-width: var(--al-marquee-card-w);
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 0.5rem;
	overflow: hidden;
	background: var(--al-color-white);
	border: 1px solid rgba(74, 93, 63, 0.12);
	border-radius: var(--al-radius);
	padding: 0.85rem 0.9rem;
	box-shadow: 0 4px 16px rgba(26, 26, 26, 0.06);
}

.al-reviews-marquee__track .al-reviews-carousel__card {
	-webkit-user-select: none;
	user-select: none;
	-webkit-touch-callout: none;
	touch-action: manipulation;
}

.al-reviews-carousel__header {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	gap: 0.65rem;
	min-width: 0;
	width: 100%;
}

.al-reviews-carousel__avatar {
	position: static;
	flex: 0 0 var(--al-review-avatar-size);
	width: var(--al-review-avatar-size);
	height: var(--al-review-avatar-size);
	min-width: var(--al-review-avatar-size);
	max-width: var(--al-review-avatar-size);
	border: 2px solid rgba(74, 93, 63, 0.45);
	border-radius: 50%;
	box-sizing: border-box;
	overflow: hidden;
	line-height: 0;
}

.al-reviews-carousel__avatar img {
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	object-fit: cover;
}

.al-reviews-carousel__avatar-initials {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	color: #f5f0e8;
	font-weight: 700;
	font-size: 0.82rem;
	line-height: 1;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.al-reviews-carousel__name-row {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.2rem;
	min-width: 0;
	flex: 1 1 auto;
}

.al-reviews-carousel__name {
	margin: 0;
	font-weight: 700;
	color: var(--al-color-dark);
	line-height: 1.25;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	max-width: 100%;
}

.al-reviews-carousel__verified-badge {
	display: inline-flex;
	align-items: center;
	font-size: 0.68rem;
	font-weight: 700;
	line-height: 1.2;
	color: var(--al-color-primary);
	background: rgba(74, 93, 63, 0.1);
	border-radius: 999px;
	padding: 0.15rem 0.45rem;
	white-space: nowrap;
}

.al-reviews-carousel__stars {
	display: block;
	margin-bottom: 0.5rem;
	color: #c9a227;
	letter-spacing: 0.05em;
}

.al-reviews-carousel__text {
	margin: 0;
	line-height: 1.5;
	color: var(--al-color-dark);
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
	min-width: 0;
	flex: 0 1 auto;
}

.al-reviews-carousel__read-more {
	display: inline-block;
	align-self: flex-start;
	margin-top: 0.35rem;
	padding: 0;
	border: 0;
	background: none;
	color: var(--al-color-primary);
	font: inherit;
	font-weight: 700;
	font-size: 0.88rem;
	line-height: 1.3;
	cursor: pointer;
	text-decoration: underline;
	text-underline-offset: 0.12em;
	min-height: 44px;
	-webkit-tap-highlight-color: transparent;
	touch-action: manipulation;
}

.al-reviews-carousel__read-more:hover,
.al-reviews-carousel__read-more:focus {
	color: var(--al-color-dark);
}

.al-reviews-carousel__card.is-expanded {
	overflow: visible;
	position: relative;
	z-index: 2;
}

.al-reviews-carousel__card.is-expanded .al-reviews-carousel__text {
	display: block;
	overflow: visible;
	-webkit-line-clamp: unset;
	-webkit-box-orient: unset;
}

.al-reviews-carousel--empty-filter .al-reviews-marquee {
	display: none;
}

.al-reviews-carousel--empty-filter::after {
	content: attr(data-empty-message);
	display: block;
	text-align: center;
	color: rgba(26, 26, 26, 0.7);
	margin-top: 0.5rem;
	padding: 0 1rem;
}

@keyframes al-reviews-marquee-left {
	from {
		transform: translate3d(0, 0, 0);
	}

	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@keyframes al-reviews-marquee-right {
	from {
		transform: translate3d(-50%, 0, 0);
	}

	to {
		transform: translate3d(0, 0, 0);
	}
}

@media (max-width: 991px) {
	.al-reviews-carousel--marquee {
		--al-marquee-card-w: calc((100vw - 2rem - var(--al-marquee-gap)) / 2);
	}
}

@media (max-width: 767px) {
	.al-reviews-carousel--marquee {
		--al-marquee-card-w: min(62vw, 260px);
		--al-review-avatar-size: 42px;
	}

	.al-reviews-carousel__card {
		padding: 0.75rem 0.8rem;
	}

	.al-reviews-carousel__avatar-initials {
		font-size: 0.75rem;
	}

	.al-reviews-carousel__text {
		-webkit-line-clamp: 5;
		font-size: 0.92rem;
	}

	.al-reviews-marquee__viewport {
		-webkit-mask-image: linear-gradient(to right, transparent 0, #000 0.75rem, #000 calc(100% - 0.75rem), transparent 100%);
		mask-image: linear-gradient(to right, transparent 0, #000 0.75rem, #000 calc(100% - 0.75rem), transparent 100%);
	}
}

@media (prefers-reduced-motion: reduce) {
	.al-reviews-carousel--animated .al-reviews-marquee__track {
		animation-duration: calc(var(--al-reviews-speed, 45s) * 2);
	}
}

/* —— WooCommerce star ratings (shop + single product) —— */
.woocommerce div.product .star-rating::before,
.woocommerce ul.products li.product .star-rating::before,
.woocommerce-js div.product .star-rating::before,
.woocommerce-js ul.products li.product .star-rating::before,
body.woocommerce-shop .woocommerce .star-rating::before,
body.woocommerce.archive .woocommerce .star-rating::before,
body.post-type-archive-product .woocommerce .star-rating::before,
body.tax-product_cat .woocommerce .star-rating::before,
body.tax-product_tag .woocommerce .star-rating::before,
body.single-product .woocommerce .star-rating::before,
body.woocommerce-js.single-product .woocommerce .star-rating::before {
	color: rgba(255, 184, 0, 0.25);
}

.woocommerce div.product .star-rating span::before,
.woocommerce ul.products li.product .star-rating span::before,
.woocommerce div.product .woocommerce-product-rating .star-rating span::before,
.woocommerce-js div.product .star-rating span::before,
.woocommerce-js ul.products li.product .star-rating span::before,
.woocommerce-js div.product .woocommerce-product-rating .star-rating span::before,
body.woocommerce-shop .woocommerce .star-rating span::before,
body.woocommerce.archive .woocommerce .star-rating span::before,
body.post-type-archive-product .woocommerce .star-rating span::before,
body.tax-product_cat .woocommerce .star-rating span::before,
body.tax-product_tag .woocommerce .star-rating span::before,
body.single-product .woocommerce .star-rating span::before,
body.single-product .woocommerce .woocommerce-product-rating .star-rating span::before,
body.woocommerce-js.single-product .woocommerce .star-rating span::before {
	color: #ffb800;
}

/* —— Shop catalog: Ver producto CTA (archive/taxonomy only) —— */
body.woocommerce-shop ul.products li.product a.al-shop-view-product,
body.woocommerce.archive ul.products li.product a.al-shop-view-product,
body.post-type-archive-product ul.products li.product a.al-shop-view-product,
body.tax-product_cat ul.products li.product a.al-shop-view-product,
body.tax-product_tag ul.products li.product a.al-shop-view-product,
body.woocommerce-page ul.products li.product a.al-shop-view-product {
	display: inline-flex !important;
	visibility: visible !important;
	opacity: 1 !important;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 0.75rem;
	min-height: 44px;
	padding: 0.75rem 1.25rem;
	font-size: 0.95rem;
	line-height: 1.3;
	font-weight: 600;
	text-align: center;
	box-sizing: border-box;
	background: var(--al-color-primary) !important;
	color: var(--al-color-white) !important;
	border: 2px solid transparent !important;
	border-radius: var(--al-radius);
	text-decoration: none !important;
}

body.woocommerce-shop ul.products li.product a.al-shop-view-product:hover,
body.woocommerce-shop ul.products li.product a.al-shop-view-product:focus,
body.woocommerce.archive ul.products li.product a.al-shop-view-product:hover,
body.woocommerce.archive ul.products li.product a.al-shop-view-product:focus,
body.post-type-archive-product ul.products li.product a.al-shop-view-product:hover,
body.post-type-archive-product ul.products li.product a.al-shop-view-product:focus,
body.tax-product_cat ul.products li.product a.al-shop-view-product:hover,
body.tax-product_cat ul.products li.product a.al-shop-view-product:focus,
body.tax-product_tag ul.products li.product a.al-shop-view-product:hover,
body.tax-product_tag ul.products li.product a.al-shop-view-product:focus,
body.woocommerce-page ul.products li.product a.al-shop-view-product:hover,
body.woocommerce-page ul.products li.product a.al-shop-view-product:focus {
	color: var(--al-color-white) !important;
	background: var(--al-color-primary) !important;
	opacity: 0.92;
}

body.woocommerce-shop ul.products li.product .ast-on-card-button.ast-select-options-trigger,
body.tax-product_cat ul.products li.product .ast-on-card-button.ast-select-options-trigger,
body.tax-product_tag ul.products li.product .ast-on-card-button.ast-select-options-trigger,
body.woocommerce-shop ul.products li.product .astra-shop-summary-wrap .add_to_cart_button,
body.tax-product_cat ul.products li.product .astra-shop-summary-wrap .add_to_cart_button,
body.tax-product_tag ul.products li.product .astra-shop-summary-wrap .add_to_cart_button {
	display: none !important;
}

.al-product-review-cta {
	margin: 0.5rem 0 1rem;
}

.al-product-review-cta--with-rating {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem;
	margin: 0.35rem 0 0.75rem;
}

/* —— WooCommerce write-review CTA layout (colors via inline WC scope) —— */
body.single-product .woocommerce .al-write-review.button {
	font-size: 0.875rem;
	padding: 0.45rem 1rem;
	line-height: 1.4;
	border-radius: 999px;
	text-decoration: none;
	cursor: pointer;
}

.al-cta-band {
	padding: 3rem 0;
	background: var(--al-color-white);
}

.al-cta-band__inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

@media (max-width: 1024px) {
	.al-benefits__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	.al-trust__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1.25rem;
	}

	.al-products--cols-3 {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 767px) {
	.al-trust {
		--al-trust-card-ratio: 4 / 5;
		padding: 2.5rem 0 1rem;
	}

	.al-trust__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.75rem;
		max-width: none;
	}

	.al-trust__card-content {
		padding: 0.85rem 0.75rem 1rem;
	}

	.al-trust__icon-wrap {
		width: 2.5rem;
		height: 2.5rem;
		margin-bottom: 0.65rem;
	}

	.al-trust__icon {
		width: 2.25rem;
		height: 2.25rem;
	}

	.al-trust__icon svg {
		width: 20px;
		height: 20px;
	}

	.al-benefits {
		padding-top: 4.5rem;
	}

	.al-benefits__grid {
		grid-template-columns: 1fr;
	}

	.al-products--cols-3 {
		grid-template-columns: 1fr;
	}

	.al-footer-bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (prefers-reduced-motion: reduce) {
	.al-hero .al-hero__video {
		display: none;
	}

	.al-hero__poster,
	.al-hero__image {
		opacity: 1 !important;
	}

	.al-top-bar__track {
		animation: none;
	}

	.al-top-bar--ticker .al-top-bar__viewport {
		display: none;
	}

	.al-top-bar--ticker .al-top-bar__text--static {
		display: block;
		text-align: center;
		margin: 0;
		padding: 0 1rem;
	}
}

/* —— Site chrome (UAE header / footer) —— */
body.al-avenalife-plugin-header #ast-desktop-header,
body.al-avenalife-plugin-header #ast-mobile-header {
	display: none !important;
}

.al-site-header {
	position: relative;
	z-index: 100;
}

.al-header-main {
	background: var(--al-color-cream);
	border-bottom: 1px solid rgba(74, 93, 63, 0.15);
}

.al-header-main__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.85rem 0;
	min-height: 64px;
}

.al-header-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
	min-width: 2.75rem;
	min-height: 2.75rem;
	box-sizing: border-box;
	padding: 0;
	border: 1px solid rgba(74, 93, 63, 0.25);
	border-radius: var(--al-radius);
	background: var(--al-color-white);
	color: var(--al-color-primary);
	cursor: pointer;
	flex-shrink: 0;
	margin: 0;
	margin-left: auto;
}

.al-header-nav-check {
	position: absolute;
	width: 1px;
	height: 1px;
	opacity: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	pointer-events: none;
}

.al-header-toggle__icon,
.al-header-toggle__icon::before,
.al-header-toggle__icon::after {
	display: block;
	width: 1.15rem;
	height: 2px;
	background: currentColor;
	border-radius: 1px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.al-header-toggle__icon {
	position: relative;
}

.al-header-toggle__icon::before,
.al-header-toggle__icon::after {
	content: "";
	position: absolute;
	left: 0;
}

.al-header-toggle__icon::before {
	top: -6px;
}

.al-header-toggle__icon::after {
	top: 6px;
}

.al-site-header.is-menu-open .al-header-toggle__icon,
.al-header-nav-check:checked ~ .al-header-main .al-header-toggle__icon {
	background: transparent;
}

.al-site-header.is-menu-open .al-header-toggle__icon::before,
.al-header-nav-check:checked ~ .al-header-main .al-header-toggle__icon::before {
	transform: translateY(6px) rotate(45deg);
}

.al-site-header.is-menu-open .al-header-toggle__icon::after,
.al-header-nav-check:checked ~ .al-header-main .al-header-toggle__icon::after {
	transform: translateY(-6px) rotate(-45deg);
}

.al-header-menu {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex: 1;
	justify-content: flex-end;
	min-width: 0;
}

@media (min-width: 768px) {
	.al-header-main__inner {
		gap: 1.5rem;
	}

	.al-header-menu {
		justify-content: space-between;
	}

	.al-header-nav {
		flex: 1;
		display: flex;
		justify-content: center;
		min-width: 0;
	}

	.al-header-actions {
		flex-shrink: 0;
	}
}

.al-header-backdrop {
	display: none;
	cursor: pointer;
}

.al-logo {
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: var(--al-color-primary);
	font-weight: 800;
	font-size: 1.35rem;
	letter-spacing: -0.02em;
	flex-shrink: 0;
	min-height: 2.75rem;
}

.al-logo__text {
	color: var(--al-color-primary);
	display: inline-block;
	line-height: 1.2;
}

.al-logo__img {
	display: block;
	height: auto;
	max-height: 48px;
	width: auto;
}

.al-site-header .al-logo {
	gap: 0.625rem;
	min-width: 0;
	--al-header-logo-height: 52px;
	--al-header-logo-text-size: 26px;
}

.al-site-header .al-logo__img {
	max-height: var(--al-header-logo-height, 52px);
	height: auto;
	width: auto;
	max-width: 100%;
	flex-shrink: 0;
}

.al-site-header .al-logo__text {
	color: #4A5D3F;
	font-size: var(--al-header-logo-text-size, 26px);
	font-weight: 800;
	line-height: 1.2;
	white-space: nowrap;
}

.al-header-nav__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.35rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.al-header-nav a {
	color: var(--al-color-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.95rem;
	transition: color 0.2s ease;
}

.al-header-nav a:hover,
.al-header-nav a:focus-visible {
	color: var(--al-color-primary);
}

.al-header-actions {
	display: flex;
	align-items: center;
	gap: 0.75rem 1rem;
	flex-wrap: wrap;
}

.al-header-actions__link {
	color: var(--al-color-dark);
	text-decoration: none;
	font-weight: 600;
	font-size: 0.9rem;
	position: relative;
}

.al-header-actions__badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.25rem;
	height: 1.25rem;
	padding: 0 0.35rem;
	margin-left: 0.25rem;
	border-radius: 999px;
	background: var(--al-color-primary);
	color: var(--al-color-white);
	font-size: 0.75rem;
	line-height: 1;
}

.al-header-actions__badge--empty {
	opacity: 0.55;
}

.al-header-actions__shop.al-btn--primary:hover {
	color: var(--al-color-white);
}

.al-site-footer {
	background: var(--al-color-dark);
	color: rgba(255, 255, 255, 0.88);
	padding: 3rem 0 1.5rem;
	margin-top: 0;
}

.al-footer-grid {
	display: grid;
	grid-template-columns: minmax(220px, 1.4fr) minmax(180px, 1fr) repeat(3, minmax(140px, 1fr));
	gap: 2rem 1.5rem;
}

.al-footer-section-title,
.al-footer-col__title {
	color: var(--al-color-white);
	font-size: 1rem;
	margin: 0 0 0.75rem;
}

.al-footer-brand__tagline {
	margin: 0.5rem 0 1rem;
	opacity: 0.85;
	max-width: 28ch;
}

.al-site-footer .al-contact__item,
.al-site-footer .al-contact a,
.al-footer-col a {
	color: rgba(255, 255, 255, 0.88);
}

.al-footer-col__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.al-footer-col__list li {
	margin: 0.35rem 0;
}

.al-footer-col a:hover {
	color: var(--al-color-cream);
}

.al-site-footer .al-business-hours__list li {
	color: rgba(255, 255, 255, 0.88);
}

.al-site-footer .al-store-status {
	color: var(--al-color-white);
}

.al-footer-bottom {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 2rem;
	padding-top: 1.25rem;
	border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.al-site-footer .al-social a {
	color: var(--al-color-cream);
}

.al-site-footer .al-copyright__line,
.al-site-footer .al-copyright__credit {
	color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 769px) and (max-width: 1024px) {
	.al-footer-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 768px) {
	.al-footer-grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.al-footer-brand,
	.al-footer-hours,
	.al-footer-col {
		min-width: 0;
		width: 100%;
	}

	.al-footer-brand__tagline {
		max-width: none;
	}

	.al-site-footer .al-contact__item {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		gap: 0.2em 0.35em;
		max-width: 100%;
	}

	.al-site-footer .al-contact__item strong {
		flex: 0 0 auto;
	}

	.al-site-footer .al-contact__item a[href^="tel:"] {
		white-space: nowrap;
		flex: 0 1 auto;
		max-width: 100%;
	}

	.al-site-footer .al-business-hours__list li {
		display: flex;
		flex-wrap: wrap;
		align-items: baseline;
		gap: 0.2em 0.35em;
		max-width: 100%;
	}

	.al-site-footer .al-business-hours__list li strong {
		flex: 0 0 auto;
	}
}

/* —— Checkout trust bar (Fase 2E-A) —— */
.al-checkout-trust {
	background: var(--al-color-cream);
	border: 1px solid rgba(74, 93, 63, 0.15);
	border-radius: var(--al-radius);
	padding: 0.85rem 1rem;
	margin-bottom: 1.25rem;
}

.al-checkout-trust__list {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--al-color-dark);
}

.al-checkout-trust__list li::before {
	content: '✓ ';
	color: var(--al-color-primary);
}

/* —— Cart / checkout VAT notice (Fase 2E-A) —— */
.al-cart-vat-notice {
	box-sizing: border-box;
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0.75rem 0 1rem;
	padding: 0.65rem 1rem;
	overflow: visible;
	overflow-wrap: break-word;
	word-wrap: break-word;
	word-break: normal;
	white-space: normal;
	float: none;
	position: static;
	clear: both;
	font-size: 0.78rem;
	line-height: 1.45;
	font-weight: 400;
	color: rgba(74, 93, 63, 0.72);
}

.al-cart-vat-notice p {
	margin: 0 0 0.45rem;
	max-width: 100%;
	min-width: 0;
	white-space: normal;
	overflow-wrap: break-word;
	word-wrap: break-word;
}

.al-cart-vat-notice p:last-child {
	margin-bottom: 0;
}

.al-cart-vat-notice a {
	color: rgba(74, 93, 63, 0.85);
	text-decoration: underline;
	text-underline-offset: 0.1em;
}

.al-cart-vat-notice strong {
	font-weight: 600;
	color: rgba(74, 93, 63, 0.82);
}

.moderncart-cart-total .al-cart-vat-notice,
.cart_totals .al-cart-vat-notice {
	margin-top: 0.65rem;
	padding-top: 0.65rem;
	border-top: 1px solid rgba(74, 93, 63, 0.1);
}

#moderncart-slide-out-modal .moderncart-cart-total .al-cart-vat-notice {
	border-top-color: rgba(74, 93, 63, 0.12);
}

/* —— Modern Cart slide-out (scope: #moderncart-slide-out-modal only) —— */
#moderncart-slide-out-modal .moderncart-slide-out-header-title span {
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

#moderncart-slide-out-modal .moderncart-cart-item-product-name,
#moderncart-slide-out-modal .moderncart-cart-item-product-name a {
	color: #1a1a1a;
	font-weight: 600;
	line-height: 1.35;
	text-decoration: none;
}

#moderncart-slide-out-modal .moderncart-cart-item-product-name a:hover,
#moderncart-slide-out-modal .moderncart-cart-item-product-name a:focus {
	color: #4a5d3f;
}

#moderncart-slide-out-modal .moderncart-cart-item-actions--pricing .moderncart-price,
#moderncart-slide-out-modal .moderncart-cart-item-actions--pricing .moderncart-price .amount {
	color: rgba(26, 26, 26, 0.82);
	font-size: 0.9375rem;
	font-weight: 600;
}

#moderncart-slide-out-modal .moderncart-cart-item-quantity {
	display: flex;
	align-items: center;
	gap: 0.35rem;
}

#moderncart-slide-out-modal .moderncart-cart-item-quantity .quantity__button--down,
#moderncart-slide-out-modal .moderncart-cart-item-quantity .quantity__button--up {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 32px;
	min-height: 32px;
	padding: 0;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 8px;
	background: #fff;
	transition: background-color 0.2s ease, border-color 0.2s ease;
}

#moderncart-slide-out-modal .moderncart-cart-item-quantity .quantity__button--down:hover,
#moderncart-slide-out-modal .moderncart-cart-item-quantity .quantity__button--up:hover,
#moderncart-slide-out-modal .moderncart-cart-item-quantity .quantity__button--down:focus,
#moderncart-slide-out-modal .moderncart-cart-item-quantity .quantity__button--up:focus {
	border-color: rgba(74, 93, 63, 0.35);
	background: #f5f0e8;
}

#moderncart-slide-out-modal .moderncart-cart-item-quantity .quantity__button--down svg path,
#moderncart-slide-out-modal .moderncart-cart-item-quantity .quantity__button--up svg path {
	fill: #4a5d3f;
}

#moderncart-slide-out-modal .moderncart-cart-item-quantity .moderncart-quantity__input {
	min-width: 36px;
	max-width: 44px;
	height: 32px;
	padding: 0;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 8px;
	background: #fff;
	color: #1a1a1a;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1;
	text-align: center;
}

#moderncart-slide-out-modal .moderncart-cart-item-actions-remove {
	color: #6b6b6b;
	font-size: 0.8125rem;
	font-weight: 500;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 0.03em;
	transition: color 0.2s ease;
}

#moderncart-slide-out-modal .moderncart-cart-item-actions-remove:hover,
#moderncart-slide-out-modal .moderncart-cart-item-actions-remove:focus {
	color: #4a5d3f;
}

#moderncart-slide-out-modal .moderncart-cart-total .moderncart-cart-line-items {
	display: flex;
	flex-direction: column;
}

#moderncart-slide-out-modal .moderncart-cart-total .moderncart-cart-line-items-item {
	border-bottom-color: rgba(74, 93, 63, 0.1);
}

#moderncart-slide-out-modal .moderncart-cart-total .moderncart-cart-line-items-label {
	color: rgba(26, 26, 26, 0.62);
	font-size: 0.875rem;
	font-weight: 500;
}

#moderncart-slide-out-modal .moderncart-cart-total .moderncart-cart-line-items-value {
	color: #1a1a1a;
	font-size: 0.9375rem;
	font-weight: 600;
}

#moderncart-slide-out-modal .moderncart-cart-total .moderncart-cart-line-items__subtotal {
	order: 1;
}

#moderncart-slide-out-modal .moderncart-cart-total .moderncart-cart-line-items__discount {
	order: 2;
}

#moderncart-slide-out-modal .moderncart-cart-total .moderncart-cart-line-items__shipping {
	order: 3;
}

#moderncart-slide-out-modal .moderncart-cart-total .moderncart-cart-line-items__tax {
	order: 4;
}

#moderncart-slide-out-modal .moderncart-cart-total .moderncart-cart-line-items__total {
	order: 5;
	border-bottom: none;
}

#moderncart-slide-out-modal .moderncart-cart-total .moderncart-cart-line-items__total .moderncart-cart-line-items-label,
#moderncart-slide-out-modal .moderncart-cart-total .moderncart-cart-line-items__total .moderncart-cart-line-items-value,
#moderncart-slide-out-modal .moderncart-cart-total .moderncart-cart-line-items__total .moderncart-cart-line-items-value strong,
#moderncart-slide-out-modal .moderncart-cart-total .moderncart-cart-line-items__total .moderncart-cart-line-items-value .amount {
	color: #4a5d3f;
	font-size: 1.0625rem;
	font-weight: 700;
}

#moderncart-slide-out-modal .moderncart-cart-total a.checkout-button {
	background: #4a5d3f !important;
	border: none !important;
	border-radius: 8px;
	color: #f5f0e8 !important;
	font-size: 1rem;
	font-weight: 600;
	line-height: 1.35;
	padding: 0.75rem 1.25rem;
	text-decoration: none;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

#moderncart-slide-out-modal .moderncart-cart-total a.checkout-button:hover,
#moderncart-slide-out-modal .moderncart-cart-total a.checkout-button:focus {
	background: #3a4a31 !important;
	color: #f5f0e8 !important;
	box-shadow: 0 6px 16px rgba(74, 93, 63, 0.22);
}

body.woocommerce-checkout .al-cart-vat-notice {
	margin-top: 1rem;
	margin-bottom: 1rem;
}

/* —— Cart page UX (WooCommerce /carrito only) —— */
body.woocommerce-cart {
	background: #f5f0e8;
}

body.woocommerce-cart .woocommerce {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 1rem 2.5rem;
	box-sizing: border-box;
}

body.woocommerce-cart .al-cart-page__header {
	margin: 0 auto 2.25rem;
	max-width: 40rem;
	text-align: center;
}

body.woocommerce-cart .al-cart-page__title {
	margin: 0 0 0.65rem;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: clamp(1.875rem, 3.5vw, 2.5rem);
	font-weight: 600;
	line-height: 1.2;
	color: #1a1a1a;
}

body.woocommerce-cart .al-cart-page__subtitle {
	margin: 0 auto;
	max-width: 34rem;
	font-size: 1rem;
	line-height: 1.55;
	color: rgba(26, 26, 26, 0.62);
}

body.woocommerce-cart .al-cart-steps {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap: 0;
	margin: 1.75rem auto 0;
	padding: 0;
	list-style: none;
	max-width: 34rem;
	width: 100%;
}

body.woocommerce-cart .al-cart-steps__item {
	position: relative;
	flex: 1 1 0;
	min-width: 0;
	padding: 0 0.5rem;
	text-align: center;
}

body.woocommerce-cart .al-cart-steps__marker {
	position: relative;
	z-index: 2;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	margin: 0 auto 0.55rem;
	border-radius: 50%;
	box-sizing: border-box;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
}

body.woocommerce-cart .al-cart-steps__item.is-active .al-cart-steps__marker {
	border: 2px solid #4a5d3f;
	background: #4a5d3f;
	color: #fff;
}

body.woocommerce-cart .al-cart-steps__item.is-upcoming .al-cart-steps__marker {
	border: 2px solid #d4d4d4;
	background: #fff;
	color: #9a9a9a;
}

body.woocommerce-cart .al-cart-steps__item:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 1.125rem;
	left: calc(50% + 1.125rem);
	width: calc(100% - 2.25rem);
	height: 3px;
	border-radius: 2px;
	background: #d8d8d8;
	z-index: 1;
}

body.woocommerce-cart .al-cart-steps__item.is-active:not(:last-child)::after {
	background: linear-gradient(to right, #4a5d3f 0%, #4a5d3f 55%, #d8d8d8 55%, #d8d8d8 100%);
}

body.woocommerce-cart .al-cart-steps__label {
	position: relative;
	z-index: 2;
	display: block;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.35;
}

body.woocommerce-cart .al-cart-steps__item.is-active .al-cart-steps__label {
	color: #4a5d3f;
	font-weight: 700;
}

body.woocommerce-cart .al-cart-steps__item.is-upcoming .al-cart-steps__label {
	color: #9a9a9a;
	font-weight: 500;
}

body.woocommerce-cart .woocommerce-cart-form {
	margin-bottom: 1.5rem;
	padding: 1.25rem 1.35rem;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(26, 26, 26, 0.06);
	box-sizing: border-box;
}

body.woocommerce-cart .cart-collaterals {
	width: 100%;
}

body.woocommerce-cart .cart-collaterals .cart_totals {
	float: none;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 1.5rem 1.35rem;
	background: #fff;
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(26, 26, 26, 0.08);
	box-sizing: border-box;
}

body.woocommerce-cart .cart-collaterals .cart_totals > h2 {
	margin-top: 0;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: #1a1a1a;
}

body.woocommerce-cart .wc-proceed-to-checkout {
	margin-top: 1.25rem;
	padding-top: 0;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
	display: block;
	width: 100%;
	padding: 1rem 1.5rem;
	border: none;
	border-radius: 12px;
	background: #4a5d3f;
	color: #fff;
	font-size: 1.0625rem;
	font-weight: 600;
	line-height: 1.25;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

body.woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover,
body.woocommerce-cart .wc-proceed-to-checkout .checkout-button:focus {
	background: #3d4f34;
	color: #fff;
	box-shadow: 0 10px 24px rgba(74, 93, 63, 0.28);
	transform: translateY(-1px);
}

body.woocommerce-cart .woocommerce-cart-form .quantity {
	display: inline-flex;
	align-items: stretch;
	max-width: 8.5rem;
	border: 1px solid rgba(74, 93, 63, 0.22);
	border-radius: 8px;
	overflow: hidden;
	background: #fff;
	vertical-align: middle;
}

body.woocommerce-cart .woocommerce-cart-form .quantity input.qty {
	flex: 1 1 auto;
	min-width: 2.25rem;
	width: 2.75rem;
	margin: 0;
	padding: 0.4rem 0.2rem;
	border: none;
	border-left: 1px solid rgba(74, 93, 63, 0.14);
	border-right: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 0;
	background: #fff;
	color: #1a1a1a;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.2;
	text-align: center;
	-moz-appearance: textfield;
	box-shadow: none;
}

body.woocommerce-cart .woocommerce-cart-form .quantity input.qty::-webkit-outer-spin-button,
body.woocommerce-cart .woocommerce-cart-form .quantity input.qty::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

body.woocommerce-cart .al-cart-qty__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 2rem;
	width: 2rem;
	min-width: 2rem;
	margin: 0;
	padding: 0;
	border: none;
	background: #f5f0e8;
	color: #4a5d3f;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease;
}

body.woocommerce-cart .al-cart-qty__btn:hover,
body.woocommerce-cart .al-cart-qty__btn:focus {
	background: #4a5d3f;
	color: #fff;
	outline: none;
}

body.woocommerce-cart .al-cart-qty__btn span {
	display: block;
	line-height: 1;
}

body.woocommerce-cart .woocommerce-cart-form td.actions {
	padding-top: 1rem;
}

body.woocommerce-cart .woocommerce-cart-form .coupon {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.65rem 0.85rem;
	margin: 0 0 0.85rem;
}

body.woocommerce-cart .woocommerce-cart-form .coupon .input-text {
	min-width: 0;
	padding: 0.5rem 0.75rem;
	border: 1px solid rgba(74, 93, 63, 0.22);
	border-radius: 8px;
	font-size: 0.9375rem;
	line-height: 1.35;
}

body.woocommerce-cart .woocommerce-cart-form .coupon button[name="apply_coupon"],
body.woocommerce-cart .woocommerce-cart-form td.actions button[name="update_cart"] {
	white-space: nowrap;
	padding: 0.5rem 1rem;
	border-radius: 8px;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.3;
}

@media (min-width: 992px) {
	body.woocommerce-cart .woocommerce {
		display: grid;
		grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
		gap: 1.75rem 2rem;
		align-items: start;
	}

	body.woocommerce-cart .al-checkout-trust {
		grid-column: 1 / -1;
		grid-row: 1;
	}

	body.woocommerce-cart .al-cart-page__header {
		grid-column: 1 / -1;
		grid-row: 2;
	}

	body.woocommerce-cart .woocommerce-cart-form {
		grid-column: 1;
		grid-row: 3;
		margin-bottom: 0;
	}

	body.woocommerce-cart .cart-collaterals {
		grid-column: 2;
		grid-row: 3;
	}

	body.woocommerce-cart .cart-collaterals .cart_totals {
		position: sticky;
		top: 1.5rem;
	}

	body.woocommerce-cart .woocommerce-cart-form td.actions {
		padding-top: 1.35rem;
	}

	body.woocommerce-cart .woocommerce-cart-form .coupon {
		gap: 0.75rem 1rem;
		margin-bottom: 1.35rem;
	}

	body.woocommerce-cart .woocommerce-cart-form .coupon .input-text {
		flex: 1 1 12rem;
		max-width: 16rem;
		padding: 0.6rem 0.85rem;
	}

	body.woocommerce-cart .woocommerce-cart-form .coupon button[name="apply_coupon"] {
		padding: 0.6rem 1.15rem;
	}

	body.woocommerce-cart .woocommerce-cart-form td.actions button[name="update_cart"] {
		display: inline-block;
		margin-top: 0.15rem;
		padding: 0.65rem 1.35rem;
	}
}

@media (max-width: 767px) {
	body.woocommerce-cart .woocommerce {
		padding-bottom: 2rem;
	}

	body.woocommerce-cart .al-cart-steps__label {
		font-size: 0.75rem;
	}

	body.woocommerce-cart .al-cart-steps__marker {
		width: 2rem;
		height: 2rem;
		font-size: 0.8125rem;
	}

	body.woocommerce-cart .al-cart-steps__item:not(:last-child)::after {
		top: 1rem;
		left: calc(50% + 1rem);
		width: calc(100% - 2rem);
	}

	body.woocommerce-cart .woocommerce-cart-form .coupon {
		flex-wrap: nowrap;
		align-items: stretch;
		gap: 0.5rem;
		margin-bottom: 0.75rem;
	}

	body.woocommerce-cart .woocommerce-cart-form .coupon .input-text {
		flex: 1 1 auto;
		padding: 0.5rem 0.65rem;
		font-size: 0.9375rem;
	}

	body.woocommerce-cart .woocommerce-cart-form .coupon button[name="apply_coupon"] {
		flex: 0 0 auto;
		padding: 0.5rem 0.7rem;
		font-size: 0.75rem;
		line-height: 1.2;
		min-height: 0;
		height: auto;
	}
}

/* —— Checkout page UX (WooCommerce /checkout only) —— */
body.woocommerce-checkout {
	background: #f5f0e8;
}

body.woocommerce-checkout .woocommerce {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 1rem 2.5rem;
	box-sizing: border-box;
}

body.woocommerce-checkout .woocommerce-form-login-toggle,
body.woocommerce-checkout .woocommerce-form-coupon-toggle {
	margin: 0 0 0.85rem;
}

body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
	margin: 0;
	padding: 0.85rem 1.1rem;
	border: 1px solid rgba(74, 93, 63, 0.18);
	border-radius: 12px;
	background: #f5f0e8;
	color: #1a1a1a;
	font-size: 0.9375rem;
	line-height: 1.45;
	box-shadow: none;
}

body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info::before,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before {
	display: none;
}

body.woocommerce-checkout .woocommerce-form-login-toggle a.showlogin,
body.woocommerce-checkout .woocommerce-form-coupon-toggle a.showcoupon {
	color: #4a5d3f;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.12em;
	transition: color 0.2s ease;
}

body.woocommerce-checkout .woocommerce-form-login-toggle a.showlogin:hover,
body.woocommerce-checkout .woocommerce-form-login-toggle a.showlogin:focus,
body.woocommerce-checkout .woocommerce-form-coupon-toggle a.showcoupon:hover,
body.woocommerce-checkout .woocommerce-form-coupon-toggle a.showcoupon:focus {
	color: #3d4f34;
}

body.woocommerce-checkout form.woocommerce-form-login,
body.woocommerce-checkout form.checkout_coupon {
	margin: 0 0 1.25rem;
	padding: 1.1rem 1.15rem;
	border: 1px solid rgba(74, 93, 63, 0.16);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
	box-sizing: border-box;
	transition: opacity 0.25s ease, transform 0.25s ease;
}

body.woocommerce-checkout form.woocommerce-form-login .form-row,
body.woocommerce-checkout form.checkout_coupon .form-row {
	margin-bottom: 0.75rem;
}

body.woocommerce-checkout form.woocommerce-form-login .form-row:last-child,
body.woocommerce-checkout form.checkout_coupon .form-row:last-child {
	margin-bottom: 0;
}

body.woocommerce-checkout form.woocommerce-form-login .button,
body.woocommerce-checkout form.checkout_coupon .button {
	display: inline-block;
	width: auto;
	min-width: 0;
	padding: 0.55rem 1.1rem;
	border: none;
	border-radius: 8px;
	background: #4a5d3f;
	color: #fff;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	white-space: nowrap;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-checkout form.woocommerce-form-login .button:hover,
body.woocommerce-checkout form.woocommerce-form-login .button:focus,
body.woocommerce-checkout form.checkout_coupon .button:hover,
body.woocommerce-checkout form.checkout_coupon .button:focus {
	background: #3d4f34;
	color: #fff;
	box-shadow: 0 6px 16px rgba(74, 93, 63, 0.22);
}

body.woocommerce-checkout form.checkout_coupon {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 0.5rem 0.65rem;
}

body.woocommerce-checkout form.checkout_coupon .form-row-first,
body.woocommerce-checkout form.checkout_coupon .form-row-last {
	float: none;
	width: auto;
	flex: 1 1 auto;
	margin: 0;
	padding: 0;
}

body.woocommerce-checkout form.checkout_coupon .form-row-last {
	flex: 0 0 auto;
}

body.woocommerce-checkout form.checkout_coupon .input-text {
	width: 100%;
	min-width: 0;
	padding: 0.5rem 0.75rem;
	border: 1px solid rgba(74, 93, 63, 0.22);
	border-radius: 8px;
	font-size: 0.9375rem;
	line-height: 1.35;
}

body.woocommerce-checkout .al-checkout-delivery-notice {
	margin: 0 0 1rem;
	padding: 0.65rem 0.85rem;
	border-left: 3px solid #4a5d3f;
	border-radius: 0 8px 8px 0;
	background: rgba(74, 93, 63, 0.08);
	color: rgba(26, 26, 26, 0.82);
	font-size: 0.875rem;
	line-height: 1.45;
}

body.woocommerce-checkout #customer_details .col-2 {
	box-sizing: border-box;
	max-width: 100%;
	min-width: 0;
	margin-top: 1.5rem;
}

body.woocommerce-checkout #customer_details .woocommerce-shipping-fields {
	box-sizing: border-box;
	padding: 1.15rem 1.25rem;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
}

body.woocommerce-checkout #ship-to-different-address {
	margin: 0;
	padding: 0 0 0.85rem;
	border: none;
	border-radius: 0;
	background: transparent;
	border-bottom: 1px solid rgba(74, 93, 63, 0.1);
}

body.woocommerce-checkout #ship-to-different-address label {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin: 0;
	color: #1a1a1a;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.4;
	cursor: pointer;
}

body.woocommerce-checkout #ship-to-different-address-checkbox {
	accent-color: #4a5d3f;
	width: 1.05rem;
	height: 1.05rem;
	margin: 0;
	flex-shrink: 0;
}

body.woocommerce-checkout .woocommerce-shipping-fields .shipping_address {
	margin-top: 0.85rem;
	padding: 0;
	border: none;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
}

body.woocommerce-checkout #customer_details .woocommerce-additional-fields {
	box-sizing: border-box;
	margin-top: 1.5rem;
	padding: 1.15rem 1.25rem;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
}

body.woocommerce-checkout .woocommerce-additional-fields > h3 {
	margin: 0 0 1rem;
	padding: 0;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.25;
	color: #1a1a1a;
}

@media (min-width: 768px) {
	body.woocommerce-checkout #customer_details .col-2 {
		margin-top: 0;
	}
}

@media (max-width: 767px) {
	body.woocommerce-checkout form.checkout_coupon {
		flex-wrap: nowrap;
	}

	body.woocommerce-checkout form.checkout_coupon .form-row-last .button {
		padding: 0.5rem 0.75rem;
		font-size: 0.75rem;
		line-height: 1.2;
	}

	body.woocommerce-checkout form.woocommerce-form-login .button {
		padding: 0.5rem 0.9rem;
		font-size: 0.8125rem;
	}
}

/* —— Checkout: billing column (customer details, not #payment) —— */
body.woocommerce-checkout #customer_details {
	box-sizing: border-box;
	max-width: 100%;
	min-width: 0;
	margin-bottom: 1.25rem;
}

body.woocommerce-checkout #customer_details .col-1 .woocommerce-billing-fields {
	box-sizing: border-box;
	padding: 1.15rem 1.25rem;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
}

body.woocommerce-checkout .woocommerce-billing-fields > h3 {
	margin: 0 0 1rem;
	padding: 0;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.25;
	color: #1a1a1a;
}

body.woocommerce-checkout #customer_details .form-row {
	margin-bottom: 1rem;
}

body.woocommerce-checkout #customer_details .form-row:last-child {
	margin-bottom: 0;
}

body.woocommerce-checkout #customer_details label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
	color: #1a1a1a;
}

body.woocommerce-checkout #customer_details .optional {
	font-weight: 400;
	color: rgba(26, 26, 26, 0.55);
}

body.woocommerce-checkout #customer_details .input-text,
body.woocommerce-checkout #customer_details select {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-height: 44px;
	padding: 0.65rem 0.85rem;
	border: 1px solid rgba(74, 93, 63, 0.22);
	border-radius: 8px;
	background: #fff;
	font-size: 0.9375rem;
	line-height: 1.35;
	color: #1a1a1a;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-checkout #customer_details textarea.input-text {
	min-height: 5.5rem;
	height: auto;
	padding: 0.75rem 0.85rem;
}

body.woocommerce-checkout #customer_details .input-text:focus,
body.woocommerce-checkout #customer_details select:focus,
body.woocommerce-checkout #customer_details textarea.input-text:focus {
	outline: none;
	border-color: #4a5d3f;
	box-shadow: 0 0 0 3px rgba(74, 93, 63, 0.15);
}

@media (max-width: 767px) {
	body.woocommerce-checkout #customer_details {
		margin-bottom: 1rem;
	}

	body.woocommerce-checkout #customer_details .col-1 .woocommerce-billing-fields {
		padding: 1rem;
	}

	body.woocommerce-checkout #customer_details .woocommerce-shipping-fields,
	body.woocommerce-checkout #customer_details .woocommerce-additional-fields {
		padding: 1rem;
	}

	body.woocommerce-checkout .woocommerce-billing-fields > h3,
	body.woocommerce-checkout .woocommerce-additional-fields > h3 {
		font-size: 1.2rem;
	}

	body.woocommerce-checkout #customer_details .col-2 {
		margin-top: 1.5rem;
	}

	body.woocommerce-checkout #customer_details .woocommerce-additional-fields {
		margin-top: 1.25rem;
	}

	body.woocommerce-checkout #customer_details .form-row {
		margin-bottom: 0.85rem;
	}
}

/* —— Checkout: order review summary (table only, not #payment) —— */
body.woocommerce-checkout #order_review {
	box-sizing: border-box;
	max-width: 100%;
	min-width: 0;
}

body.woocommerce-checkout #order_review_heading {
	margin: 0 0 0.85rem;
	padding: 0;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.25;
	color: #1a1a1a;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0 0 1.25rem;
	padding: 1.15rem 1.25rem;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
	border-collapse: separate;
	border-spacing: 0;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table thead th {
	padding: 0 0 0.75rem;
	border: none;
	border-bottom: 1px solid rgba(74, 93, 63, 0.14);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(74, 93, 63, 0.72);
	vertical-align: bottom;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody td,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot th,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot td {
	padding: 0.7rem 0;
	border: none;
	border-bottom: 1px solid rgba(74, 93, 63, 0.1);
	vertical-align: top;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody tr.cart_item td {
	font-size: 0.9375rem;
	line-height: 1.45;
	color: #1a1a1a;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table .product-name {
	padding-right: 0.75rem;
	word-break: break-word;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table .product-total,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot td {
	text-align: right;
	white-space: nowrap;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot th {
	font-weight: 500;
	color: rgba(26, 26, 26, 0.82);
	text-align: left;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody tr:last-child td {
	border-bottom: 1px solid rgba(74, 93, 63, 0.14);
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal th,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal td {
	padding-top: 0.95rem;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals th,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals td {
	vertical-align: top;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals ul#shipping_method {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals li {
	margin: 0 0 0.35rem;
	line-height: 1.4;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals li:last-child {
	margin-bottom: 0;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.order-total th,
body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
	padding-top: 1rem;
	border-bottom: none;
	font-size: 1.125rem;
	font-weight: 700;
	color: #4a5d3f;
}

body.woocommerce-checkout table.woocommerce-checkout-review-order-table .product-quantity {
	font-weight: 600;
	color: rgba(74, 93, 63, 0.85);
}

@media (max-width: 767px) {
	body.woocommerce-checkout #order_review_heading {
		font-size: 1.2rem;
	}

	body.woocommerce-checkout table.woocommerce-checkout-review-order-table {
		padding: 1rem;
		margin-bottom: 1rem;
	}

	body.woocommerce-checkout table.woocommerce-checkout-review-order-table thead th {
		font-size: 0.6875rem;
	}

	body.woocommerce-checkout table.woocommerce-checkout-review-order-table tbody td,
	body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot th,
	body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot td {
		padding: 0.6rem 0;
		font-size: 0.875rem;
	}

	body.woocommerce-checkout table.woocommerce-checkout-review-order-table .product-total,
	body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot td {
		white-space: normal;
	}

	body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.order-total th,
	body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.order-total td {
		font-size: 1rem;
	}
}

/* —— Checkout: terms and conditions panel (visual only) —— */
body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
	box-sizing: border-box;
	max-width: 100%;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions {
	box-sizing: border-box;
	margin: 0 0 1rem;
	padding: 1.15rem 1.25rem;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
	max-height: 280px !important;
	overflow: auto;
	color: #1a1a1a;
	font-size: 0.9375rem;
	line-height: 1.6;
	-webkit-overflow-scrolling: touch;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions h1,
body.woocommerce-checkout .woocommerce-terms-and-conditions h2,
body.woocommerce-checkout .woocommerce-terms-and-conditions h3,
body.woocommerce-checkout .woocommerce-terms-and-conditions h4 {
	margin: 0 0 0.75rem;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-weight: 600;
	line-height: 1.3;
	color: #1a1a1a;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions p,
body.woocommerce-checkout .woocommerce-terms-and-conditions li {
	margin: 0 0 0.75rem;
	line-height: 1.6;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions ul,
body.woocommerce-checkout .woocommerce-terms-and-conditions ol {
	margin: 0 0 0.75rem;
	padding-left: 1.25rem;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions p:last-child,
body.woocommerce-checkout .woocommerce-terms-and-conditions ul:last-child,
body.woocommerce-checkout .woocommerce-terms-and-conditions ol:last-child {
	margin-bottom: 0;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions a {
	color: #4a5d3f;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-link {
	color: #4a5d3f;
	font-weight: 600;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

@media (max-width: 767px) {
	body.woocommerce-checkout .woocommerce-terms-and-conditions {
		padding: 1rem;
		max-height: 240px !important;
		font-size: 0.875rem;
	}
}

body.woocommerce-checkout .al-checkout-state-tm {
	pointer-events: none;
	background-color: #f5f0e8;
	color: #1a1a1a;
	cursor: default;
}

/* —— My Account page UX (WooCommerce /mi-cuenta only) —— */
body.woocommerce-account {
	background: #f5f0e8;
}

body.woocommerce-account .woocommerce {
	box-sizing: border-box;
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 1.25rem 2.5rem;
}

body.woocommerce-account .entry-header .entry-title,
body.woocommerce-account .entry-title,
body.woocommerce-account .page-title,
body.woocommerce-account h1.entry-title {
	margin: 0 0 1.75rem;
	padding: 0;
	text-align: center;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 600;
	line-height: 1.2;
	color: #1a1a1a;
}

/* Login / register columns */
body.woocommerce-account #customer_login.col2-set,
body.woocommerce-account #customer_login.u-columns {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: 1.5rem;
	width: 100%;
	margin: 0;
	clear: both;
}

body.woocommerce-account #customer_login.col2-set::before,
body.woocommerce-account #customer_login.col2-set::after {
	display: none;
	content: none;
}

body.woocommerce-account #customer_login .u-column1.col-1,
body.woocommerce-account #customer_login .u-column2.col-2 {
	float: none;
	clear: none;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: none;
	min-height: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 1.15rem 1.25rem;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
}

@media (min-width: 769px) {
	body.woocommerce-account #customer_login.col2-set,
	body.woocommerce-account #customer_login.u-columns {
		flex-direction: row;
		align-items: stretch;
		justify-content: space-between;
		gap: 1.5rem;
		max-width: 1100px;
		margin-left: auto;
		margin-right: auto;
	}

	body.woocommerce-account #customer_login .u-column1.col-1,
	body.woocommerce-account #customer_login .u-column2.col-2 {
		width: 48%;
		flex: 1 1 48%;
		max-width: 48%;
		height: auto;
	}

	body.woocommerce-account .woocommerce-form-login,
	body.woocommerce-account .woocommerce-form-register {
		flex: 1 1 auto;
	}

	body.woocommerce-account .woocommerce-form-login .form-row:has(.woocommerce-form-login__rememberme) {
		flex-direction: column;
		align-items: stretch;
		gap: 0.85rem;
	}

	body.woocommerce-account #customer_login .woocommerce-form-login__submit,
	body.woocommerce-account #customer_login .woocommerce-form-register__submit {
		display: block;
		width: 100%;
		min-height: 44px;
		padding: 0.65rem 1.35rem;
		font-size: 0.9375rem;
		box-sizing: border-box;
	}
}

body.woocommerce-account #customer_login h2 {
	margin: 0 0 1rem;
	padding: 0;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 1.35rem;
	font-weight: 600;
	line-height: 1.25;
	color: #1a1a1a;
}

body.woocommerce-account .woocommerce-form-login,
body.woocommerce-account .woocommerce-form-register {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	margin: 0;
	min-height: 0;
}

body.woocommerce-account .woocommerce-form-row {
	margin-bottom: 1rem;
}

body.woocommerce-account .woocommerce-form-row:last-child {
	margin-bottom: 0;
}

body.woocommerce-account .woocommerce-form-row label {
	display: block;
	margin-bottom: 0.35rem;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
	color: #1a1a1a;
}

body.woocommerce-account .woocommerce-form-row label.woocommerce-form__label-for-checkbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin-bottom: 0;
	font-weight: 500;
	cursor: pointer;
}

body.woocommerce-account .woocommerce-form-row label.woocommerce-form__label-for-checkbox input[type="checkbox"] {
	accent-color: #4a5d3f;
	width: 1.05rem;
	height: 1.05rem;
	margin: 0;
	flex-shrink: 0;
}

body.woocommerce-account .woocommerce-Input.input-text,
body.woocommerce-account .input-text,
body.woocommerce-account select {
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	min-height: 44px;
	padding: 0.65rem 0.85rem;
	border: 1px solid rgba(74, 93, 63, 0.22);
	border-radius: 8px;
	background: #fff;
	font-size: 0.9375rem;
	line-height: 1.35;
	color: #1a1a1a;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-account textarea.input-text {
	min-height: 5.5rem;
	height: auto;
	padding: 0.75rem 0.85rem;
}

body.woocommerce-account .woocommerce-Input.input-text:focus,
body.woocommerce-account .input-text:focus,
body.woocommerce-account select:focus,
body.woocommerce-account textarea.input-text:focus {
	outline: none;
	border-color: #4a5d3f;
	box-shadow: 0 0 0 3px rgba(74, 93, 63, 0.15);
}

body.woocommerce-account .password-input {
	position: relative;
	display: block;
	width: 100%;
}

body.woocommerce-account .password-input .woocommerce-Input,
body.woocommerce-account .password-input .input-text {
	padding-right: 2.75rem;
}

body.woocommerce-account .show-password-input {
	position: absolute;
	top: 50%;
	right: 0.65rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	margin: 0;
	padding: 0;
	border: none;
	border-radius: 6px;
	background: transparent;
	color: rgba(74, 93, 63, 0.75);
	transform: translateY(-50%);
	cursor: pointer;
}

body.woocommerce-account .show-password-input:hover,
body.woocommerce-account .show-password-input:focus {
	color: #4a5d3f;
	background: rgba(74, 93, 63, 0.08);
	outline: none;
}

body.woocommerce-account .woocommerce-button.button,
body.woocommerce-account button.button {
	display: inline-block;
	min-height: 44px;
	padding: 0.65rem 1.35rem;
	border: none;
	border-radius: 8px;
	background: #4a5d3f;
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-account .woocommerce-button.button:hover,
body.woocommerce-account .woocommerce-button.button:focus,
body.woocommerce-account button.button:hover,
body.woocommerce-account button.button:focus {
	background: #3a4a31;
	color: #fff;
	box-shadow: 0 6px 16px rgba(74, 93, 63, 0.22);
}

body.woocommerce-account .woocommerce-form-login .form-row:has(.woocommerce-form-login__rememberme) {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.75rem 1rem;
}

body.woocommerce-account .woocommerce-form-login__rememberme {
	margin: 0;
}

body.woocommerce-account #customer_login .woocommerce-form-login__submit,
body.woocommerce-account #customer_login .woocommerce-form-register__submit {
	float: none;
	display: block;
	width: 100%;
	min-height: 44px;
	padding: 0.65rem 1.35rem;
	font-size: 0.9375rem;
	box-sizing: border-box;
}

body.woocommerce-account .woocommerce-LostPassword,
body.woocommerce-account .woocommerce-privacy-policy-text,
body.woocommerce-account .woocommerce-form-register > p {
	margin: 0.75rem 0 0;
	font-size: 0.875rem;
	line-height: 1.55;
	color: rgba(26, 26, 26, 0.72);
}

body.woocommerce-account .woocommerce-LostPassword {
	margin-top: 0.85rem;
}

body.woocommerce-account .woocommerce a:not(.button):not(.woocommerce-button):not(.show-password-input),
body.woocommerce-account .woocommerce-MyAccount-content a:not(.button):not(.woocommerce-button):not(.edit) {
	color: #4a5d3f;
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

body.woocommerce-account .woocommerce a:not(.button):not(.woocommerce-button):not(.show-password-input):hover,
body.woocommerce-account .woocommerce a:not(.button):not(.woocommerce-button):not(.show-password-input):focus,
body.woocommerce-account .woocommerce-MyAccount-content a:not(.button):not(.woocommerce-button):not(.edit):hover,
body.woocommerce-account .woocommerce-MyAccount-content a:not(.button):not(.woocommerce-button):not(.edit):focus {
	color: #3a4a31;
}

/* Footer must stay white on My Account (do not inherit olive link styles). */
body.woocommerce-account .al-site-footer a,
body.woocommerce-account .al-site-footer .al-contact a,
body.woocommerce-account .al-footer-col a,
body.woocommerce-account #colophon a {
	color: rgba(255, 255, 255, 0.88);
	text-decoration: none;
}

body.woocommerce-account .al-site-footer a:hover,
body.woocommerce-account .al-site-footer a:focus,
body.woocommerce-account .al-footer-col a:hover,
body.woocommerce-account .al-footer-col a:focus,
body.woocommerce-account #colophon a:hover,
body.woocommerce-account #colophon a:focus {
	color: var(--al-color-cream);
	text-decoration: underline;
	text-underline-offset: 0.12em;
}

body.woocommerce-account .al-site-footer .al-social a {
	color: var(--al-color-cream);
}

/* Logged-in dashboard */
body.woocommerce-account.logged-in .woocommerce {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 1.5rem;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
	float: none;
	width: 100%;
	max-width: 260px;
	box-sizing: border-box;
	margin: 0;
	padding: 1rem 0.75rem;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid rgba(74, 93, 63, 0.08);
}

body.woocommerce-account .woocommerce-MyAccount-navigation li:last-child {
	border-bottom: none;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 0.65rem 0.85rem;
	border-radius: 8px;
	color: rgba(26, 26, 26, 0.82);
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease;
}

body.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation a:focus {
	background: rgba(74, 93, 63, 0.08);
	color: #1a1a1a;
	text-decoration: none;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:link,
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:visited,
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:hover,
body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a:not(.button):not(.woocommerce-button) {
	color: #f5f0e8 !important;
	background: #4a5d3f;
	text-decoration: none;
}

body.woocommerce-account .woocommerce-MyAccount-content {
	float: none;
	flex: 1 1 320px;
	box-sizing: border-box;
	min-width: 0;
	padding: 1.75rem;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
}

body.woocommerce-account .woocommerce-MyAccount-content > p {
	margin: 0 0 1.25rem;
	color: rgba(26, 26, 26, 0.82);
	font-size: 0.9375rem;
	line-height: 1.55;
}

body.woocommerce-account .woocommerce-MyAccount-content h2,
body.woocommerce-account .woocommerce-MyAccount-content h3 {
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-weight: 600;
	color: #1a1a1a;
}

/* Dashboard profile card */
body.woocommerce-account .al-account-profile-card {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1.25rem 1.5rem;
	box-sizing: border-box;
	margin: 0 0 1.25rem;
	padding: 1.35rem 1.5rem;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 12px;
	background: #f5f0e8;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
}

body.woocommerce-account .al-account-profile-card__avatar {
	flex: 0 0 auto;
}

body.woocommerce-account .al-account-profile-card__avatar img,
body.woocommerce-account .al-account-profile-card__img {
	display: block;
	width: 110px;
	height: 110px;
	border: 3px solid #4a5d3f;
	border-radius: 50%;
	object-fit: cover;
	box-shadow: 0 6px 18px rgba(74, 93, 63, 0.18);
}

body.woocommerce-account .al-account-profile-card__body {
	flex: 1 1 220px;
	min-width: 0;
}

body.woocommerce-account .al-account-profile-card__name {
	margin: 0 0 0.35rem;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.2;
	color: #1a1a1a;
}

body.woocommerce-account .al-account-profile-card__meta {
	margin: 0 0 0.25rem;
	color: rgba(26, 26, 26, 0.78);
	font-size: 0.9375rem;
	line-height: 1.45;
}

body.woocommerce-account .al-account-profile-card__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem 1.5rem;
	margin: 0.85rem 0 0;
	padding: 0;
	list-style: none;
}

body.woocommerce-account .al-account-profile-card__stats li {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
}

body.woocommerce-account .al-account-profile-card__stat-label {
	color: rgba(26, 26, 26, 0.62);
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.02em;
	text-transform: uppercase;
}

body.woocommerce-account .al-account-profile-card__stat-value {
	color: #1a1a1a;
	font-size: 0.9375rem;
	font-weight: 600;
}

body.woocommerce-account .al-account-profile-card__actions {
	margin: 1rem 0 0;
}

body.woocommerce-account .al-account-profile-card__edit.woocommerce-Button.button,
body.woocommerce-account .al-account-profile-card__edit.button {
	display: inline-block;
	min-height: 44px;
	padding: 0.65rem 1.35rem;
	border: none;
	border-radius: 8px;
	background: #4a5d3f;
	color: #fff;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

body.woocommerce-account .al-account-profile-card__edit.woocommerce-Button.button:hover,
body.woocommerce-account .al-account-profile-card__edit.woocommerce-Button.button:focus,
body.woocommerce-account .al-account-profile-card__edit.button:hover,
body.woocommerce-account .al-account-profile-card__edit.button:focus {
	background: #3a4a31;
	color: #fff;
	box-shadow: 0 6px 16px rgba(74, 93, 63, 0.22);
}

body.woocommerce-account .al-account-welcome-card {
	box-sizing: border-box;
	margin: 0 0 1rem;
	padding: 1.15rem 1.25rem;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
}

body.woocommerce-account .al-account-welcome-card p {
	margin: 0 0 0.75rem;
	color: rgba(26, 26, 26, 0.82);
	font-size: 0.9375rem;
	line-height: 1.55;
}

body.woocommerce-account .al-account-welcome-card p:last-child {
	margin-bottom: 0;
}

/* Edit-account avatar upload */
body.woocommerce-account .al-account-avatar-field {
	margin: 0 0 1.5rem;
	padding: 0;
	border: none;
}

body.woocommerce-account .al-account-avatar-field legend {
	margin: 0 0 0.75rem;
	padding: 0;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 1.15rem;
	font-weight: 600;
	color: #1a1a1a;
}

body.woocommerce-account .al-account-avatar-field__inner {
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	gap: 1rem 1.25rem;
}

body.woocommerce-account .al-account-avatar-field__preview img,
body.woocommerce-account .al-account-avatar-field__img {
	display: block;
	width: 96px;
	height: 96px;
	border: 2px solid rgba(74, 93, 63, 0.35);
	border-radius: 50%;
	object-fit: cover;
}

body.woocommerce-account .al-account-avatar-field__controls {
	flex: 1 1 200px;
	min-width: 0;
}

body.woocommerce-account .al-account-avatar-field__file {
	width: 100%;
	max-width: 100%;
	padding: 0.55rem 0.65rem;
	border: 1px solid rgba(74, 93, 63, 0.2);
	border-radius: 8px;
	background: #fff;
	font-size: 0.875rem;
}

body.woocommerce-account .al-account-avatar-field__hint {
	display: block;
	margin-top: 0.35rem;
	color: rgba(26, 26, 26, 0.62);
	font-size: 0.8125rem;
	line-height: 1.4;
}

/* My Account endpoints — buttons, empty states, addresses, edit-account */
body.woocommerce-account .woocommerce-MyAccount-content .button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button,
body.woocommerce-account .woocommerce-MyAccount-content a.button,
body.woocommerce-account .woocommerce-MyAccount-content a.wc-forward,
body.woocommerce-account .woocommerce-MyAccount-content input[type="submit"],
body.woocommerce-account .woocommerce-MyAccount-content button.button {
	display: inline-block;
	box-sizing: border-box;
	min-height: 44px;
	padding: 0.75rem 1.375rem;
	border: none !important;
	border-radius: 8px;
	background: #4a5d3f !important;
	color: #f5f0e8 !important;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	text-transform: none;
	cursor: pointer;
	box-shadow: none;
	transition: background-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

body.woocommerce-account .woocommerce-MyAccount-content .button:hover,
body.woocommerce-account .woocommerce-MyAccount-content .button:focus,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button:hover,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button:focus,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button:hover,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-button:focus,
body.woocommerce-account .woocommerce-MyAccount-content a.button:hover,
body.woocommerce-account .woocommerce-MyAccount-content a.button:focus,
body.woocommerce-account .woocommerce-MyAccount-content a.wc-forward:hover,
body.woocommerce-account .woocommerce-MyAccount-content a.wc-forward:focus,
body.woocommerce-account .woocommerce-MyAccount-content input[type="submit"]:hover,
body.woocommerce-account .woocommerce-MyAccount-content input[type="submit"]:focus,
body.woocommerce-account .woocommerce-MyAccount-content button.button:hover,
body.woocommerce-account .woocommerce-MyAccount-content button.button:focus {
	background: #3a4a31 !important;
	color: #f5f0e8 !important;
	box-shadow: 0 6px 16px rgba(74, 93, 63, 0.22);
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message--info {
	box-sizing: border-box;
	margin: 0 0 1.25rem;
	padding: 2rem 1.5rem;
	border: 1px solid rgba(74, 93, 63, 0.14) !important;
	border-radius: 12px;
	background: #fff !important;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
	color: rgba(26, 26, 26, 0.82);
	font-size: 0.9375rem;
	line-height: 1.55;
	text-align: center;
	list-style: none;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message--info::before {
	display: none !important;
	content: none !important;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message .button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message .button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message--info .button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info a.button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message a.button {
	margin-top: 1rem;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-downloads,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
	width: 100%;
	margin: 0 0 1rem;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 12px;
	border-collapse: separate;
	border-spacing: 0;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
	overflow: hidden;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table thead th,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-downloads thead th,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table thead th {
	padding: 0.85rem 1rem;
	border: none;
	border-bottom: 1px solid rgba(74, 93, 63, 0.14);
	background: #f5f0e8;
	color: #1a1a1a;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.35;
	text-align: left;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table tbody td,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-downloads tbody td,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody td {
	padding: 0.85rem 1rem;
	border: none;
	border-bottom: 1px solid rgba(74, 93, 63, 0.08);
	color: rgba(26, 26, 26, 0.82);
	font-size: 0.9375rem;
	line-height: 1.45;
	vertical-align: middle;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:last-child td,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-downloads tbody tr:last-child td,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table tbody tr:last-child td {
	border-bottom: none;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table .button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-downloads .button,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table .button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table .woocommerce-button,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-downloads .woocommerce-button,
body.woocommerce-account .woocommerce-MyAccount-content table.shop_table .woocommerce-button {
	min-height: 36px;
	padding: 0.375rem 0.875rem;
	font-size: 0.8125rem;
	white-space: nowrap;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns.addresses,
body.woocommerce-account .woocommerce-MyAccount-content .col2-set.addresses {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 1.5rem;
	width: 100%;
	margin: 0 0 1rem;
	clear: both;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses::before,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses::after,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns.addresses::before,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns.addresses::after,
body.woocommerce-account .woocommerce-MyAccount-content .col2-set.addresses::before,
body.woocommerce-account .woocommerce-MyAccount-content .col2-set.addresses::after {
	display: none;
	content: none;
}

body.woocommerce-account .woocommerce-MyAccount-content .u-columns.addresses .u-column1,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns.addresses .u-column2,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns.addresses .col-1,
body.woocommerce-account .woocommerce-MyAccount-content .u-columns.addresses .col-2,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses .woocommerce-Address {
	float: none;
	clear: none;
	box-sizing: border-box;
	flex: 1 1 calc(50% - 0.75rem);
	width: calc(50% - 0.75rem);
	max-width: calc(50% - 0.75rem);
	min-width: 240px;
	margin: 0;
	padding: 1.5rem;
	border: 1px solid rgba(74, 93, 63, 0.14);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(26, 26, 26, 0.05);
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address header,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .title {
	display: flex;
	flex-direction: column;
	flex-wrap: nowrap;
	align-items: flex-start;
	justify-content: flex-start;
	gap: 0.875rem;
	box-sizing: border-box;
	width: 100%;
	max-width: 100%;
	margin: 0 0 1rem;
	padding: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address header h3,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .title h3 {
	flex: 0 0 auto;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 1.375rem;
	font-weight: 600;
	line-height: 1.2;
	color: #1a1a1a;
	text-align: left;
	white-space: normal;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address {
	margin: 0;
	font-style: normal;
	color: rgba(26, 26, 26, 0.82);
	font-size: 0.9375rem;
	line-height: 1.6;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .edit,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address header .edit,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .title .edit {
	flex: 0 0 auto;
	display: inline-block;
	box-sizing: border-box;
	width: auto;
	max-width: 100%;
	min-height: 36px;
	padding: 0.5rem 1rem !important;
	border: none !important;
	border-radius: 8px;
	background: #4a5d3f !important;
	color: #f5f0e8 !important;
	font-size: 0.875rem;
	font-weight: 600;
	line-height: 1.35;
	text-align: left;
	text-decoration: none;
	white-space: normal;
	overflow-wrap: break-word;
	word-break: break-word;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .edit:hover,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .edit:focus,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit:hover,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit:focus,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address header .edit:hover,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address header .edit:focus {
	background: #3a4a31 !important;
	color: #f5f0e8 !important;
	box-shadow: 0 4px 12px rgba(74, 93, 63, 0.2);
}

body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields {
	margin: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .form-row,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .form-row {
	margin-bottom: 1rem;
}

body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .form-row:last-child,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .form-row:last-child {
	margin-bottom: 0;
}

body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm .form-row label,
body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields .form-row label {
	display: block;
	margin-bottom: 0.4rem;
	color: rgba(26, 26, 26, 0.82);
	font-size: 0.875rem;
	font-weight: 500;
	line-height: 1.35;
}

body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset {
	margin: 1.75rem 0 0;
	padding: 1.5rem 0 0;
	border: none;
	border-top: 1px solid rgba(74, 93, 63, 0.14);
}

body.woocommerce-account .woocommerce-MyAccount-content form.woocommerce-EditAccountForm fieldset legend {
	display: block;
	width: 100%;
	margin: 0 0 1rem;
	padding: 0;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	font-size: 1.15rem;
	font-weight: 600;
	line-height: 1.3;
	color: #1a1a1a;
}

body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-pagination {
	margin-top: 1.25rem;
	text-align: center;
}

@media (max-width: 767px) {
	body.woocommerce-account .woocommerce {
		padding: 0 1rem 2rem;
	}

	body.woocommerce-account #customer_login .u-column1.col-1,
	body.woocommerce-account #customer_login .u-column2.col-2 {
		width: 100%;
		max-width: none;
		flex: 1 1 auto;
		padding: 1rem;
	}

	body.woocommerce-account #customer_login h2 {
		font-size: 1.2rem;
	}

	body.woocommerce-account .woocommerce-form-login .form-row:has(.woocommerce-form-login__rememberme) {
		flex-direction: column;
		align-items: stretch;
	}

	body.woocommerce-account .woocommerce-form-login__submit,
	body.woocommerce-account .woocommerce-form-register__submit {
		width: 100%;
	}

	body.woocommerce-account.logged-in .woocommerce {
		flex-direction: column;
		gap: 1rem;
	}

	body.woocommerce-account .woocommerce-MyAccount-navigation {
		max-width: none;
		width: 100%;
	}

	body.woocommerce-account .woocommerce-MyAccount-content {
		width: 100%;
		padding: 1rem;
	}

	body.woocommerce-account .al-account-profile-card {
		flex-direction: column;
		align-items: flex-start;
		padding: 1rem;
	}

	body.woocommerce-account .al-account-profile-card__avatar img,
	body.woocommerce-account .al-account-profile-card__img {
		width: 88px;
		height: 88px;
	}

	body.woocommerce-account .al-account-profile-card__edit.woocommerce-Button.button,
	body.woocommerce-account .al-account-profile-card__edit.button {
		width: 100%;
	}

	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table,
	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-table--order-downloads,
	body.woocommerce-account .woocommerce-MyAccount-content table.shop_table {
		display: block;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address,
	body.woocommerce-account .woocommerce-MyAccount-content .u-columns.addresses .u-column1,
	body.woocommerce-account .woocommerce-MyAccount-content .u-columns.addresses .u-column2,
	body.woocommerce-account .woocommerce-MyAccount-content .u-columns.addresses .col-1,
	body.woocommerce-account .woocommerce-MyAccount-content .u-columns.addresses .col-2 {
		flex: 1 1 100%;
		width: 100%;
		max-width: 100%;
		min-width: 0;
	}

	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3,
	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address header h3,
	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .title h3 {
		font-size: 1.25rem;
	}

	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address .edit,
	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title .edit,
	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address header .edit {
		width: auto;
		max-width: 100%;
	}

	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info,
	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-message,
	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message,
	body.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message--info {
		padding: 1.5rem 1rem;
	}

	body.woocommerce-account .woocommerce-MyAccount-content .button,
	body.woocommerce-account .woocommerce-MyAccount-content a.button,
	body.woocommerce-account .woocommerce-MyAccount-content a.wc-forward {
		width: 100%;
	}
}

/* —— Site chrome mobile (must follow desktop chrome rules) —— */
@media (max-width: 767px) {
	.al-header-main__inner {
		flex-wrap: nowrap;
	}

	.al-site-header .al-header-toggle {
		display: inline-flex !important;
		order: 2;
	}

	.al-logo {
		order: 1;
		flex: 1;
		min-width: 0;
	}

	.al-site-header .al-logo {
		gap: 0.5rem;
	}

	.al-site-header .al-logo__img {
		max-height: min(var(--al-header-logo-height, 52px), 42px);
	}

	.al-site-header .al-logo__text {
		font-size: min(var(--al-header-logo-text-size, 26px), 18px);
	}

	.al-header-menu {
		order: 3;
		position: fixed;
		top: 0;
		right: 0;
		z-index: 10001;
		display: none;
		flex: none;
		flex-direction: column;
		align-items: stretch;
		justify-content: flex-start;
		gap: 1.25rem;
		width: min(320px, 88vw);
		height: 100vh;
		height: 100dvh;
		padding: 5rem 1.25rem 1.5rem;
		background: var(--al-color-cream);
		box-shadow: -8px 0 24px rgba(26, 26, 26, 0.12);
		overflow-y: auto;
	}

	.al-site-header.is-menu-open .al-header-menu,
	.al-header-nav-check:checked ~ .al-header-main .al-header-menu {
		display: flex;
	}

	.al-header-backdrop {
		display: none;
		position: fixed;
		inset: 0;
		z-index: 10000;
		background: rgba(26, 26, 26, 0.45);
	}

	.al-site-header.is-menu-open .al-header-backdrop,
	.al-header-nav-check:checked ~ .al-header-backdrop {
		display: block;
	}

	.al-header-backdrop[hidden] {
		display: none;
	}

	html.al-nav-open {
		overflow: hidden;
	}

	.al-header-nav__list {
		flex-direction: column;
		align-items: stretch;
		gap: 0.25rem;
		width: 100%;
	}

	.al-header-nav a {
		display: block;
		padding: 0.65rem 0;
		font-size: 1.05rem;
	}

	.al-header-actions {
		flex-direction: column;
		align-items: stretch;
		width: 100%;
		gap: 0.5rem;
	}

	.al-header-actions__link,
	.al-header-actions__shop {
		justify-content: center;
		width: 100%;
	}
}

@media (max-width: 380px) {
	.al-site-header .al-logo {
		gap: 0.35rem;
	}

	.al-site-header .al-logo__img {
		max-height: min(var(--al-header-logo-height, 52px), 36px);
	}

	.al-site-header .al-logo__text {
		font-size: min(var(--al-header-logo-text-size, 26px), 17px);
	}
}

/* —— Home: «Nuestro proceso artesanal» (Elementor page 3610) —— */
.elementor-3610 .elementor-element-6c47149 {
	padding: 3rem 1.5rem 1.25rem;
	box-sizing: border-box;
}

.elementor-3610 .elementor-element-6c47149 .elementor-heading-title {
	text-align: center;
	font-family: "Playfair Display", Georgia, "Times New Roman", serif;
	color: #4A5D3F;
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	letter-spacing: -0.02em;
	margin: 0;
}

.elementor-3610 .elementor-element-8f0c16a {
	background-color: #F5F0E8;
	padding: 0 1.5rem 3.5rem;
	box-sizing: border-box;
	overflow-x: hidden;
}

.elementor-3610 .elementor-element-8f0c16a > .e-con-inner {
	display: grid !important;
	align-items: stretch;
	counter-reset: al-process-step;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	gap: 26px;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.elementor-3610 .elementor-element-8f0c16a .e-con.e-child {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	height: 100%;
	background: #FFFFFF;
	border: 1px solid #E6DED2;
	border-top: 4px solid #4A5D3F;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
	--width: auto;
	--flex-basis: auto;
	flex: initial !important;
	width: auto !important;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.elementor-3610 .elementor-element-8f0c16a .e-con.e-child::before {
	counter-increment: al-process-step;
	content: counter(al-process-step);
	position: absolute;
	top: 14px;
	left: 14px;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	background-color: #4A5D3F;
	color: #FFFFFF;
	font-size: 0.875rem;
	font-weight: 700;
	line-height: 1;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.elementor-3610 .elementor-element-8f0c16a .elementor-widget-image {
	width: 100%;
	max-width: 100%;
	flex-shrink: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.elementor-3610 .elementor-element-8f0c16a .elementor-widget-image .elementor-widget-container {
	position: relative;
	width: 100%;
	max-width: 100%;
	aspect-ratio: 4 / 3;
	height: auto !important;
	min-height: 0;
	overflow: hidden;
	line-height: 0;
	border-radius: 20px 20px 0 0;
	flex-shrink: 0;
}

.elementor-3610 .elementor-element-8f0c16a .elementor-widget-image img {
	display: block;
	width: 100% !important;
	max-width: 100%;
	height: 100% !important;
	min-height: 100%;
	object-fit: cover !important;
	object-position: center;
}

.elementor-3610 .elementor-element-8f0c16a .elementor-widget-heading .elementor-heading-title {
	color: #1A1A1A;
	font-weight: 700;
	font-size: 1.0625rem;
	line-height: 1.3;
	margin: 1rem 1.25rem 0.35rem;
}

.elementor-3610 .elementor-element-8f0c16a .elementor-widget-text-editor {
	flex: 1 1 auto;
	padding: 0 1.25rem 1.25rem;
	box-sizing: border-box;
}

.elementor-3610 .elementor-element-8f0c16a .elementor-widget-text-editor p,
.elementor-3610 .elementor-element-8f0c16a .elementor-widget-text-editor span {
	color: #6A6A6A;
	line-height: 1.55;
	margin: 0;
	font-size: 0.9375rem;
	word-wrap: break-word;
	overflow-wrap: anywhere;
}

@media (hover: hover) {
	.elementor-3610 .elementor-element-8f0c16a .e-con.e-child:hover {
		transform: translateY(-6px);
		box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
	}
}

@media (min-width: 1025px) {
	.elementor-3610 .elementor-element-8f0c16a > .e-con-inner {
		gap: 28px;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	.elementor-3610 .elementor-element-8f0c16a {
		padding-left: 1.25rem;
		padding-right: 1.25rem;
		padding-bottom: 3rem;
	}

	.elementor-3610 .elementor-element-8f0c16a > .e-con-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px;
	}
}

@media (max-width: 767px) {
	.elementor-3610 .elementor-element-6c47149 {
		padding: 2.5rem 1rem 1rem;
	}

	.elementor-3610 .elementor-element-8f0c16a {
		padding: 0 1rem 2.5rem;
	}

	.elementor-3610 .elementor-element-8f0c16a > .e-con-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.elementor-3610 .elementor-element-8f0c16a .e-con.e-child::before {
		top: 10px;
		left: 10px;
		width: 26px;
		height: 26px;
		font-size: 0.75rem;
	}

	.elementor-3610 .elementor-element-8f0c16a .elementor-widget-image .elementor-widget-container {
		aspect-ratio: 1 / 1;
	}

	.elementor-3610 .elementor-element-8f0c16a .elementor-widget-heading .elementor-heading-title {
		font-size: 0.9rem;
		line-height: 1.25;
		margin: 0.75rem 0.75rem 0.25rem;
	}

	.elementor-3610 .elementor-element-8f0c16a .elementor-widget-text-editor {
		padding: 0 0.75rem 0.75rem;
	}

	.elementor-3610 .elementor-element-8f0c16a .elementor-widget-text-editor p,
	.elementor-3610 .elementor-element-8f0c16a .elementor-widget-text-editor span {
		font-size: 0.8rem;
		line-height: 1.4;
	}
}

@media (max-width: 380px) {
	.elementor-3610 .elementor-element-6c47149 {
		padding-top: 2rem;
	}

	.elementor-3610 .elementor-element-8f0c16a {
		padding-left: 0.75rem;
		padding-right: 0.75rem;
		padding-bottom: 2rem;
	}

	.elementor-3610 .elementor-element-8f0c16a > .e-con-inner {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 10px;
	}

	.elementor-3610 .elementor-element-8f0c16a .elementor-widget-heading .elementor-heading-title {
		font-size: 0.85rem;
		margin: 0.65rem 0.65rem 0.2rem;
	}

	.elementor-3610 .elementor-element-8f0c16a .elementor-widget-text-editor {
		padding: 0 0.65rem 0.65rem;
	}

	.elementor-3610 .elementor-element-8f0c16a .elementor-widget-text-editor p,
	.elementor-3610 .elementor-element-8f0c16a .elementor-widget-text-editor span {
		font-size: 0.75rem;
	}
}
