/**
 * Afloral.com design system for Flores theme.
 * Based on Shopify Horizon theme tokens from afloral.com.
 */

/* ==========================================================================
   Design Tokens
   ========================================================================== */

:root {
	--icon-stroke-width: 1.5px;
	--icon-size-sm: 1.25rem;
	--icon-size-md: 1.375rem;

	--font-body--family: "Poppins", sans-serif;
	--font-body--weight: 500;
	--font-subheading--family: "Inter", sans-serif;
	--font-heading--family: "Inter", sans-serif;
	--font-accent--family: "DM Serif Display", serif;

	--font-size--paragraph: 0.875rem;
	--font-size--h1: clamp(1.75rem, 4.8vw, 3rem);
	--font-size--h2: clamp(3rem, 8.8vw, 5.5rem);
	--font-size--h3: 1.5rem;
	--font-size--h4: 1.5rem;
	--font-size--h5: 1.125rem;

	--line-height--body-loose: 1.6;
	--line-height--display-normal: 1.1;
	--line-height--display-loose: 1.2;

	--color-background: #f5f3ed;
	--color-foreground: #212121;
	--color-foreground-heading: #212121;
	--color-primary: #212121;
	--color-primary-hover: #57786b;
	--color-border: rgba(0, 0, 0, 0.13);
	--color-white: #ffffff;
	--color-cream: #fffefa;
	--color-sage: #57786b;
	--color-announcement: #cae1cf;

	--color-primary-button-text: #ffffff;
	--color-primary-button-background: #212121;
	--color-primary-button-border: #212121;
	--color-primary-button-hover-text: #212121;
	--color-primary-button-hover-background: #ffffff;
	--color-primary-button-hover-border: #000000;

	--color-secondary-button-text: #212121;
	--color-secondary-button-background: #fffefa;
	--color-secondary-button-border: #a2a2a2;
	--color-secondary-button-hover-text: #ffffff;
	--color-secondary-button-hover-background: #57786b;
	--color-secondary-button-hover-border: #333333;

	--style-border-radius-buttons-primary: 4px;
	--button-padding-inline: 24px;
	--button-padding-block: 16px;
	--shadow-button: 0 2px 3px rgba(0, 0, 0, 0.2);

	--page-width: 120rem;
	--page-gutter: clamp(1rem, 4vw, 1.5rem);
	--header-height: 72px;
	--layer-sticky: 8;
	--layer-overlay: 16;
	--layer-menu-drawer: 18;
	--layer-side-drawer: 20;

	--hover-lift-amount: 4px;
	--hover-transition-duration: 0.25s;
	--hover-transition-timing: ease-out;
	--hover-subtle-zoom-amount: 1.015;
}

/* ==========================================================================
   Base
   ========================================================================== */

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	font-family: var(--font-body--family);
	font-weight: 400;
	font-size: var(--font-size--paragraph);
	line-height: var(--line-height--body-loose);
	color: var(--color-foreground);
	background-color: var(--color-background);
	display: flex;
	flex-direction: column;
	min-height: 100svh;
	margin: 0;
	width: 100%;
	overflow-x: clip;
}

body.afloral-theme #page {
	display: flex;
	flex-direction: column;
	min-height: 100svh;
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}

body.afloral-theme a {
	color: inherit;
	text-decoration: none;
	transition: color var(--hover-transition-duration) var(--hover-transition-timing);
}

body.afloral-theme a:hover {
	color: var(--color-primary-hover);
}

body.afloral-theme img {
	display: block;
	max-width: 100%;
	height: auto;
}

body.afloral-theme h1,
body.afloral-theme .h1 {
	font-family: var(--font-accent--family);
	font-weight: 400;
	font-size: var(--font-size--h1);
	line-height: var(--line-height--display-normal);
	color: var(--color-foreground-heading);
	margin: 0 0 0.5em;
}

body.afloral-theme h2,
body.afloral-theme .h2 {
	font-family: var(--font-accent--family);
	font-weight: 400;
	font-size: var(--font-size--h2);
	line-height: var(--line-height--display-loose);
	color: var(--color-foreground-heading);
	margin: 0 0 0.25em;
}

body.afloral-theme h3,
body.afloral-theme .h3 {
	font-family: var(--font-heading--family);
	font-weight: 500;
	font-size: var(--font-size--h3);
	line-height: var(--line-height--display-normal);
	margin: 0 0 0.25em;
}

body.afloral-theme h4,
body.afloral-theme .h4 {
	font-family: var(--font-heading--family);
	font-weight: 500;
	font-size: var(--font-size--h4);
	margin: 0 0 0.25em;
}

body.afloral-theme h5,
body.afloral-theme .h5 {
	font-family: var(--font-subheading--family);
	font-weight: 500;
	font-size: var(--font-size--h5);
	margin: 0 0 0.25em;
}

body.afloral-theme p {
	margin: 0 0 0.5em;
}

body.afloral-theme .page-width {
	width: 100%;
	max-width: var(--page-width);
	margin-inline: auto;
	padding-inline: var(--page-gutter);
}

body.afloral-theme .afloral-full-bleed {
	width: 100vw;
	max-width: 100vw;
	margin-inline: calc(50% - 50vw);
}

body.afloral-theme .visually-hidden,
body.afloral-theme .screen-reader-text {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

body.afloral-theme .button,
body.afloral-theme button.button,
body.afloral-theme a.button,
body.afloral-theme .wp-block-button__link,
body.afloral-theme .woocommerce a.button,
body.afloral-theme .woocommerce button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	font-family: var(--font-body--family);
	font-weight: 400;
	font-size: var(--font-size--paragraph);
	text-transform: uppercase;
	letter-spacing: 0.06em;
	padding: var(--button-padding-block) var(--button-padding-inline);
	border-radius: var(--style-border-radius-buttons-primary);
	border: 1px solid var(--color-primary-button-border);
	background: var(--color-primary-button-background);
	color: var(--color-primary-button-text);
	box-shadow: var(--shadow-button);
	cursor: pointer;
	transition: background var(--hover-transition-duration) var(--hover-transition-timing),
		color var(--hover-transition-duration) var(--hover-transition-timing),
		border-color var(--hover-transition-duration) var(--hover-transition-timing);
	text-decoration: none;
	line-height: 1;
}

body.afloral-theme .button:hover,
body.afloral-theme a.button:hover,
body.afloral-theme .woocommerce a.button:hover {
	background: var(--color-primary-button-hover-background);
	color: var(--color-primary-button-hover-text);
	border-color: var(--color-primary-button-hover-border);
}

body.afloral-theme .button--secondary {
	background: var(--color-secondary-button-background);
	color: var(--color-secondary-button-text);
	border-color: var(--color-secondary-button-border);
	text-transform: none;
}

body.afloral-theme .button--secondary:hover {
	background: var(--color-secondary-button-hover-background);
	color: var(--color-secondary-button-hover-text);
	border-color: var(--color-secondary-button-hover-border);
}

body.afloral-theme .button-unstyled {
	background: none;
	border: none;
	box-shadow: none;
	padding: 0.5rem;
	color: var(--color-foreground);
	text-transform: none;
	letter-spacing: normal;
}

body.afloral-theme .button-unstyled:hover {
	background: none;
	color: var(--color-primary-hover);
}

/* ==========================================================================
   Announcement Bar
   ========================================================================== */

.afloral-announcement {
	background: var(--color-announcement);
	color: var(--color-foreground);
	text-align: center;
	font-size: 0.9375rem;
	font-weight: 500;
	padding: 0.875rem 1rem;
	line-height: 1.3;
}

.afloral-announcement a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.afloral-announcement strong {
	font-weight: 600;
}

/* ==========================================================================
   Header
   ========================================================================== */

.afloral-header {
	position: sticky;
	top: 0;
	z-index: var(--layer-sticky);
	background: var(--color-background);
	overflow: visible;
	width: 100%;
	max-width: 100%;
}

.afloral-header__divider {
	border: none;
	border-top: 2px solid var(--color-border);
	margin: 0;
}

.afloral-header__row {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	padding: 0.75rem var(--page-gutter);
	min-height: var(--header-height);
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

.afloral-header__logo img {
	width: auto;
	height: 52px;
	max-width: 220px;
}

.afloral-header__logo {
	flex-shrink: 1;
	min-width: 0;
}

.afloral-header__logo .custom-logo-link {
	display: block;
	max-width: 100%;
}

.afloral-header__logo-text {
	font-family: var(--font-accent--family);
	font-size: clamp(1.125rem, 4.5vw, 1.75rem);
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-foreground);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.afloral-header__actions {
	display: flex;
	align-items: center;
	flex-shrink: 0;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}

.afloral-header__action {
	position: relative;
}

.afloral-header__action .button-unstyled {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	height: 2.75rem;
}

.afloral-header__action .flores-icon {
	width: var(--icon-size-md);
	height: var(--icon-size-md);
}

.afloral-cart-bubble {
	position: absolute;
	top: 4px;
	right: 4px;
	min-width: 1.125rem;
	height: 1.125rem;
	padding: 0 0.25rem;
	border-radius: 50%;
	background: var(--color-foreground);
	color: var(--color-white);
	font-size: 0.625rem;
	font-weight: 600;
	line-height: 1.125rem;
	text-align: center;
}

.afloral-cart-bubble:empty,
.afloral-cart-bubble[data-count="0"] {
	display: none;
}

/* Primary Navigation */
.afloral-nav {
	display: none;
	flex: 1;
	min-width: 0;
	overflow: visible;
}

.afloral-nav > .menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: flex-end;
	gap: 1.25rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.afloral-nav > .menu > li {
	position: relative;
}

.afloral-nav > .menu > li > a {
	display: block;
	padding-block: 0.25rem;
}

.afloral-nav a {
	font-family: var(--font-body--family);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-foreground);
	white-space: nowrap;
}

.afloral-nav a:hover {
	color: var(--color-primary-hover);
}

.afloral-nav .menu-item-sale > a,
.afloral-nav a[href*="sale"] {
	color: var(--color-sale, #c0392b);
}

/* Desktop mega menu */
.afloral-mega-menu-host {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	pointer-events: none;
	z-index: calc(var(--layer-sticky) + 2);
}

.afloral-mega-menu {
	position: absolute;
	left: 30%;
	top: 0;
	width: 720px;
	max-width: calc(100vw - 2rem);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.2s ease-out,
		visibility 0.2s ease-out;
}

.afloral-mega-menu.is-open {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.afloral-mega-menu-host.is-active {
	pointer-events: auto;
}

.afloral-nav .menu-item-mega-menu.is-active > a {
	color: var(--color-primary-hover);
}

.afloral-nav .menu-item-mega-menu > .sub-menu {
	display: none !important;
}

.afloral-mega-menu__inner {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: start;
	gap: 1.5rem;
	width: 100%;
	margin: 0;
	padding: 2rem 1.25rem 2.5rem;
}

.afloral-mega-menu--products-only .afloral-mega-menu__inner {
	display: flex;
	justify-content: flex-end;
}

.afloral-mega-menu--links-only .afloral-mega-menu__inner {
	grid-template-columns: minmax(0, 20rem);
}

.afloral-mega-menu__links {
	min-width: 0;
	justify-self: start;
}

.afloral-mega-menu__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 0.625rem;
}

.afloral-mega-menu__list a {
	font-size: 0.8125rem;
	font-weight: 400;
	white-space: normal;
	line-height: 1.5;
}

.afloral-mega-menu__products.afloral-product-grid {
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	justify-self: end;
	width: 100%;
	max-width: 20rem;
	margin: 0;
	padding: 0;
}

.afloral-mega-menu__products .afloral-product-card:hover {
	transform: none;
}

.afloral-mega-menu__products .afloral-product-card__media {
	aspect-ratio: 1 / 1;
}

.afloral-mega-menu__products .afloral-product-card__wishlist {
	top: 0.5rem;
	right: 0.5rem;
	width: 2rem;
	height: 2rem;
}

.afloral-mega-menu__products .afloral-product-card__title {
	font-size: 0.6875rem;
	line-height: 1.35;
}

.afloral-mega-menu__products .afloral-product-card__price {
	font-size: 0.6875rem;
}

/* Standard dropdown for non-category menu items */
.afloral-nav > .menu > .menu-item-dropdown > .sub-menu {
	position: absolute;
	top: calc(100% + 0.25rem);
	left: 0;
	min-width: 13rem;
	list-style: none;
	margin: 0;
	padding: 0.5rem 0;
	background: var(--color-white);
	border: 1px solid var(--color-border);
	box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity 0.2s ease-out,
		visibility 0.2s ease-out;
	z-index: calc(var(--layer-sticky) + 1);
}

.afloral-nav > .menu > .menu-item-dropdown:last-child > .sub-menu,
.afloral-nav > .menu > .menu-item-dropdown:nth-last-child(2) > .sub-menu {
	left: auto;
	right: 0;
}

.afloral-nav > .menu > .menu-item-dropdown.is-open > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.afloral-nav > .menu > .menu-item-dropdown.is-open > a {
	color: var(--color-primary-hover);
}

.afloral-nav > .menu > .menu-item-dropdown > .sub-menu a {
	display: block;
	padding: 0.5rem 1.25rem;
	font-size: 0.8125rem;
	font-weight: 400;
	white-space: nowrap;
	line-height: 1.4;
}

.afloral-nav > .menu > .menu-item-dropdown > .sub-menu a:hover {
	background: rgba(0, 0, 0, 0.03);
}

/* Mobile drawer */
.afloral-drawer-toggle {
	display: flex;
}

.afloral-menu-drawer {
	position: fixed;
	inset: 0;
	z-index: var(--layer-menu-drawer);
	visibility: hidden;
	pointer-events: none;
}

.afloral-menu-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}

.afloral-menu-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity var(--hover-transition-duration) var(--hover-transition-timing);
}

.afloral-menu-drawer.is-open .afloral-menu-drawer__overlay {
	opacity: 1;
}

.afloral-menu-drawer__panel {
	position: absolute;
	top: 0;
	left: 0;
	width: min(22rem, 85vw);
	height: 100%;
	background: var(--color-background);
	padding: 1.5rem;
	transform: translateX(-100%);
	transition: transform var(--hover-transition-duration) var(--hover-transition-timing);
	overflow-y: auto;
}

.afloral-menu-drawer.is-open .afloral-menu-drawer__panel {
	transform: translateX(0);
}

.afloral-menu-drawer__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.afloral-menu-drawer .menu {
	list-style: none;
	margin: 3rem 0 0;
	padding: 0;
}

.afloral-menu-drawer .menu li {
	border-bottom: 1px solid var(--color-border);
}

.afloral-menu-drawer .menu a {
	display: block;
	padding: 1rem 0;
	font-size: 1.75rem;
	font-weight: 500;
	font-family: var(--font-body--family);
}

.afloral-menu-drawer .afloral-mega-menu {
	display: none;
}

.afloral-menu-drawer .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0.5rem 1rem;
}

.afloral-menu-drawer .sub-menu a {
	font-size: 1.125rem;
	padding: 0.625rem 0;
}

/* Side drawers (search, cart) */
body.afloral-drawer-open {
	overflow: hidden;
}

.afloral-side-drawer {
	position: fixed;
	inset: 0;
	z-index: var(--layer-side-drawer);
	visibility: hidden;
	pointer-events: none;
}

.afloral-side-drawer.is-open {
	visibility: visible;
	pointer-events: auto;
}

.afloral-side-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	opacity: 0;
	transition: opacity var(--hover-transition-duration) var(--hover-transition-timing);
}

.afloral-side-drawer.is-open .afloral-side-drawer__overlay {
	opacity: 1;
}

.afloral-side-drawer__panel {
	position: absolute;
	background: var(--color-white);
	overflow-y: auto;
	transition: transform var(--hover-transition-duration) var(--hover-transition-timing);
}

.afloral-side-drawer__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
	z-index: 1;
}

.afloral-side-drawer--right .afloral-side-drawer__panel {
	top: 0;
	right: 0;
	width: min(28rem, 92vw);
	height: 100%;
	padding: 0;
	transform: translateX(100%);
	display: flex;
	flex-direction: column;
}

.afloral-cart-drawer .afloral-side-drawer__panel {
	background: var(--color-cream);
}

.afloral-cart-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.25rem 1.75rem;
	border-bottom: 1px solid var(--color-border);
	flex-shrink: 0;
}

body.afloral-theme .afloral-cart-drawer__title {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	margin: 0;
	font-family: var(--font-heading--family);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0;
	color: var(--color-foreground);
}

body.afloral-theme .afloral-cart-drawer__count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.375rem;
	height: 1.375rem;
	padding: 0 0.3rem;
	border-radius: 999px;
	background: var(--color-foreground);
	color: var(--color-white);
	font-family: var(--font-subheading--family);
	font-size: 0.6875rem;
	font-weight: 600;
	line-height: 1;
}

.afloral-cart-drawer__count[data-count="0"] {
	display: none;
}

.afloral-cart-drawer__content {
	flex: 1;
	display: flex;
	flex-direction: column;
	min-height: 0;
	overflow: hidden;
	padding: 0;
}

.afloral-cart-drawer .widget_shopping_cart_content {
	display: flex;
	flex-direction: column;
	flex: 1;
	min-height: 0;
	padding: 1rem 1.75rem 1.75rem;
	box-sizing: border-box;
}

.afloral-cart-drawer__header .afloral-side-drawer__close {
	position: static;
	flex-shrink: 0;
}

.afloral-side-drawer--right.is-open .afloral-side-drawer__panel {
	transform: translateX(0);
}

/* Search modal */
.afloral-search-modal .afloral-side-drawer__overlay {
	backdrop-filter: blur(2px);
}

.afloral-search-modal__dialog {
	position: absolute;
	top: clamp(1.5rem, 8vh, 4rem);
	left: 50%;
	width: min(56rem, calc(100% - 2rem));
	max-height: calc(100svh - 2rem);
	padding: 1.25rem 1.5rem 1.5rem;
	background: var(--color-white);
	border-radius: 8px;
	box-shadow: 0 12px 48px rgba(0, 0, 0, 0.18);
	overflow-y: auto;
	opacity: 0;
	transform: translateX(-50%) translateY(-0.75rem) scale(0.98);
	transition:
		opacity var(--hover-transition-duration) var(--hover-transition-timing),
		transform var(--hover-transition-duration) var(--hover-transition-timing);
}

.afloral-search-modal.is-open .afloral-search-modal__dialog {
	opacity: 1;
	transform: translateX(-50%) translateY(0) scale(1);
}

.afloral-search-modal__close {
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.afloral-search-form--modal {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--color-border);
	margin-bottom: 1.25rem;
}

.afloral-search-form--modal .afloral-search-form__icon {
	display: flex;
	flex-shrink: 0;
	color: rgba(0, 0, 0, 0.45);
}

.afloral-search-form--modal .search-field {
	flex: 1;
	min-width: 0;
	padding: 0.25rem 0;
	border: none;
	background: transparent;
	font-family: var(--font-body--family);
	font-size: 1rem;
	font-weight: 400;
	color: var(--color-foreground);
}

.afloral-search-form--modal .search-field::placeholder {
	color: rgba(0, 0, 0, 0.45);
}

.afloral-search-form--modal .search-field:focus {
	outline: none;
}

.afloral-search-modal__heading {
	margin: 0 0 1rem;
	font-family: var(--font-body--family);
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-foreground);
}

.afloral-search-modal__products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.afloral-search-modal__products a {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.afloral-search-modal__products img {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	background: #f3f3f3;
	border-radius: 4px;
}

.afloral-search-modal__product-title,
.afloral-search-modal__product-price {
	font-family: var(--font-body--family);
	font-size: 0.8125rem;
	line-height: 1.35;
}

.afloral-search-modal__product-title {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.afloral-search-modal__product-price {
	color: rgba(0, 0, 0, 0.72);
}

.afloral-search-modal__pills {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0 0 1rem;
}

.afloral-search-modal__pill {
	display: inline-flex;
	align-items: center;
	padding: 0.5rem 0.875rem;
	border: none;
	border-radius: 999px;
	background: #f0ede6;
	font-family: var(--font-body--family);
	font-size: 0.8125rem;
	line-height: 1.3;
	color: var(--color-foreground);
	cursor: pointer;
	transition: background var(--hover-transition-duration) var(--hover-transition-timing);
}

.afloral-search-modal__pill:hover {
	background: #e6e2d9;
}

.afloral-search-modal__pill strong {
	font-weight: 600;
}

.afloral-search-modal__empty {
	margin: 0;
	font-size: 0.875rem;
	color: rgba(0, 0, 0, 0.65);
}

.afloral-search-modal__footer {
	display: flex;
	justify-content: center;
	margin-top: 1.5rem;
}

.afloral-search-modal__view-all {
	min-width: 12rem;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.8125rem;
}

.afloral-search-modal__results.is-loading {
	opacity: 0.55;
	pointer-events: none;
}

@media (max-width: 749px) {
	.afloral-search-modal__products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

.afloral-search-form {
	display: flex;
	gap: 0.75rem;
	max-width: 40rem;
	margin: 0 auto;
}

.afloral-search-form .search-field {
	flex: 1;
	min-width: 0;
	padding: 0.875rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--style-border-radius-buttons-primary);
	font: inherit;
	background: var(--color-white);
}

.afloral-search-form .search-field:focus {
	outline: 2px solid var(--color-sage);
	outline-offset: 1px;
}

.afloral-cart-drawer__empty {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: min(40vh, 20rem);
	padding: 2.5rem 1.75rem;
	text-align: center;
	box-sizing: border-box;
}

body.afloral-theme .afloral-cart-drawer__empty-title {
	font-family: var(--font-accent--family);
	font-size: 1.125rem;
	font-weight: 400;
	line-height: 1.35;
	margin: 0 0 0.75rem;
	color: var(--color-foreground-heading);
}

.afloral-cart-drawer__login {
	margin: 0 0 1.5rem;
	font-size: 0.875rem;
	line-height: 1.45;
}

.afloral-cart-drawer__login a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.afloral-cart-drawer__continue,
.afloral-cart-drawer .woocommerce-mini-cart__buttons .button {
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-size: 0.8125rem;
	padding: 0.875rem 1.25rem;
}

body.afloral-theme .afloral-cart-drawer .woocommerce-mini-cart-item,
body.afloral-theme .afloral-cart-drawer .woocommerce-mini-cart-item a {
	font-size: 0.875rem;
	line-height: 1.4;
}

body.afloral-theme .afloral-cart-drawer .woocommerce-mini-cart__total {
	font-size: 0.9375rem;
}

body.afloral-theme .afloral-cart-drawer .quantity {
	font-size: 0.8125rem;
}

body.afloral-theme .afloral-side-drawer--right .afloral-side-drawer__close {
	width: 2rem;
	height: 2rem;
}

.afloral-cart-drawer .woocommerce-mini-cart {
	list-style: none;
	margin: 0;
	padding: 0;
	flex: 1;
	min-height: 0;
	overflow-y: auto;
	overscroll-behavior: contain;
}

.afloral-cart-drawer .woocommerce-mini-cart-item {
	display: grid;
	grid-template-columns: 4.25rem minmax(0, 1fr);
	gap: 0.875rem;
	align-items: start;
	padding: 1rem 0;
	border-bottom: 1px solid var(--color-border);
}

.afloral-mini-cart-item__media img {
	width: 4.25rem;
	height: 4.25rem;
	object-fit: cover;
	background: #eceae4;
}

.afloral-mini-cart-item__body {
	min-width: 0;
}

.afloral-mini-cart-item__top {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
	margin-bottom: 0.35rem;
}

.afloral-mini-cart-item__title {
	flex: 1;
	min-width: 0;
	font-family: var(--font-subheading--family);
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.4;
	color: var(--color-foreground);
	overflow-wrap: anywhere;
}

.afloral-mini-cart-item__line-total {
	flex-shrink: 0;
	font-size: 0.875rem;
	font-weight: 500;
	white-space: nowrap;
}

.afloral-mini-cart-item__footer {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-top: 0.75rem;
}

.afloral-mini-cart-item__unit-price {
	font-size: 0.8125rem;
	color: rgba(33, 33, 33, 0.65);
}

.afloral-mini-cart-item__quantity {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.75rem;
	padding: 0.35rem 0.5rem;
	border: 1px solid var(--color-border);
	background: var(--color-white);
	font-size: 0.875rem;
	font-weight: 500;
}

.afloral-mini-cart-item__remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-left: auto;
	padding: 0.35rem;
	color: rgba(33, 33, 33, 0.55);
}

.afloral-mini-cart-item__remove:hover {
	color: var(--color-foreground);
}

.afloral-cart-drawer__footer {
	flex-shrink: 0;
	margin-top: 0.5rem;
	padding-top: 1.25rem;
	border-top: 1px solid var(--color-border);
}

.afloral-cart-drawer .woocommerce-mini-cart__total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin: 0 0 0.75rem;
	padding: 0;
	font-weight: 500;
}

.afloral-cart-drawer__total-label {
	font-size: 0.9375rem;
}

.afloral-cart-drawer__total-amount {
	font-size: 1.125rem;
	font-weight: 600;
}

.afloral-cart-drawer__tax-note {
	margin: 0 0 1.25rem;
	font-size: 0.75rem;
	line-height: 1.45;
	color: rgba(33, 33, 33, 0.6);
}

.afloral-cart-drawer .woocommerce-mini-cart__buttons {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 0;
}

.afloral-cart-drawer .woocommerce-mini-cart__buttons .button {
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding-block: 1.125rem;
	margin: 0;
}

.afloral-cart-drawer .woocommerce-mini-cart__buttons {
	padding-bottom: env(safe-area-inset-bottom, 0);
}

.afloral-pdp__add-to-cart.is-loading {
	opacity: 0.7;
	pointer-events: none;
}

.afloral-pdp__add-to-cart.is-added {
	background: var(--color-sage);
	border-color: var(--color-sage);
}

.afloral-product-card__wishlist.is-active {
	color: var(--color-sale, #c0392b);
}

.afloral-product-card__wishlist.is-active svg path {
	fill: currentColor;
}

.afloral-favorites-page {
	padding-block: 3rem 4rem;
}

.afloral-favorites-page__header {
	margin-bottom: 2rem;
	text-align: center;
}

.afloral-favorites-page__header h1 {
	margin: 0 0 0.5rem;
}

.afloral-favorites-page__empty {
	text-align: center;
	padding: 3rem 1rem;
}

.afloral-favorites-page__list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 1rem;
	max-width: 48rem;
	margin-inline: auto;
}

.afloral-favorites-page__item {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1rem;
	background: var(--color-white);
	border: 1px solid var(--color-border);
}

.afloral-favorites-page__link {
	display: flex;
	align-items: center;
	gap: 1rem;
	flex: 1;
	min-width: 0;
}

.afloral-favorites-page__link img {
	width: 4.5rem;
	height: 4.5rem;
	object-fit: cover;
	flex-shrink: 0;
}

.afloral-favorites-page__meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
}

.afloral-favorites-page__remove {
	flex-shrink: 0;
	font-size: 0.8125rem;
	text-decoration: underline;
	text-underline-offset: 2px;
}

@media (min-width: 990px) {
	.afloral-drawer-toggle {
		display: none;
	}

	.afloral-nav {
		display: block;
	}

	.afloral-header__logo img {
		height: 52px;
	}

	.afloral-nav > .menu > .menu-item-dropdown > .sub-menu {
		display: block;
	}
}

@media (max-width: 989px) {
	.afloral-mega-menu-host,
	.afloral-mega-menu {
		display: none !important;
	}

	.afloral-header {
		overflow-x: clip;
	}

	.afloral-header__row {
		display: grid;
		grid-template-columns: auto minmax(0, 1fr) auto;
		gap: 0.25rem;
		align-items: center;
	}

	.afloral-drawer-toggle {
		grid-column: 1;
		grid-row: 1;
	}

	.afloral-header__logo {
		grid-column: 2;
		grid-row: 1;
		justify-self: center;
		width: 100%;
		min-width: 0;
		max-width: 100%;
		overflow: hidden;
	}

	.afloral-header__logo .custom-logo-link {
		display: block;
		max-width: 100%;
		margin-inline: auto;
	}

	.afloral-header__logo img,
	.afloral-header__logo .custom-logo {
		display: block;
		width: auto;
		height: auto;
		max-height: 36px;
		max-width: 100%;
		margin-inline: auto;
	}

	.afloral-header__actions {
		grid-column: 3;
		grid-row: 1;
		position: relative;
		z-index: 1;
	}

	.afloral-header__action .button-unstyled {
		width: 2.375rem;
		height: 2.375rem;
	}

	.afloral-header__action .flores-icon {
		width: 1.25rem;
		height: 1.25rem;
	}
}

@media (max-width: 479px) {
	.afloral-header__row {
		gap: 0.125rem;
	}

	.afloral-header__logo img,
	.afloral-header__logo .custom-logo {
		max-height: 28px;
	}

	.afloral-header__action .button-unstyled {
		width: 2.125rem;
		height: 2.125rem;
	}

	.afloral-header__action .flores-icon {
		width: 1.125rem;
		height: 1.125rem;
	}
}

/* ==========================================================================
   Hero & Slideshow
   ========================================================================== */

.afloral-hero {
	position: relative;
	overflow: hidden;
	width: 100%;
	max-width: 100%;
}

.afloral-hero--video,
.afloral-hero--image {
	min-height: clamp(25rem, 65svh, 45rem);
}

.afloral-hero__media {
	position: absolute;
	inset: 0;
}

.afloral-hero__media video,
.afloral-hero__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.afloral-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.35), transparent 60%);
}

.afloral-hero__content {
	position: relative;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 0.75rem;
	padding: clamp(3rem, 8vw, 6rem) 1.5rem;
	min-height: inherit;
	color: var(--color-white);
}

body.afloral-theme .afloral-hero__content h2 {
	color: var(--color-white);
	font-size: clamp(2.5rem, 6vw, 3.5rem);
}

.afloral-hero__content p {
	font-size: 1rem;
	opacity: 0.95;
}

.afloral-hero-banner {
	position: relative;
	display: block;
	overflow: hidden;
	margin-top: clamp(1rem, 2vw, 1.75rem);
	width: 100%;
	max-width: 100%;
}

.afloral-hero-banner__media {
	height: clamp(18rem, 31vw, 32rem);
	overflow: hidden;
}

.afloral-hero-banner__media video,
.afloral-hero-banner__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.afloral-hero-banner__content {
	position: absolute;
	inset: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	gap: 1rem;
	padding: clamp(1.25rem, 4vw, 4rem);
}

.afloral-hero-banner__content h1 {
	color: var(--color-white);
	font-size: clamp(2rem, 5vw, 2.5rem);
}

.afloral-hero-banner__content p {
	color: var(--color-white);
	font-size: 1rem;
	opacity: 0.95;
	margin: 0;
}

/* ==========================================================================
   Product Grid
   ========================================================================== */

.afloral-section {
	padding: clamp(2rem, 5vw, 3rem) 0;
}

.afloral-section__header {
	display: flex;
	align-items: baseline;
	justify-content: center;
	gap: 0.75rem;
	margin-bottom: clamp(1.5rem, 3vw, 2rem);
	text-align: center;
}

.afloral-product-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem 0.875rem;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

@media (min-width: 750px) {
	.afloral-product-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.5rem 2.25rem;
	}

	.afloral-mega-menu__products.afloral-product-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 1rem;
	}
}

.afloral-product-card {
	position: relative;
	min-width: 0;
	transition: transform var(--hover-transition-duration) var(--hover-transition-timing);
}

.afloral-product-card__link {
	display: block;
	min-width: 0;
}

.afloral-product-card:hover {
	transform: translateY(calc(-1 * var(--hover-lift-amount)));
}

.afloral-product-card__media {
	position: relative;
	aspect-ratio: 4 / 5;
	overflow: hidden;
	background: var(--color-white);
}

.afloral-product-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform var(--hover-transition-duration) var(--hover-transition-timing),
		opacity var(--hover-transition-duration) var(--hover-transition-timing);
}

.afloral-product-card__media img.secondary {
	position: absolute;
	inset: 0;
	opacity: 0;
}

.afloral-product-card:hover .afloral-product-card__media img.primary {
	transform: scale(var(--hover-subtle-zoom-amount));
}

.afloral-product-card:hover .afloral-product-card__media img.secondary {
	opacity: 1;
}

.afloral-product-card__wishlist {
	position: absolute;
	top: 0.625rem;
	right: 0.625rem;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	background: #fff;
	border: 1px solid rgba(0, 0, 0, 0.1);
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	cursor: pointer;
	color: var(--color-foreground);
	z-index: 2;
	transition: border-color var(--hover-transition-duration) var(--hover-transition-timing),
		color var(--hover-transition-duration) var(--hover-transition-timing);
}

.afloral-product-card__wishlist:hover {
	border-color: rgba(0, 0, 0, 0.2);
}

.afloral-product-card__wishlist svg {
	display: block;
}

.afloral-product-card__content {
	padding-top: 0.75rem;
}

body.afloral-theme .afloral-product-card__title {
	font-family: var(--font-body--family);
	font-size: var(--font-size--paragraph);
	font-weight: 400;
	margin: 0 0 0.25rem;
	line-height: 1.4;
	color: var(--color-foreground);
	overflow-wrap: anywhere;
	hyphens: auto;
}

body.afloral-theme .afloral-product-card__price {
	font-family: var(--font-body--family);
	font-size: var(--font-size--paragraph);
	font-weight: 500;
	color: var(--color-foreground);
	display: block;
}

/* ==========================================================================
   Category Tiles
   ========================================================================== */

.afloral-category-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.75rem;
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

@media (min-width: 750px) {
	.afloral-category-grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.afloral-category-tile {
	position: relative;
	overflow: hidden;
	border-radius: 2px;
}

.afloral-category-tile img,
.afloral-category-tile__placeholder {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
	transition: transform var(--hover-transition-duration) var(--hover-transition-timing);
}

.afloral-category-tile__placeholder {
	background: linear-gradient(145deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.16));
}

.afloral-category-tile:hover img,
.afloral-category-tile:hover .afloral-category-tile__placeholder {
	transform: scale(var(--hover-subtle-zoom-amount));
}

.afloral-category-tile__label {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 1rem;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
	color: var(--color-white);
	font-family: var(--font-heading--family);
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
}

/* ==========================================================================
   Main Categories (POENIA-style intro grid)
   ========================================================================== */

.afloral-main-categories__header {
	display: grid;
	justify-items: center;
	width: 100%;
	margin-bottom: clamp(2rem, 4vw, 3rem);
	text-align: center;
}

.afloral-main-categories__overline,
body.afloral-theme .afloral-main-categories__title,
.afloral-main-categories__description {
	width: min(46rem, 100%);
	max-width: 100%;
	margin-inline: 0;
	text-align: center;
}

.afloral-main-categories__overline {
	margin-block: 0 0.75rem;
	font-family: var(--font-subheading--family);
	font-size: 0.75rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-indent: 0.12em;
	text-transform: uppercase;
	color: rgba(33, 33, 33, 0.55);
}

body.afloral-theme .afloral-main-categories__title {
	margin-block: 0 1rem;
	font-family: var(--font-accent--family);
	font-size: clamp(2rem, 4.5vw, 2.75rem);
	font-weight: 400;
	line-height: 1.15;
	color: var(--color-foreground-heading);
}

body.afloral-theme .afloral-main-categories__description {
	margin-block: 0;
	font-family: var(--font-accent--family);
	font-size: clamp(1rem, 2vw, 1.125rem);
	line-height: 1.65;
	text-wrap: balance;
	color: rgba(33, 33, 33, 0.72);
}

.afloral-main-categories__grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: clamp(1rem, 2.5vw, 1.75rem);
	list-style: none;
	margin: 0;
	padding: 0;
	width: 100%;
}

@media (min-width: 750px) {
	.afloral-main-categories__grid {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

.afloral-main-categories__card {
	display: flex;
	flex-direction: column;
	gap: 0.875rem;
	min-width: 0;
	color: inherit;
}

.afloral-main-categories__card img,
.afloral-main-categories__card-placeholder {
	width: 100%;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	display: block;
	border-radius: 2px;
	transition: transform var(--hover-transition-duration) var(--hover-transition-timing);
}

.afloral-main-categories__card-placeholder {
	background: linear-gradient(145deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.12));
}

.afloral-main-categories__card:hover img,
.afloral-main-categories__card:hover .afloral-main-categories__card-placeholder {
	transform: scale(var(--hover-subtle-zoom-amount));
}

.afloral-main-categories__card-title {
	font-family: var(--font-accent--family);
	font-size: clamp(1rem, 2vw, 1.25rem);
	line-height: 1.3;
	text-align: center;
	color: var(--color-foreground-heading);
}

.afloral-main-categories__cta {
	display: flex;
	justify-content: center;
	margin-top: clamp(2rem, 4vw, 3rem);
}

body.afloral-theme .afloral-main-categories__button {
	min-width: min(100%, 22rem);
	background: var(--color-sage);
	border-color: var(--color-sage);
	color: var(--color-white);
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

body.afloral-theme .afloral-main-categories__button:hover {
	background: #4a6a5e;
	border-color: #4a6a5e;
	color: var(--color-white);
}

/* ==========================================================================
   Featured Review (testimonial + product)
   ========================================================================== */

.afloral-featured-review {
	background: var(--color-background);
	padding: clamp(2.5rem, 6vw, 4.5rem) 0;
}

.afloral-featured-review__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: clamp(2rem, 5vw, 3.5rem);
	align-items: center;
}

@media (min-width: 990px) {
	.afloral-featured-review__inner {
		grid-template-columns: minmax(0, 1fr) minmax(0, 18rem);
		gap: clamp(2rem, 6vw, 5rem);
	}
}

.afloral-featured-review__content {
	text-align: center;
	max-width: 32rem;
	margin-inline: auto;
}

.afloral-featured-review__title {
	font-family: var(--font-accent--family);
	font-size: clamp(2rem, 4.5vw, 3rem);
	font-weight: 400;
	line-height: 1.15;
	margin: 0 0 0.75rem;
	color: var(--color-foreground-heading);
}

.afloral-featured-review__stars {
	display: flex;
	justify-content: center;
	gap: 0.125rem;
	color: var(--color-foreground);
	margin-bottom: 1rem;
}

.afloral-featured-review__stars .flores-icon {
	width: 1rem;
	height: 1rem;
}

.afloral-featured-review__quote {
	margin: 0 0 0.75rem;
	padding: 0;
	border: 0;
}

.afloral-featured-review__quote p {
	margin: 0;
	font-family: var(--font-accent--family);
	font-size: clamp(1.125rem, 2.5vw, 1.5rem);
	font-style: italic;
	line-height: 1.45;
	color: var(--color-foreground);
}

.afloral-featured-review__quote p::before {
	content: open-quote;
}

.afloral-featured-review__quote p::after {
	content: close-quote;
}

.afloral-featured-review__author {
	margin: 0 0 1.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-foreground);
}

.afloral-featured-review__image {
	display: block;
	width: min(100%, 18rem);
	aspect-ratio: 1;
	margin: 0 auto;
	object-fit: cover;
}

.afloral-featured-review__product {
	display: flex;
	justify-content: center;
}

@media (min-width: 990px) {
	.afloral-featured-review__product {
		justify-content: flex-end;
	}
}

.afloral-featured-review__product-grid {
	width: 100%;
	max-width: 16rem;
	margin: 0;
	padding: 0;
	list-style: none;
	grid-template-columns: 1fr;
}

.afloral-featured-review__product-grid .afloral-product-card:hover {
	transform: none;
}

.afloral-featured-review__product-grid .afloral-product-card__media {
	background: var(--color-white);
}

/* ==========================================================================
   Testimonial (legacy)
   ========================================================================== */

.afloral-testimonial {
	text-align: center;
	padding: 2rem 1.5rem;
	max-width: 36rem;
	margin: 0 auto;
}

.afloral-testimonial__stars {
	display: flex;
	justify-content: center;
	gap: 0.125rem;
	color: var(--color-foreground);
	margin-bottom: 0.75rem;
}

.afloral-testimonial__stars .flores-icon {
	width: 1rem;
	height: 1rem;
}

.afloral-testimonial__quote {
	font-size: 1rem;
	font-style: italic;
	margin-bottom: 0.5rem;
}

.afloral-testimonial__author {
	font-size: 0.875rem;
	font-weight: 500;
}

/* ==========================================================================
   Split Banner
   ========================================================================== */

.afloral-split-banner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
}

@media (min-width: 750px) {
	.afloral-split-banner {
		grid-template-columns: 1fr 1fr;
	}
}

.afloral-split-banner__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	min-height: 20rem;
}

.afloral-split-banner__content {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
	gap: 1rem;
	padding: clamp(2rem, 5vw, 4rem);
	background: var(--color-background);
}

.afloral-split-banner__content h2 {
	font-size: clamp(1.75rem, 4vw, 2.5rem);
}

/* ==========================================================================
   SEO Text Block
   ========================================================================== */

.afloral-seo-text {
	text-align: center;
	max-width: 50ch;
	margin: 0 auto;
	padding: 2rem 1.5rem 3rem;
	font-size: var(--font-size--paragraph);
	line-height: var(--line-height--body-loose);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.afloral-footer {
	background: var(--color-background);
	padding: 0.75rem 0 clamp(2rem, 5vw, 3rem);
	margin-top: auto;
}

.afloral-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.5rem;
	width: 100%;
	max-width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
	min-width: 0;
}

@media (min-width: 750px) {
	.afloral-footer__grid {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.3125rem;
	}
}

.afloral-footer__menu {
	min-width: 0;
}

.afloral-footer__menu details {
	border-bottom: 1px solid var(--color-border);
}

.afloral-footer__menu summary {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0.75rem 0;
	cursor: pointer;
	list-style: none;
	font-family: var(--font-heading--family);
	font-weight: 500;
	font-size: var(--font-size--h4);
}

.afloral-footer__menu summary::-webkit-details-marker {
	display: none;
}

.afloral-footer__menu summary .icon-plus {
	display: block;
}

.afloral-footer__menu summary .icon-caret {
	display: none;
}

.afloral-footer__menu details[open] summary .icon-plus .vertical {
	opacity: 0;
}

@media (min-width: 750px) {
	.afloral-footer__menu details {
		border: none;
	}

	.afloral-footer__menu summary {
		pointer-events: none;
		padding: 0 0 0.75rem;
	}

	.afloral-footer__menu summary .icon-plus,
	.afloral-footer__menu summary .icon-caret {
		display: none !important;
	}

	.afloral-footer__menu .details-content {
		display: block !important;
	}
}

.afloral-footer__menu ul {
	list-style: none;
	margin: 0;
	padding: 0 0 1rem;
}

.afloral-footer__menu li {
	margin-bottom: 0.5rem;
}

.afloral-footer__menu a {
	font-size: var(--font-size--paragraph);
}

.afloral-footer__newsletter {
	text-align: center;
	min-width: 0;
	width: 100%;
}

.afloral-footer__newsletter h5 {
	margin-bottom: 0.5rem;
}

.afloral-footer__newsletter p {
	margin-bottom: 1rem;
}

.afloral-email-signup {
	width: 100%;
	max-width: 100%;
}

.afloral-email-signup__group {
	display: flex;
	border: 1px solid var(--color-border);
	border-radius: 2px;
	overflow: hidden;
	max-width: 100%;
	width: 100%;
	box-sizing: border-box;
}

.afloral-email-signup__input {
	flex: 1 1 auto;
	border: none;
	padding: 0.875rem 1rem;
	font-size: var(--font-size--paragraph);
	background: rgba(255, 255, 255, 0.78);
	color: var(--color-foreground);
	min-width: 0;
	width: 100%;
	box-sizing: border-box;
}

.afloral-email-signup__input:focus {
	outline: 2px solid var(--color-primary-hover);
	outline-offset: -2px;
}

.afloral-email-signup__button {
	flex: 0 1 auto;
	border-radius: 0;
	border: none;
	border-left: 1px solid var(--color-border);
	white-space: nowrap;
	text-transform: none;
	box-shadow: none;
	padding: 0.875rem 1rem;
	font-size: 0.8125rem;
}

@media (max-width: 749px) {
	.afloral-email-signup__group {
		flex-direction: column;
		border: none;
		gap: 0.625rem;
		overflow: visible;
	}

	.afloral-email-signup__input {
		border: 1px solid var(--color-border);
		border-radius: 2px;
	}

	.afloral-email-signup__button {
		width: 100%;
		border: 1px solid var(--color-primary-button-border);
		border-radius: var(--style-border-radius-buttons-primary);
		padding: var(--button-padding-block) var(--button-padding-inline);
		font-size: var(--font-size--paragraph);
	}
}

.afloral-footer__logo {
	margin: 1.25rem auto 0;
	text-align: center;
}

.afloral-footer__logo img,
.afloral-footer__logo .custom-logo {
	width: auto;
	height: auto;
	max-width: min(280px, 100%);
	margin: 0 auto;
}

.afloral-footer__social {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	margin-top: 1rem;
}

.afloral-footer__social a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	color: var(--color-foreground);
}

.afloral-footer__social a:hover {
	color: var(--color-primary-hover);
}

.afloral-footer__bottom {
	text-align: center;
	padding: 2rem 0 0;
	border-top: 1px solid var(--color-border);
	margin-top: 2rem;
	font-size: 0.8125rem;
}

.afloral-footer__bottom ul,
.afloral-footer__legal {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem 1.5rem;
	list-style: none;
	margin: 0 0 1rem;
	padding: 0;
}

.afloral-footer__payments {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	opacity: 0.7;
	font-size: 0.75rem;
}

/* ==========================================================================
   WooCommerce overrides
   ========================================================================== */

body.afloral-theme ul.products {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.25rem 0.875rem;
	width: 100%;
	margin: 0;
	padding: 0;
	float: none;
	clear: both;
	list-style: none;
}

body.afloral-theme ul.products::before,
body.afloral-theme ul.products::after {
	display: none;
	content: none;
}

body.afloral-theme ul.products li.product {
	width: 100% !important;
	max-width: 100% !important;
	float: none !important;
	clear: none !important;
	margin: 0 !important;
	min-width: 0;
}

body.afloral-theme ul.products .afloral-product-card__media {
	aspect-ratio: 1;
}

body.afloral-theme ul.products .afloral-product-card__media img {
	object-fit: contain;
	padding: 0.75rem;
	box-sizing: border-box;
}

body.afloral-theme ul.products .afloral-product-card__content {
	padding-top: 0.875rem;
}

@media (min-width: 750px) {
	body.afloral-theme ul.products {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 1.5rem 2.25rem;
	}
}

body.afloral-theme.woocommerce .woocommerce-loop-product__title {
	font-size: var(--font-size--paragraph);
	font-weight: 400;
	overflow-wrap: anywhere;
	hyphens: auto;
}

body.afloral-theme.woocommerce .price {
	font-weight: 500;
}

body.afloral-theme ul.products li.product .button {
	display: none;
}

body.afloral-theme.woocommerce:not(.single-product) #primary > .woocommerce {
	width: 100%;
	max-width: var(--page-width);
	margin-inline: auto;
	padding-inline: var(--page-gutter);
	box-sizing: border-box;
}

body.afloral-theme .site-main {
	flex: 1;
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

body.afloral-theme #primary {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

@media (hover: none) {
	.afloral-product-card:hover {
		transform: none;
	}
}

/* ==========================================================================
   Single Product (PDP)
   ========================================================================== */

body.afloral-theme.single-product #primary > .woocommerce {
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding: 0;
	overflow: visible;
}

body.afloral-theme.single-product .woocommerce-notices-wrapper {
	display: none;
}

.afloral-pdp__breadcrumbs {
	width: 100%;
	max-width: var(--page-width);
	margin: 0 auto 0.5rem;
	padding: 1.5rem var(--page-gutter) 1.25rem;
	box-sizing: border-box;
}

.afloral-pdp__breadcrumbs .woocommerce-breadcrumb {
	display: block;
	margin: 0;
	padding: 0;
	font-family: var(--font-subheading--family);
	font-size: 0.8125rem;
	font-weight: 400;
	color: rgba(33, 33, 33, 0.72);
	line-height: 1.5;
	overflow: visible;
	word-break: break-word;
}

.afloral-pdp__breadcrumb-sep {
	margin-inline: 0.35rem;
	color: rgba(33, 33, 33, 0.45);
}

.afloral-pdp__hero {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2rem;
	padding: 0.5rem var(--page-gutter) 3rem;
	box-sizing: border-box;
	max-width: var(--page-width);
	margin-inline: auto;
}

body.afloral-theme.single-product .afloral-pdp__gallery,
body.afloral-theme.single-product .woocommerce-product-gallery {
	float: none !important;
	width: 100%;
}

@media (min-width: 990px) {
	.afloral-pdp__hero {
		grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
		gap: 2.5rem 3.5rem;
		align-items: start;
	}
}

.afloral-pdp__gallery {
	position: relative;
	min-width: 0;
}

.afloral-pdp__gallery-viewport {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0.5rem;
}

.afloral-pdp__gallery:not(.afloral-pdp__gallery--multi) .afloral-pdp__gallery-viewport {
	grid-template-columns: minmax(0, 1fr);
}

.afloral-pdp__gallery-slide {
	margin: 0;
	background: #eceae4;
	overflow: hidden;
	aspect-ratio: 4 / 5;
}

.afloral-pdp__gallery-viewport .afloral-pdp__gallery-slide {
	display: block;
}

.afloral-pdp__gallery-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.afloral-pdp__sale-badge {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 1;
	background: var(--color-foreground);
	color: var(--color-white);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	padding: 0.35rem 0.6rem;
	border-radius: 2px;
}

.afloral-pdp__gallery-counter {
	position: absolute;
	right: 0.75rem;
	bottom: 0.75rem;
	margin: 0;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--color-foreground);
	background: rgba(255, 255, 255, 0.88);
	padding: 0.25rem 0.5rem;
	border-radius: 2px;
}

.afloral-pdp__gallery-thumbs {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	list-style: none;
	margin: 0.75rem 0 0;
	padding: 0;
}

.afloral-pdp__gallery-thumb {
	display: block;
	width: 4.5rem;
	height: 4.5rem;
	padding: 0;
	border: 1px solid transparent;
	background: #eceae4;
	cursor: pointer;
	overflow: hidden;
}

.afloral-pdp__gallery-thumb.is-active,
.afloral-pdp__gallery-thumb:hover {
	border-color: var(--color-foreground);
}

.afloral-pdp__gallery-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.afloral-pdp__summary {
	min-width: 0;
	padding-top: 0.5rem;
}

.afloral-pdp__summary .product_title {
	font-family: var(--font-heading--family);
	font-weight: 500;
	font-size: clamp(1.375rem, 2.5vw, 1.75rem);
	line-height: 1.25;
	margin: 0 0 0.5rem;
	letter-spacing: -0.01em;
}

.afloral-pdp__sku {
	margin: 0 0 1rem;
	font-family: var(--font-subheading--family);
	font-size: 0.8125rem;
	font-weight: 400;
	color: rgba(33, 33, 33, 0.6);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.afloral-pdp__summary .price {
	display: block;
	margin: 0 0 2rem;
	font-family: var(--font-heading--family);
	font-size: clamp(1.25rem, 2vw, 1.5rem);
	font-weight: 500;
	color: var(--color-foreground);
}

.afloral-pdp__summary .price del {
	opacity: 0.55;
	font-size: 0.9em;
	margin-right: 0.35rem;
}

.afloral-pdp__summary .price ins {
	text-decoration: none;
}

.afloral-pdp__cart {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	margin: 0 0 1.25rem;
}

.afloral-pdp__cart-notice {
	margin: 0;
	font-size: 0.8125rem;
	line-height: 1.45;
	color: #b42318;
}

.afloral-pdp__quantity {
	display: inline-flex;
	align-items: stretch;
	align-self: flex-start;
	border: 1px solid var(--color-border);
	background: var(--color-white);
	border-radius: 2px;
	overflow: hidden;
}

.afloral-pdp__quantity-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.75rem;
	border: none;
	background: transparent;
	color: var(--color-foreground);
	font-size: 1.125rem;
	line-height: 1;
	cursor: pointer;
	padding: 0;
}

.afloral-pdp__quantity-btn:hover {
	color: var(--color-primary-hover);
}

.afloral-pdp__quantity .qty,
.afloral-pdp__quantity-input {
	width: 3rem;
	min-width: 3rem;
	border: none;
	border-left: 1px solid var(--color-border);
	border-right: 1px solid var(--color-border);
	text-align: center;
	font-family: var(--font-body--family);
	font-size: 0.9375rem;
	font-weight: 500;
	padding: 0.875rem 0;
	-moz-appearance: textfield;
	appearance: textfield;
	background: transparent;
}

.afloral-pdp__quantity .qty::-webkit-outer-spin-button,
.afloral-pdp__quantity .qty::-webkit-inner-spin-button,
.afloral-pdp__quantity-input::-webkit-outer-spin-button,
.afloral-pdp__quantity-input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.afloral-pdp__add-to-cart {
	width: 100%;
	justify-content: center;
	gap: 0.625rem;
	padding-block: 1.125rem;
	font-size: 0.8125rem;
	letter-spacing: 0.1em;
}

.afloral-pdp__add-to-cart svg {
	flex-shrink: 0;
}

.afloral-pdp__wishlist-wrap {
	margin: 0.25rem 0 1.5rem;
}

.afloral-pdp__wishlist {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	position: static;
	width: auto;
	height: auto;
	padding: 0;
	background: none;
	border: none;
	box-shadow: none;
	font-family: var(--font-subheading--family);
	font-size: 0.875rem;
	font-weight: 400;
	text-transform: none;
	letter-spacing: normal;
	color: var(--color-foreground);
	cursor: pointer;
}

.afloral-pdp__wishlist:hover {
	color: var(--color-primary-hover);
	background: none;
}

.afloral-pdp__wishlist.is-active {
	color: var(--color-sage);
}

.afloral-pdp__wishlist.is-active .afloral-pdp__wishlist-label::before {
	content: attr(data-remove-label);
}

.afloral-pdp__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.625rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.afloral-pdp__badge {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	padding: 0.5rem 0.75rem;
	border: 1px solid var(--color-border);
	border-radius: 2px;
	font-family: var(--font-subheading--family);
	font-size: 0.6875rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-foreground);
	background: transparent;
}

.afloral-pdp__badge svg {
	flex-shrink: 0;
}

.afloral-pdp__badge--alert {
	color: #b42318;
	border-color: rgba(180, 35, 24, 0.35);
}

.afloral-pdp__description {
	padding-block: 2.5rem 1rem;
	border-top: 1px solid var(--color-border);
}

.afloral-pdp__description-inner {
	max-width: 52rem;
	font-family: var(--font-subheading--family);
	font-size: 0.9375rem;
	line-height: 1.65;
	color: rgba(33, 33, 33, 0.88);
}

.afloral-pdp__description-inner ul {
	margin: 1rem 0;
	padding-left: 1.25rem;
}

.afloral-pdp__description-inner li {
	margin-bottom: 0.35rem;
}

.afloral-pdp__trust {
	display: flex;
	flex-wrap: wrap;
	gap: 1.5rem 2.5rem;
	padding-bottom: 3rem;
	font-family: var(--font-heading--family);
	font-size: 1rem;
	font-weight: 500;
}

.afloral-pdp__trust-item {
	margin: 0;
}

body.afloral-theme.single-product .related.products {
	padding-block: 2rem 4rem;
	border-top: 1px solid var(--color-border);
}

body.afloral-theme.single-product .related.products > h2 {
	font-family: var(--font-heading--family);
	font-weight: 500;
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	text-align: center;
	margin: 0 0 2rem;
	letter-spacing: -0.01em;
}

body.afloral-theme.single-product .related.products .afloral-product-grid,
body.afloral-theme.single-product .related.products ul.products {
	max-width: var(--page-width);
	margin-inline: auto;
	padding-inline: var(--page-gutter);
	box-sizing: border-box;
}

@media (max-width: 749px) {
	.afloral-pdp__gallery-viewport {
		grid-template-columns: minmax(0, 1fr);
	}

	.afloral-pdp__gallery--multi .afloral-pdp__gallery-slide + .afloral-pdp__gallery-slide {
		display: none;
	}
}

/* ==========================================================================
   Checkout (WooCommerce Blocks + classic)
   ========================================================================== */

body.afloral-theme.woocommerce-checkout {
	background: var(--color-background);
}

body.afloral-theme.woocommerce-checkout .site-main,
body.afloral-theme.woocommerce-checkout #primary,
body.afloral-theme.woocommerce-checkout article {
	width: 100%;
	max-width: 100%;
	min-width: 0;
}

body.afloral-theme.woocommerce-checkout .site-main {
	flex: 1;
	padding-block: 2rem 4rem;
}

body.afloral-theme.woocommerce-checkout #secondary {
	display: none;
}

body.afloral-theme.woocommerce-checkout .entry-header,
body.afloral-theme.afloral-checkout-page .entry-header {
	display: none;
}

body.afloral-theme.woocommerce-checkout .entry-content,
body.afloral-theme.woocommerce-checkout #primary > .woocommerce {
	width: 100%;
	max-width: 72rem;
	margin-inline: auto;
	padding-inline: var(--page-gutter);
	box-sizing: border-box;
}

body.afloral-theme.woocommerce-checkout .entry-content > *,
body.afloral-theme.woocommerce-checkout .is-layout-constrained > *,
body.afloral-theme.woocommerce-checkout .is-layout-flow > * {
	max-width: 100% !important;
	width: 100% !important;
	margin-inline: 0 !important;
}

body.afloral-theme.woocommerce-checkout .wp-block-woocommerce-checkout,
body.afloral-theme.woocommerce-checkout .wc-block-checkout {
	container-type: normal;
	width: 100%;
	max-width: 100%;
	margin: 0;
	padding-top: 0;
	font-family: var(--font-body--family);
	color: var(--color-foreground);
}

body.afloral-theme.woocommerce-checkout .wc-block-components-sidebar-layout {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr);
	gap: 2rem;
	align-items: start;
	margin: 0 !important;
	flex-wrap: nowrap !important;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
body.afloral-theme.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main {
	grid-column: 1;
	grid-row: 1;
	width: 100% !important;
	min-width: 0;
	padding: 0 !important;
	margin: 0 !important;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
body.afloral-theme.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar {
	grid-column: 1;
	grid-row: 2;
	width: 100% !important;
	min-width: 0;
	padding: 0 !important;
	margin: 0 !important;
}

@media (min-width: 900px) {
	body.afloral-theme.woocommerce-checkout .wc-block-components-sidebar-layout {
		grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
		gap: 2.5rem 3rem;
	}

	body.afloral-theme.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-main,
	body.afloral-theme.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__main {
		grid-column: 1;
		grid-row: 1;
	}

	body.afloral-theme.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-components-sidebar,
	body.afloral-theme.woocommerce-checkout .wc-block-components-sidebar-layout .wc-block-checkout__sidebar {
		grid-column: 2;
		grid-row: 1;
	}
}

body.afloral-theme.woocommerce-checkout .wc-block-components-title,
body.afloral-theme.woocommerce-checkout .wc-block-checkout__title,
body.afloral-theme.woocommerce-checkout .wp-block-woocommerce-checkout h1 {
	font-family: var(--font-heading--family) !important;
	font-size: clamp(1.5rem, 3vw, 2rem) !important;
	font-weight: 500 !important;
	line-height: 1.2 !important;
	letter-spacing: -0.01em !important;
	color: var(--color-foreground-heading) !important;
	margin: 0 0 1.75rem !important;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-checkout-step__title,
body.afloral-theme.woocommerce-checkout .wc-block-components-checkout-step__heading {
	font-family: var(--font-heading--family);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-foreground);
	margin: 0 0 1rem;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-checkout-step {
	margin-bottom: 2rem;
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--color-border);
}

body.afloral-theme.woocommerce-checkout .wc-block-components-checkout-step:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-text-input label,
body.afloral-theme.woocommerce-checkout .wc-block-components-checkbox label,
body.afloral-theme.woocommerce-checkout .wc-block-components-radio-control__label {
	font-family: var(--font-subheading--family);
	font-size: 0.8125rem;
	font-weight: 400;
	color: rgba(33, 33, 33, 0.8);
}

body.afloral-theme.woocommerce-checkout .wc-block-components-text-input input,
body.afloral-theme.woocommerce-checkout .wc-block-components-text-input.is-active input,
body.afloral-theme.woocommerce-checkout .wc-block-components-combobox .wc-block-components-combobox-control input,
body.afloral-theme.woocommerce-checkout .wc-block-components-form .input-text,
body.afloral-theme.woocommerce-checkout form.checkout .input-text,
body.afloral-theme.woocommerce-checkout form.checkout select,
body.afloral-theme.woocommerce-checkout form.checkout textarea {
	font-family: var(--font-body--family);
	font-size: 0.9375rem;
	color: var(--color-foreground);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 2px;
	padding: 0.875rem 1rem;
	box-shadow: none;
	min-height: 3rem;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-text-input input:focus,
body.afloral-theme.woocommerce-checkout form.checkout .input-text:focus,
body.afloral-theme.woocommerce-checkout form.checkout select:focus,
body.afloral-theme.woocommerce-checkout form.checkout textarea:focus {
	border-color: var(--color-foreground);
	outline: 2px solid rgba(33, 33, 33, 0.12);
	outline-offset: 0;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-address-card {
	background: rgba(255, 255, 255, 0.72);
	border: 1px solid var(--color-border);
	border-radius: 2px;
	padding: 1rem 1.125rem;
	font-family: var(--font-subheading--family);
	font-size: 0.875rem;
	line-height: 1.5;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-address-card__edit {
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--color-foreground);
	text-decoration: underline;
	text-underline-offset: 2px;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-radio-control__option,
body.afloral-theme.woocommerce-checkout .wc-block-components-checkbox {
	border: 1px solid var(--color-border);
	border-radius: 2px;
	padding: 0.875rem 1rem;
	background: var(--color-white);
}

body.afloral-theme.woocommerce-checkout .wc-block-components-radio-control__option-checked,
body.afloral-theme.woocommerce-checkout .wc-block-components-radio-control__option:hover {
	border-color: var(--color-foreground);
}

body.afloral-theme.woocommerce-checkout .wc-block-components-sidebar,
body.afloral-theme.woocommerce-checkout .wc-block-checkout__sidebar {
	position: static;
}

@media (min-width: 900px) {
	body.afloral-theme.woocommerce-checkout .wc-block-components-sidebar,
	body.afloral-theme.woocommerce-checkout .wc-block-checkout__sidebar {
		position: sticky;
		top: calc(var(--header-height) + 1rem);
		align-self: start;
	}
}

body.afloral-theme.woocommerce-checkout .wc-block-components-order-summary,
body.afloral-theme.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
	background: var(--color-cream);
	border: 1px solid var(--color-border);
	border-radius: 2px;
	padding: 1.25rem 1.5rem;
	box-sizing: border-box;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-order-summary__button-text,
body.afloral-theme.woocommerce-checkout .wc-block-cart__sidebar-title,
body.afloral-theme.woocommerce-checkout .wc-block-components-panel__button {
	font-family: var(--font-heading--family);
	font-size: 1rem;
	font-weight: 500;
	color: var(--color-foreground);
}

body.afloral-theme.woocommerce-checkout .wc-block-components-order-summary-item {
	display: grid;
	grid-template-columns: 4.25rem minmax(0, 1fr) auto;
	gap: 0.35rem 0.75rem;
	align-items: start;
	padding: 1rem 0;
	border-bottom: 1px solid var(--color-border);
}

body.afloral-theme.woocommerce-checkout .wc-block-components-order-summary-item:last-child {
	border-bottom: none;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-order-summary-item__image {
	grid-column: 1;
	grid-row: 1 / span 2;
	position: relative;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-order-summary-item__image img {
	width: 4.25rem;
	height: 4.25rem;
	object-fit: cover;
	background: #eceae4;
	border-radius: 2px;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-order-summary-item__description,
body.afloral-theme.woocommerce-checkout .wc-block-components-order-summary-item__product {
	grid-column: 2;
	grid-row: 1;
	min-width: 0;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-order-summary-item__total-price {
	grid-column: 3;
	grid-row: 1;
	white-space: nowrap;
	font-size: 0.875rem;
	font-weight: 500;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-product-name {
	font-family: var(--font-subheading--family);
	font-size: 0.8125rem;
	font-weight: 400;
	line-height: 1.4;
	overflow-wrap: anywhere;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-order-summary-item__quantity-badge,
body.afloral-theme.woocommerce-checkout .wc-block-components-product-badge {
	position: absolute;
	top: -0.35rem;
	right: -0.35rem;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1.25rem;
	height: 1.25rem;
	padding: 0 0.25rem;
	background: var(--color-foreground);
	color: var(--color-white);
	font-size: 0.625rem;
	font-weight: 600;
	border-radius: 999px;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-product-metadata,
body.afloral-theme.woocommerce-checkout .wc-block-components-product-metadata__description {
	grid-column: 2;
	font-size: 0.75rem;
	line-height: 1.45;
	color: rgba(33, 33, 33, 0.6);
}

body.afloral-theme.woocommerce-checkout .wc-block-checkout__terms {
	margin: 1.5rem 0;
	font-size: 0.8125rem;
	line-height: 1.5;
	color: rgba(33, 33, 33, 0.75);
}

body.afloral-theme.woocommerce-checkout .wc-block-checkout__actions {
	margin: 0 0 1.5rem;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-totals-item,
body.afloral-theme.woocommerce-checkout .wc-block-components-totals-footer-item {
	font-family: var(--font-subheading--family);
	font-size: 0.875rem;
	padding: 0.5rem 0;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-totals-footer-item {
	font-size: 1rem;
	font-weight: 600;
	padding-top: 1rem;
	margin-top: 0.5rem;
	border-top: 1px solid var(--color-border);
}

body.afloral-theme.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
	font-size: 1.125rem;
	font-weight: 600;
}

body.afloral-theme.woocommerce-checkout .wc-block-components-checkout-place-order-button,
body.afloral-theme.woocommerce-checkout #place_order,
body.afloral-theme.woocommerce-checkout form.checkout .button.alt {
	width: 100%;
	font-family: var(--font-body--family);
	font-size: 0.8125rem;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.08em;
	padding: 1.125rem 1.5rem;
	background: var(--color-primary-button-background);
	color: var(--color-primary-button-text);
	border: 1px solid var(--color-primary-button-border);
	border-radius: var(--style-border-radius-buttons-primary);
	box-shadow: var(--shadow-button);
}

body.afloral-theme.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
body.afloral-theme.woocommerce-checkout #place_order:hover,
body.afloral-theme.woocommerce-checkout form.checkout .button.alt:hover {
	background: var(--color-primary-button-hover-background);
	color: var(--color-primary-button-hover-text);
	border-color: var(--color-primary-button-hover-border);
}

body.afloral-theme.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 2px;
	font-size: 0.875rem;
}

body.afloral-theme.woocommerce-checkout form.checkout {
	font-family: var(--font-body--family);
}

body.afloral-theme.woocommerce-checkout form.checkout h3 {
	font-family: var(--font-heading--family);
	font-size: 1rem;
	font-weight: 500;
	margin: 0 0 1rem;
}

body.afloral-theme.woocommerce-checkout #order_review {
	background: var(--color-cream);
	border: 1px solid var(--color-border);
	border-radius: 2px;
	padding: 1.25rem 1.5rem;
}

body.afloral-theme.woocommerce-checkout .woocommerce-checkout-review-order-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

body.afloral-theme.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.afloral-theme.woocommerce-checkout .woocommerce-checkout-review-order-table td {
	padding: 0.75rem 0;
	border-bottom: 1px solid var(--color-border);
}

body.afloral-theme.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total th,
body.afloral-theme.woocommerce-checkout .woocommerce-checkout-review-order-table .order-total td {
	font-size: 1rem;
	font-weight: 600;
	border-bottom: none;
	padding-top: 1rem;
}

body.afloral-theme.woocommerce-checkout form.checkout {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2.5rem;
}

@media (min-width: 900px) {
	body.afloral-theme.woocommerce-checkout form.checkout {
		grid-template-columns: minmax(0, 1.1fr) minmax(18rem, 0.9fr);
		align-items: start;
	}

	body.afloral-theme.woocommerce-checkout form.checkout #customer_details {
		grid-column: 1;
	}

	body.afloral-theme.woocommerce-checkout form.checkout #order_review_heading,
	body.afloral-theme.woocommerce-checkout form.checkout #order_review {
		grid-column: 2;
		grid-row: 1 / span 2;
	}
}

/* ==========================================================================
   Archives & categories
   ========================================================================== */

body.afloral-theme.afloral-archive-page:not(.home):not(.front-page) #primary.site-main,
body.afloral-theme.tax-product_cat #primary.site-main {
	padding-block: 2rem 4rem;
	padding-inline: var(--page-gutter);
	box-sizing: border-box;
}

body.afloral-theme.home #primary.site-main,
body.afloral-theme.front-page #primary.site-main {
	padding-inline: 0;
}

body.afloral-theme.afloral-archive-page .afloral-archive__inner,
body.afloral-theme.tax-product_cat .afloral-archive__inner {
	padding-inline: 0;
}

body.afloral-theme.afloral-archive-page #secondary,
body.afloral-theme.tax-product_cat #secondary {
	display: none;
}

.afloral-archive__inner {
	width: 100%;
	max-width: var(--page-width);
	margin-inline: auto;
	padding-inline: var(--page-gutter);
	box-sizing: border-box;
}

.afloral-archive__header {
	margin-bottom: 2rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--color-border);
}

body.afloral-theme .afloral-archive__title,
body.afloral-theme .afloral-archive-page .page-title,
body.afloral-theme.tax-product_cat .page-title {
	font-family: var(--font-heading--family);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--color-foreground-heading);
	margin: 0 0 0.5rem;
}

.afloral-archive__description {
	font-family: var(--font-subheading--family);
	font-size: 0.9375rem;
	line-height: 1.6;
	color: rgba(33, 33, 33, 0.75);
	max-width: 42rem;
}

.afloral-archive__list {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}

.afloral-archive-card {
	padding: 1.5rem 0;
	border-bottom: 1px solid var(--color-border);
}

.afloral-archive-card:last-child {
	border-bottom: none;
}

.afloral-archive-card__title {
	font-family: var(--font-heading--family);
	font-size: clamp(1.125rem, 2.2vw, 1.5rem);
	font-weight: 500;
	line-height: 1.3;
	margin: 0 0 0.5rem;
}

.afloral-archive-card__title a {
	color: var(--color-foreground);
	text-decoration: none;
}

.afloral-archive-card__title a:hover {
	color: var(--color-primary-hover);
}

.afloral-archive-card__meta {
	font-family: var(--font-subheading--family);
	font-size: 0.8125rem;
	color: rgba(33, 33, 33, 0.6);
	margin-bottom: 1rem;
}

.afloral-archive-card__meta > * {
	display: inline;
}

.afloral-archive-card__meta > * + *::before {
	content: "·";
	margin-inline: 0.4rem;
}

.afloral-archive-card__media {
	display: block;
	margin-bottom: 1rem;
	overflow: hidden;
	border-radius: 2px;
	background: #eceae4;
	max-width: 28rem;
}

.afloral-archive-card__media img {
	width: 100%;
	height: auto;
	display: block;
}

.afloral-archive-card__excerpt {
	font-family: var(--font-subheading--family);
	font-size: 0.9375rem;
	line-height: 1.65;
	color: rgba(33, 33, 33, 0.85);
	margin-bottom: 1rem;
	max-width: 48rem;
}

.afloral-archive-card__excerpt p {
	margin: 0;
}

.afloral-archive-card__footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.afloral-archive-card__more {
	font-family: var(--font-subheading--family);
	font-size: 0.8125rem;
	font-weight: 500;
	text-decoration: underline;
	text-underline-offset: 2px;
	color: var(--color-foreground);
}

.afloral-archive-card__more:hover {
	color: var(--color-primary-hover);
}

.afloral-archive-card .entry-footer .cat-links,
.afloral-archive-card .entry-footer .tags-links {
	font-size: 0.8125rem;
	color: rgba(33, 33, 33, 0.65);
}

.afloral-archive__pagination {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
}

.afloral-archive__pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 1rem;
	font-family: var(--font-subheading--family);
	font-size: 0.875rem;
}

.afloral-archive--products .woocommerce-pagination,
.afloral-archive--products .woocommerce-result-count {
	margin-top: 2rem;
	font-family: var(--font-subheading--family);
	font-size: 0.875rem;
}

body.afloral-theme.tax-product_cat .afloral-archive__inner > .products,
body.afloral-theme.tax-product_cat .afloral-archive__inner > ul.products {
	margin-top: 0;
}

body.afloral-theme .no-results {
	padding: 3rem 0;
	text-align: center;
}

body.afloral-theme .no-results .page-title {
	font-family: var(--font-heading--family);
	font-size: clamp(1.25rem, 2.5vw, 1.75rem);
	font-weight: 500;
	margin-bottom: 0.75rem;
}

/* ==========================================================================
   Search results
   ========================================================================== */

body.afloral-theme.afloral-search-page #primary.site-main {
	padding-block: 2rem 4rem;
	padding-inline: var(--page-gutter);
	box-sizing: border-box;
}

body.afloral-theme.afloral-search-page #secondary {
	display: none;
}

body.afloral-theme.afloral-search-page .woocommerce-notices-wrapper,
body.afloral-theme.afloral-search-page .woocommerce-message,
body.afloral-theme.afloral-search-page .woocommerce-info,
body.afloral-theme.afloral-search-page .woocommerce-error {
	display: none !important;
}

body.afloral-theme.afloral-search-page .afloral-search__content {
	width: 100%;
	max-width: var(--page-width);
	margin-inline: auto;
	padding-inline: 0;
	box-sizing: border-box;
}

body.afloral-theme.afloral-search-page .afloral-search__breadcrumbs {
	margin: 0 0 1rem;
	padding: 0;
}

body.afloral-theme.afloral-search-page .afloral-search__breadcrumbs .woocommerce-breadcrumb {
	margin: 0;
	padding: 0;
	font-family: var(--font-subheading--family);
	font-size: 0.8125rem;
	font-weight: 400;
	color: rgba(33, 33, 33, 0.72);
	line-height: 1.5;
}

body.afloral-theme.afloral-search-page .afloral-search__breadcrumbs .afloral-pdp__breadcrumb-sep {
	margin-inline: 0.35rem;
	color: rgba(33, 33, 33, 0.45);
}

body.afloral-theme.afloral-search-page .afloral-search__header {
	margin-bottom: 1.5rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--color-border);
}

body.afloral-theme.afloral-search-page .afloral-search__title {
	font-family: var(--font-heading--family);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--color-foreground-heading);
	margin: 0;
}

body.afloral-theme.afloral-search-page .afloral-search__query {
	font-weight: 500;
}

body.afloral-theme.afloral-search-page .afloral-search__toolbar {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
	margin: 0;
}

body.afloral-theme.afloral-search-page .afloral-search__toolbar .woocommerce-before-shop-loop {
	display: contents;
}

body.afloral-theme.afloral-search-page .woocommerce-result-count {
	font-family: var(--font-subheading--family);
	font-size: 0.875rem;
	color: rgba(33, 33, 33, 0.72);
	margin: 0;
}

body.afloral-theme.afloral-search-page .woocommerce-ordering {
	margin: 0 0 2rem;
}

body.afloral-theme.afloral-search-page .woocommerce-ordering select {
	appearance: none;
	-webkit-appearance: none;
	font-family: var(--font-body--family);
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-foreground);
	background-color: var(--color-white);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23212121' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 0.875rem center;
	background-size: 0.75rem;
	border: 1px solid var(--color-border);
	border-radius: 2px;
	padding: 0.625rem 2.5rem 0.625rem 0.875rem;
	min-height: 2.5rem;
	min-width: 11rem;
	cursor: pointer;
	box-shadow: none;
}

body.afloral-theme.afloral-search-page .woocommerce-ordering select:focus {
	border-color: var(--color-foreground);
	outline: 2px solid rgba(33, 33, 33, 0.12);
	outline-offset: 0;
}

body.afloral-theme.afloral-search-page ul.products {
	margin-top: 0;
}

body.afloral-theme.afloral-search-page .woocommerce-pagination {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-border);
	font-family: var(--font-subheading--family);
	font-size: 0.875rem;
}

/* ==========================================================================
   My Account
   ========================================================================== */

body.afloral-theme.woocommerce-account #primary.site-main {
	padding-block: 2rem 4rem;
	padding-inline: var(--page-gutter);
	box-sizing: border-box;
}

body.afloral-theme.woocommerce-account #secondary {
	display: none;
}

body.afloral-theme.woocommerce-account article {
	width: 100%;
	max-width: var(--page-width);
	margin-inline: auto;
}

body.afloral-theme.woocommerce-account .entry-header {
	margin-bottom: 2rem;
	padding-bottom: 1.25rem;
	border-bottom: 1px solid var(--color-border);
}

body.afloral-theme.woocommerce-account .entry-title {
	font-family: var(--font-heading--family);
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: -0.01em;
	color: var(--color-foreground-heading);
	margin: 0;
}

body.afloral-theme.woocommerce-account .entry-footer {
	display: none;
}

body.afloral-theme.woocommerce-account .entry-content {
	font-family: var(--font-body--family);
	font-size: 0.9375rem;
	line-height: var(--line-height--body-loose);
	color: var(--color-foreground);
}

body.afloral-theme.woocommerce-account .entry-content > .woocommerce {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2rem;
	width: 100%;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-navigation {
	float: none;
	width: auto;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content {
	float: none;
	width: auto;
	min-width: 0;
}

@media (min-width: 900px) {
	body.afloral-theme.woocommerce-account .entry-content > .woocommerce:has(.woocommerce-MyAccount-navigation) {
		grid-template-columns: minmax(11rem, 14rem) minmax(0, 1fr);
		gap: 2.5rem 3.5rem;
		align-items: start;
	}
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-navigation li {
	margin: 0;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 0.875rem 0;
	border-bottom: 1px solid var(--color-border);
	font-family: var(--font-subheading--family);
	font-size: 0.875rem;
	font-weight: 400;
	line-height: 1.4;
	color: rgba(33, 33, 33, 0.82);
	text-decoration: none;
	transition: color var(--hover-transition-duration) var(--hover-transition-timing);
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-navigation li:first-child a {
	padding-top: 0;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
	color: var(--color-primary-hover);
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
	font-weight: 600;
	color: var(--color-foreground);
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content p {
	margin: 0 0 1rem;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content p:last-child {
	margin-bottom: 0;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content a {
	color: var(--color-foreground);
	text-decoration: underline;
	text-underline-offset: 2px;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content a:hover {
	color: var(--color-primary-hover);
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content h2,
body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content h3 {
	font-family: var(--font-heading--family);
	font-size: 1.125rem;
	font-weight: 500;
	line-height: 1.3;
	color: var(--color-foreground-heading);
	margin: 0 0 1rem;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content fieldset {
	border: 1px solid var(--color-border);
	border-radius: 2px;
	padding: 1.25rem 1.5rem;
	margin: 0 0 1.5rem;
	background: rgba(255, 255, 255, 0.55);
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content legend {
	font-family: var(--font-heading--family);
	font-size: 1rem;
	font-weight: 500;
	padding: 0 0.25rem;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content label {
	display: block;
	font-family: var(--font-subheading--family);
	font-size: 0.8125rem;
	font-weight: 400;
	color: rgba(33, 33, 33, 0.8);
	margin-bottom: 0.375rem;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content .input-text,
body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content select,
body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content textarea,
body.afloral-theme.woocommerce-account .woocommerce-form-login .input-text,
body.afloral-theme.woocommerce-account .woocommerce-form-register .input-text {
	width: 100%;
	font-family: var(--font-body--family);
	font-size: 0.9375rem;
	color: var(--color-foreground);
	background: var(--color-white);
	border: 1px solid var(--color-border);
	border-radius: 2px;
	padding: 0.875rem 1rem;
	box-shadow: none;
	min-height: 3rem;
	box-sizing: border-box;
	margin-bottom: 1rem;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content textarea {
	min-height: 6rem;
	resize: vertical;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content .input-text:focus,
body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content select:focus,
body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content textarea:focus,
body.afloral-theme.woocommerce-account .woocommerce-form-login .input-text:focus,
body.afloral-theme.woocommerce-account .woocommerce-form-register .input-text:focus {
	border-color: var(--color-foreground);
	outline: 2px solid rgba(33, 33, 33, 0.12);
	outline-offset: 0;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content .form-row {
	margin-bottom: 0.5rem;
}

body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Button,
body.afloral-theme.woocommerce-account .woocommerce-MyAccount-content button[type="submit"],
body.afloral-theme.woocommerce-account .woocommerce-form-login button[type="submit"],
body.afloral-theme.woocommerce-account .woocommerce-form-register button[type="submit"] {
	margin-top: 0.5rem;
}

body.afloral-theme.woocommerce-account table.shop_table {
	width: 100%;
	border-collapse: collapse;
	font-family: var(--font-subheading--family);
	font-size: 0.875rem;
	margin: 0 0 1.5rem;
}

body.afloral-theme.woocommerce-account table.shop_table thead th {
	font-weight: 500;
	color: var(--color-foreground-heading);
	background: rgba(255, 255, 255, 0.65);
}

body.afloral-theme.woocommerce-account table.shop_table th,
body.afloral-theme.woocommerce-account table.shop_table td {
	padding: 0.875rem 1rem;
	border-bottom: 1px solid var(--color-border);
	text-align: left;
	vertical-align: middle;
}

body.afloral-theme.woocommerce-account table.shop_table .woocommerce-orders-table__cell-order-actions a {
	text-decoration: none;
	margin-right: 0.5rem;
}

body.afloral-theme.woocommerce-account .woocommerce-pagination {
	margin-top: 1.5rem;
	font-family: var(--font-subheading--family);
	font-size: 0.875rem;
}

body.afloral-theme.woocommerce-account .woocommerce-Addresses {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
	gap: 1.25rem;
	margin-top: 1rem;
}

body.afloral-theme.woocommerce-account .woocommerce-Address {
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid var(--color-border);
	border-radius: 2px;
	padding: 1.25rem 1.5rem;
}

body.afloral-theme.woocommerce-account .woocommerce-Address-title h2 {
	font-size: 1rem;
	margin-bottom: 0.75rem;
}

body.afloral-theme.woocommerce-account .woocommerce-Address address {
	font-style: normal;
	font-family: var(--font-subheading--family);
	font-size: 0.875rem;
	line-height: 1.6;
	color: rgba(33, 33, 33, 0.85);
}

body.afloral-theme.woocommerce-account .woocommerce-message,
body.afloral-theme.woocommerce-account .woocommerce-info,
body.afloral-theme.woocommerce-account .woocommerce-error {
	font-family: var(--font-subheading--family);
	font-size: 0.875rem;
	padding: 0.875rem 1rem;
	margin: 0 0 1.5rem;
	border-radius: 2px;
	border: 1px solid var(--color-border);
	background: rgba(255, 255, 255, 0.72);
}

body.afloral-theme.woocommerce-account .woocommerce-error {
	border-color: rgba(180, 60, 60, 0.35);
	background: rgba(255, 245, 245, 0.9);
}

body.afloral-theme.woocommerce-account #customer_login {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 2rem;
}

@media (min-width: 750px) {
	body.afloral-theme.woocommerce-account #customer_login {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 2.5rem;
	}
}

body.afloral-theme.woocommerce-account #customer_login .u-column1,
body.afloral-theme.woocommerce-account #customer_login .u-column2 {
	float: none;
	width: auto;
}

body.afloral-theme.woocommerce-account .woocommerce-form-login,
body.afloral-theme.woocommerce-account .woocommerce-form-register {
	background: rgba(255, 255, 255, 0.65);
	border: 1px solid var(--color-border);
	border-radius: 2px;
	padding: 1.5rem;
}

body.afloral-theme.woocommerce-account .woocommerce-form-login h2,
body.afloral-theme.woocommerce-account .woocommerce-form-register h2 {
	font-family: var(--font-heading--family);
	font-size: 1.125rem;
	font-weight: 500;
	margin: 0 0 1.25rem;
}

body.afloral-theme.woocommerce-account .woocommerce-form-login .woocommerce-form__label-for-checkbox {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.8125rem;
	margin-bottom: 1rem;
}

body.afloral-theme.woocommerce-account .woocommerce-form-login .lost_password {
	font-size: 0.8125rem;
	margin-top: 0.75rem;
}

@media (max-width: 899px) {
	body.afloral-theme.woocommerce-account .woocommerce-MyAccount-navigation {
		padding-bottom: 1.25rem;
		border-bottom: 1px solid var(--color-border);
	}

	body.afloral-theme.woocommerce-account .woocommerce-MyAccount-navigation ul {
		display: flex;
		flex-wrap: wrap;
		gap: 0.5rem 1.25rem;
	}

	body.afloral-theme.woocommerce-account .woocommerce-MyAccount-navigation li a {
		border-bottom: none;
		padding: 0;
	}

	body.afloral-theme.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
		text-decoration: underline;
		text-underline-offset: 3px;
	}
}
