/**
Theme Name: ArtsyChimes
Theme URI: https://artsychimes.com/
Author: Artsy Chimes
Author URI: https://artsychimes.com/
Description: Artsy Chimes — a cute, professional & premium "soft-pop" Astra child theme for an artist-owned store (Konkani magnets, fridge magnets, brooch pins, t-shirts, art prints). Heavily rounded UI, animated hero banner, candy gradients and rich motion. Rebrands Astra via global CSS tokens and ships WooCommerce UI/UX enhancements through update-safe hooks (no parent template overrides).
Version: 3.1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: artsychimes
Template: astra
*/

/* ==========================================================================
   ARTSY CHIMES — DESIGN TOKENS
   Single source of truth for the brand. Editing these variables re-skins
   the whole storefront, because they also drive Astra's global colors.
   ========================================================================== */
:root {
	/* Brand palette */
	--ac-cream:        #FFF9F4; /* page canvas */
	--ac-cream-deep:   #F7EFE7; /* alt sections */
	--ac-white:        #FFFFFF;
	--ac-ink:          #2A211E; /* headings */
	--ac-ink-soft:     #655A55; /* body text */
	--ac-terracotta:   #FF7D86; /* decorative / large display only */
	--ac-terracotta-d: #2A211E; /* button bg */
	--ac-terracotta-dd:#111111; /* deep hover */
	--ac-link:         #50613F; /* accessible olive links */
	--ac-sage:         #6E7F55; /* accent */
	--ac-sage-d:       #50613F;
	--ac-mustard:      #FFD36B; /* highlight */
	--ac-blush:        #FDE2E4; /* soft cute accent */
	--ac-border:       #E9D8CD; /* warm hairline */
	--ac-success:      #50613F;
	--ac-danger:       #C84E5C;

	/* Typography */
	--ac-font-display: "Fraunces", Georgia, "Times New Roman", serif;
	--ac-font-body:    "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

	/* Shape & depth — soft, rounded "soft-pop" theme */
	--ac-radius-sm: 10px;
	--ac-radius:    14px;
	--ac-radius-lg: 18px;
	--ac-radius-xl: 22px;
	--ac-radius-pill: 999px;
	--ac-shadow-sm: 0 4px 14px rgba(61, 64, 91, 0.07);
	--ac-shadow:    0 14px 34px rgba(42, 33, 30, 0.11);
	--ac-shadow-lg: 0 24px 54px rgba(42, 33, 30, 0.16);
	--ac-shadow-pop: 0 8px 0 rgba(42, 33, 30, 0.08);
	--ac-transition: 0.22s ease;
	--ac-ease-soft: 0.45s cubic-bezier(0.22, 1, 0.36, 1);

	/* Candy gradients */
	--ac-grad-warm:  linear-gradient(135deg, #FF7D86 0%, #FFB17D 100%);
	--ac-grad-fresh: linear-gradient(135deg, #DDE8D0 0%, #82936A 100%);
	--ac-grad-sun:   linear-gradient(135deg, #FCE0A6 0%, #F2CC8F 45%, #F2A65A 100%);
	--ac-grad-candy: linear-gradient(120deg, #F4C9C0 0%, #F2CC8F 35%, #A7D8C4 70%, #B8C0F0 100%);
	--ac-grad-hero:  linear-gradient(180deg, #FDE2E4 0%, #FFF9F4 100%);

	/* ---- Map brand palette onto Astra's global color system ---- */
	--ast-global-color-0: var(--ac-link);          /* links / primary (AA contrast) */
	--ast-global-color-1: var(--ac-terracotta-dd); /* link hover */
	--ast-global-color-2: var(--ac-ink);          /* headings */
	--ast-global-color-3: var(--ac-ink-soft);     /* body text */
	--ast-global-color-4: var(--ac-cream);        /* light background */
	--ast-global-color-5: var(--ac-white);        /* white background */
	--ast-global-color-6: var(--ac-border);       /* borders */
	--ast-global-color-7: var(--ac-sage);         /* accent */
	--ast-global-color-8: var(--ac-mustard);      /* accent 2 */
}

/* ==========================================================================
   BASE
   ========================================================================== */
body {
	font-family: var(--ac-font-body);
	color: var(--ac-ink-soft);
	background-color: var(--ac-cream);
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6,
.entry-title,
.site-title {
	font-family: var(--ac-font-display);
	color: var(--ac-ink);
	font-optical-sizing: auto;
	letter-spacing: -0.01em;
}

a {
	color: var(--ac-link);
	transition: color var(--ac-transition);
}
a:hover,
a:focus {
	color: var(--ac-terracotta-dd);
}

/* Brand the Astra nav links explicitly (Astra customizer can set hardcoded hex) */
.main-header-menu .menu-link,
.ast-builder-menu .menu-item > .menu-link,
.ast-header-navigation-arrow,
.site-footer a {
	color: var(--ac-ink);
}
.main-header-menu .menu-item:hover > .menu-link,
.ast-builder-menu .menu-item:hover > .menu-link,
.site-footer a:hover {
	color: var(--ac-link);
}

/* Screen-reader-only utility (fallback if parent stylesheet order shifts) */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	position: absolute !important;
	word-wrap: normal !important;
}

::selection {
	background: var(--ac-mustard);
	color: var(--ac-ink);
}

/* Subtle, on-brand scrollbar (desktop) */
@media (min-width: 922px) {
	* {
		scrollbar-width: thin;
		scrollbar-color: var(--ac-terracotta) var(--ac-cream-deep);
	}
	*::-webkit-scrollbar { width: 10px; height: 10px; }
	*::-webkit-scrollbar-track { background: var(--ac-cream-deep); }
	*::-webkit-scrollbar-thumb {
		background: var(--ac-terracotta);
		border-radius: var(--ac-radius-pill);
		border: 2px solid var(--ac-cream-deep);
	}
}

/* Keyboard accessibility: visible focus ring everywhere */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.ast-button:focus-visible,
[tabindex]:focus-visible {
	outline: 3px solid var(--ac-sage);
	outline-offset: 2px;
	border-radius: var(--ac-radius-sm);
}

/* Rounded form controls everywhere (carries the soft-pop look into forms) */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="url"],
select,
textarea,
.woocommerce form .form-row input.input-text,
.woocommerce-page form .form-row input.input-text,
.woocommerce form .form-row textarea,
.select2-container--default .select2-selection--single {
	border-radius: var(--ac-radius-sm) !important;
	border: 2px solid var(--ac-border);
	transition: border-color var(--ac-transition), box-shadow var(--ac-transition);
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
	border-color: var(--ac-sage);
	box-shadow: 0 0 0 3px rgba(129, 178, 154, 0.25);
}

/* ==========================================================================
   ANIMATION LIBRARY
   ========================================================================== */
@keyframes ac-float {
	0%, 100% { transform: translateY(0); }
	50%      { transform: translateY(-14px); }
}
@keyframes ac-float-slow {
	0%, 100% { transform: translateY(0) rotate(0deg); }
	50%      { transform: translateY(-22px) rotate(4deg); }
}
@keyframes ac-blob {
	0%, 100% { border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%; }
	33%      { border-radius: 60% 40% 38% 62% / 55% 60% 40% 45%; }
	66%      { border-radius: 38% 62% 55% 45% / 60% 38% 62% 40%; }
}
@keyframes ac-spin-slow {
	to { transform: rotate(360deg); }
}
@keyframes ac-gradient-pan {
	0%   { background-position: 0% 50%; }
	50%  { background-position: 100% 50%; }
	100% { background-position: 0% 50%; }
}
@keyframes ac-pop-in {
	0%   { opacity: 0; transform: scale(0.85) translateY(20px); }
	100% { opacity: 1; transform: scale(1) translateY(0); }
}
@keyframes ac-pulse {
	0%, 100% { transform: scale(1); }
	50%      { transform: scale(1.08); }
}
@keyframes ac-bob {
	0%, 100% { transform: translateY(0) rotate(-3deg); }
	50%      { transform: translateY(-8px) rotate(3deg); }
}
@keyframes ac-shine {
	0%   { transform: translateX(-130%) skewX(-20deg); }
	60%, 100% { transform: translateX(260%) skewX(-20deg); }
}

/* Utility animation hooks */
.ac-anim-float      { animation: ac-float 6s ease-in-out infinite; }
.ac-anim-float-slow { animation: ac-float-slow 9s ease-in-out infinite; }
.ac-anim-bob        { animation: ac-bob 4s ease-in-out infinite; }
.ac-anim-pulse      { animation: ac-pulse 2.6s ease-in-out infinite; }

@media (prefers-reduced-motion: reduce) {
	.ac-anim-float,
	.ac-anim-float-slow,
	.ac-anim-bob,
	.ac-anim-pulse,
	[class*="ac-blob"],
	.ac-hero__title--gradient {
		animation: none !important;
	}
}

/* ==========================================================================
   BUTTONS — rounded pill with springy lift + shine sweep
   ========================================================================== */
.ast-button,
.button,
button,
input[type="submit"],
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
	font-family: var(--ac-font-body);
	font-weight: 800;
	letter-spacing: 0.01em;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	border-radius: var(--ac-radius-pill);
	border: none;
	background-color: var(--ac-terracotta-d);
	color: var(--ac-white);
	padding: 0.9em 2em;
	box-shadow: var(--ac-shadow-sm);
	transition: transform var(--ac-transition), box-shadow var(--ac-transition), background-color var(--ac-transition);
	cursor: pointer;
}
/* Shine sweep on hover */
.ast-button::after,
.button::after,
.wp-block-button__link::after,
.woocommerce a.button::after,
.woocommerce button.button::after,
.woocommerce a.button.alt::after,
.woocommerce button.button.alt::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 40%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
	transform: translateX(-130%) skewX(-20deg);
	pointer-events: none;
}
.ast-button:hover::after,
.button:hover::after,
.wp-block-button__link:hover::after,
.woocommerce a.button:hover::after,
.woocommerce button.button:hover::after,
.woocommerce a.button.alt:hover::after,
.woocommerce button.button.alt:hover::after {
	animation: ac-shine 0.9s ease;
}
@media (prefers-reduced-motion: reduce) {
	.ast-button:hover::after,
	.button:hover::after,
	.woocommerce a.button:hover::after,
	.woocommerce button.button:hover::after { animation: none; }
}
.ast-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
	background-color: var(--ac-terracotta-dd);
	color: var(--ac-white);
	transform: translateY(-3px) scale(1.03);
	box-shadow: var(--ac-shadow);
}
.ast-button:active,
.button:active,
.woocommerce a.button:active,
.woocommerce button.button:active {
	transform: translateY(0);
}

/* Secondary / ghost button */
.ac-btn-ghost,
.woocommerce a.button.ac-ghost {
	background: transparent;
	color: var(--ac-ink);
	border: 2px solid var(--ac-ink);
	box-shadow: none;
}
.ac-btn-ghost:hover,
.woocommerce a.button.ac-ghost:hover {
	background: var(--ac-ink);
	color: var(--ac-white);
}

/* ==========================================================================
   ANNOUNCEMENT BAR (offers) + MARQUEE
   ========================================================================== */
.ac-announcement {
	background: linear-gradient(90deg, #E07A5F, #D4567D, #5FA0C0, #81B29A, #E07A5F);
	background-size: 300% 100%;
	animation: ac-gradient-pan 14s ease infinite;
	color: var(--ac-white);
	font-family: var(--ac-font-body);
	font-weight: 800;
	font-size: 0.88rem;
	letter-spacing: 0.02em;
	text-align: center;
	position: relative;
}
@media (prefers-reduced-motion: reduce) {
	.ac-announcement { animation: none; }
}
.ac-announcement__track {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	padding: 0.6rem 3.5rem;
	min-height: 38px;
	overflow: hidden;
}
.ac-announcement__item {
	white-space: nowrap;
	opacity: 0;
	position: absolute;
	transition: opacity 0.5s ease;
	pointer-events: none;
}
.ac-announcement__item.is-active {
	opacity: 1;
	position: relative;
	pointer-events: auto;
}
.ac-announcement__item a {
	color: var(--ac-white);
	text-decoration: underline;
	text-underline-offset: 3px;
	font-weight: 800;
}
.ac-announcement__close {
	position: absolute;
	right: 0.4rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: none;
	color: var(--ac-white);
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
	min-width: 44px;
	min-height: 44px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: none;
	opacity: 0.8;
}
.ac-announcement__close:hover {
	opacity: 1;
	background: none;
	transform: translateY(-50%) scale(1.15);
	color: var(--ac-mustard);
}

/* Moving marquee strip (Backyard-Collective vibe) */
.ac-marquee {
	background: var(--ac-mustard);
	color: var(--ac-ink);
	overflow: hidden;
	border-top: 2px solid var(--ac-ink);
	border-bottom: 2px solid var(--ac-ink);
}
.ac-marquee__track {
	display: inline-flex;
	white-space: nowrap;
	will-change: transform;
	padding: 0.5rem 0;
}
/* Only animate once JS has duplicated the track (seamless -50% loop). */
.ac-marquee__track[data-ac-cloned="1"] {
	animation: ac-marquee 28s linear infinite;
}
.ac-marquee:hover .ac-marquee__track { animation-play-state: paused; }
.ac-marquee__item {
	font-family: var(--ac-font-display);
	font-weight: 600;
	font-size: 1rem;
	padding: 0 1.4rem;
	display: inline-flex;
	align-items: center;
	gap: 0.6rem;
}
.ac-marquee__item::after {
	content: "✦";
	color: var(--ac-terracotta);
	margin-left: 1.4rem;
}
@keyframes ac-marquee {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
	.ac-marquee__track { animation: none; }
}

html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

.ac-marquee,
.ac-announcement,
.site,
.site-content,
.ast-container,
.ast-mobile-header-wrap,
.ast-primary-header-bar {
	max-width: 100vw;
	overflow-x: clip;
}

.ac-marquee__track {
	max-width: none;
	contain: paint;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header,
.ast-primary-header-bar {
	background-color: var(--ac-cream);
	border-bottom: 1px solid var(--ac-border);
}
.main-header-menu .menu-link,
.ast-builder-menu .menu-item > .menu-link {
	font-weight: 700;
	letter-spacing: 0.01em;
}
.site-title a {
	font-family: var(--ac-font-display);
	font-weight: 600;
}

/* Cart count bubble */
.ast-cart-menu-wrap .ast-cart-count {
	background: var(--ac-terracotta-d);
	color: var(--ac-white);
	font-family: var(--ac-font-body);
	font-weight: 800;
}

/* ==========================================================================
   SECTION HELPERS (used by hook-rendered storefront sections)
   ========================================================================== */
.ac-section {
	padding: clamp(2.5rem, 6vw, 5rem) 1rem;
}
.ac-section--cream { background: var(--ac-cream); }
.ac-section--deep  { background: var(--ac-cream-deep); }
.ac-container {
	max-width: 1240px;
	margin: 0 auto;
	width: 100%;
}
.ac-section__head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto clamp(1.5rem, 4vw, 2.75rem);
}
.ac-eyebrow {
	display: inline-block;
	font-family: var(--ac-font-body);
	font-weight: 800;
	font-size: 0.78rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--ac-link);
	margin-bottom: 0.6rem;
}
.ac-section__head h2 {
	font-size: clamp(1.9rem, 4.5vw, 3rem);
	margin: 0 0 0.9rem;
	line-height: 1.1;
}
.ac-section__head h2::after {
	content: "";
	display: block;
	width: 72px;
	height: 6px;
	margin: 0.8rem auto 0;
	border-radius: var(--ac-radius-pill);
	background: var(--ac-grad-warm);
	background-size: 200% auto;
	animation: ac-gradient-pan 5s ease infinite;
}
@media (prefers-reduced-motion: reduce) {
	.ac-section__head h2::after { animation: none; }
}
.ac-section__head p {
	font-size: 1.02rem;
	color: var(--ac-ink-soft);
	margin: 0;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.ac-hero {
	position: relative;
	margin: 1rem;
	border-radius: var(--ac-radius-xl);
	overflow: hidden;
	background: var(--ac-grad-hero);
	background-size: 200% 200%;
	animation: ac-gradient-pan 18s ease infinite;
	isolation: isolate;
}
@media (prefers-reduced-motion: reduce) {
	.ac-hero { animation: none; }
}
/* Decorative floating blobs */
.ac-hero::before,
.ac-hero::after {
	content: "";
	position: absolute;
	z-index: 0;
	filter: blur(8px);
	opacity: 0.55;
	pointer-events: none;
}
.ac-hero::before {
	width: 360px; height: 360px;
	top: -120px; right: -80px;
	background: var(--ac-grad-warm);
	border-radius: 42% 58% 63% 37% / 42% 45% 55% 58%;
	animation: ac-blob 16s ease-in-out infinite, ac-float 9s ease-in-out infinite;
}
.ac-hero::after {
	width: 300px; height: 300px;
	bottom: -110px; left: -70px;
	background: var(--ac-grad-fresh);
	border-radius: 60% 40% 38% 62% / 55% 60% 40% 45%;
	animation: ac-blob 20s ease-in-out infinite reverse, ac-float-slow 11s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
	.ac-hero::before,
	.ac-hero::after { animation: none; }
}
.ac-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: 1.05fr 0.95fr;
	gap: clamp(1.5rem, 5vw, 4rem);
	align-items: center;
	max-width: 1240px;
	margin: 0 auto;
	padding: clamp(2.75rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}
.ac-hero__title {
	font-size: clamp(2.5rem, 6.5vw, 4.6rem);
	line-height: 1.02;
	margin: 0.5rem 0 1rem;
	letter-spacing: -0.02em;
}
.ac-hero__title .ac-accent {
	background: var(--ac-grad-warm);
	background-size: 200% auto;
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	animation: ac-gradient-pan 6s ease infinite;
}
@media (prefers-reduced-motion: reduce) {
	.ac-hero__title .ac-accent { animation: none; }
}
.ac-hero__sub {
	font-size: clamp(1.02rem, 2vw, 1.25rem);
	max-width: 32rem;
	margin: 0 0 1.9rem;
}
.ac-hero__cta {
	display: flex;
	gap: 0.9rem;
	flex-wrap: wrap;
	margin-bottom: 1.75rem;
}
/* Stats row under CTAs */
.ac-hero__stats {
	display: flex;
	gap: clamp(1rem, 3vw, 2.25rem);
	flex-wrap: wrap;
}
.ac-hero__stat strong {
	display: block;
	font-family: var(--ac-font-display);
	font-weight: 600;
	font-size: 1.7rem;
	color: var(--ac-ink);
	line-height: 1;
}
.ac-hero__stat span {
	font-size: 0.82rem;
	font-weight: 700;
	color: var(--ac-ink-soft);
}
.ac-hero__art-wrap {
	position: relative;
	max-width: 480px;
	margin: 0 auto;
	width: 100%;
}
.ac-hero__art {
	position: relative;
	aspect-ratio: 1 / 1;
	border-radius: 46% 54% 52% 48% / 50% 46% 54% 50%;
	background: var(--ac-white);
	box-shadow: var(--ac-shadow-lg);
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	animation: ac-blob 18s ease-in-out infinite, ac-float 7s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
	.ac-hero__art { animation: none; border-radius: var(--ac-radius-lg); }
}
.ac-hero__art img { width: 100%; height: 100%; object-fit: cover; }
.ac-hero__badge {
	position: absolute;
	top: 4%;
	right: 4%;
	z-index: 2;
	background: var(--ac-grad-warm);
	color: var(--ac-white);
	font-family: var(--ac-font-display);
	font-weight: 600;
	width: 104px;
	height: 104px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	text-align: center;
	font-size: 0.82rem;
	line-height: 1.1;
	box-shadow: var(--ac-shadow);
	animation: ac-spin-slow 18s linear infinite;
}
.ac-hero__badge span { animation: ac-spin-slow 18s linear infinite reverse; }
@media (prefers-reduced-motion: reduce) {
	.ac-hero__badge,
	.ac-hero__badge span { animation: none; }
}
/* Floating product chips around the hero art */
.ac-hero__chips {
	position: absolute;
	inset: 0;
	z-index: 2;
	pointer-events: none;
}
.ac-hero__chip {
	position: absolute;
	background: var(--ac-white);
	border-radius: var(--ac-radius-pill);
	padding: 0.5rem 1rem;
	font-weight: 800;
	font-size: 0.82rem;
	color: var(--ac-ink);
	box-shadow: var(--ac-shadow);
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	white-space: nowrap;
}
.ac-hero__chip:nth-child(1) { top: 8%;  left: -6%;  animation: ac-float 6s ease-in-out infinite; }
.ac-hero__chip:nth-child(2) { top: 46%; right: -8%; animation: ac-float-slow 7.5s ease-in-out infinite; }
.ac-hero__chip:nth-child(3) { bottom: 8%; left: 4%;  animation: ac-bob 5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
	.ac-hero__chip { animation: none !important; }
}
@keyframes ac-wiggle {
	0%, 100% { transform: rotate(8deg); }
	50% { transform: rotate(-6deg); }
}

/* ==========================================================================
   CATEGORY / COLLECTION PILLS + GRID
   ========================================================================== */
.ac-cats {
	display: flex;
	gap: 0.75rem;
	flex-wrap: wrap;
	justify-content: center;
}
.ac-cat-pill {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	background: var(--ac-white);
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-radius-pill);
	padding: 0.6rem 1.25rem;
	font-weight: 800;
	color: var(--ac-ink);
	box-shadow: var(--ac-shadow-sm);
	transition: transform var(--ac-transition), box-shadow var(--ac-transition), background var(--ac-transition);
}
.ac-cat-pill:hover {
	transform: translateY(-3px);
	box-shadow: var(--ac-shadow);
	background: var(--ac-mustard);
	color: var(--ac-ink);
}

.ac-collection-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem;
}
.ac-collection-card {
	position: relative;
	border-radius: var(--ac-radius);
	overflow: hidden;
	min-height: 220px;
	display: flex;
	align-items: flex-end;
	padding: 1.1rem;
	color: var(--ac-white);
	text-decoration: none;
	background: var(--ac-ink);
	box-shadow: var(--ac-shadow-sm);
	transition: transform var(--ac-transition), box-shadow var(--ac-transition);
}
.ac-collection-card:nth-child(5n+1) { background: linear-gradient(150deg, #E8967C, var(--ac-terracotta)); }
.ac-collection-card:nth-child(5n+2) { background: linear-gradient(150deg, #97C4B0, var(--ac-sage)); }
.ac-collection-card:nth-child(5n+3) { background: linear-gradient(150deg, #F4D8A4, var(--ac-mustard)); color: var(--ac-ink); }
.ac-collection-card:nth-child(5n+4) { background: linear-gradient(150deg, #F4C9C0, var(--ac-blush)); color: var(--ac-ink); }
.ac-collection-card:nth-child(5n+5) { background: linear-gradient(150deg, #595D80, var(--ac-ink)); }
.ac-collection-card::after {
	content: "→";
	position: absolute;
	top: 1.1rem;
	right: 1.1rem;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.25);
	font-weight: 800;
	transform: translateX(-6px);
	opacity: 0;
	transition: opacity var(--ac-transition), transform var(--ac-transition);
}
.ac-collection-card:hover {
	transform: translateY(-8px) scale(1.02);
	box-shadow: var(--ac-shadow-lg);
	color: var(--ac-white);
}
.ac-collection-card:hover::after {
	opacity: 1;
	transform: translateX(0);
}
.ac-collection-card:nth-child(5n+3):hover,
.ac-collection-card:nth-child(5n+4):hover { color: var(--ac-ink); }
.ac-collection-card span {
	font-family: var(--ac-font-display);
	font-weight: 600;
	font-size: 1.3rem;
}

/* ==========================================================================
   WOOCOMMERCE — PRODUCT CARDS (shop loop)
   ========================================================================== */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	position: relative; /* anchor for .onsale / .ac-badge */
	background: var(--ac-white);
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-radius);
	padding: 0.75rem 0.75rem 1.1rem;
	box-shadow: var(--ac-shadow-sm);
	transition: transform var(--ac-transition), box-shadow var(--ac-transition);
	overflow: hidden;
}
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
	transform: translateY(-10px) scale(1.015);
	box-shadow: var(--ac-shadow-lg);
	border-color: transparent;
}
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
	border-radius: var(--ac-radius-sm);
	margin-bottom: 0.85rem;
	transition: transform var(--ac-transition);
}
.woocommerce ul.products li.product:hover a img {
	transform: scale(1.04);
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	font-family: var(--ac-font-display);
	font-weight: 600;
	font-size: 1.04rem;
	color: var(--ac-ink);
	padding: 0 0.25rem 0.35rem;
	line-height: 1.3;
}
.woocommerce ul.products li.product .price {
	color: var(--ac-ink);
	font-weight: 800;
	font-family: var(--ac-font-body);
}
.woocommerce ul.products li.product .price del { color: #6E6E78; font-weight: 600; }
.woocommerce ul.products li.product .price ins { text-decoration: none; color: var(--ac-link); }

/* Star rating recolor */
.woocommerce .star-rating span::before,
.woocommerce p.stars a::before { color: var(--ac-mustard); }
.woocommerce .star-rating::before { color: var(--ac-border); }

/* Add to cart on cards = full pill */
.woocommerce ul.products li.product .button {
	display: inline-block;
	margin-top: 0.5rem;
}

/* Sale badge */
.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale {
	background: var(--ac-terracotta-d);
	color: var(--ac-white);
	font-family: var(--ac-font-body);
	font-weight: 800;
	border-radius: var(--ac-radius-pill);
	padding: 0.35em 0.85em;
	min-height: auto;
	min-width: auto;
	line-height: 1.4;
	top: 14px;
	left: 14px;
	box-shadow: var(--ac-shadow-sm);
}

/* Custom "new" / "bestseller" ribbons (added via hook) */
.ac-badge {
	position: absolute;
	z-index: 3;
	font-family: var(--ac-font-body);
	font-weight: 800;
	font-size: 0.72rem;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	padding: 0.3em 0.8em;
	border-radius: var(--ac-radius-pill);
	box-shadow: var(--ac-shadow-sm);
}
.ac-badge--new { top: 14px; right: 14px; background: #3F6B57; color: var(--ac-white); }
.ac-badge--hot { top: 14px; right: 14px; background: var(--ac-ink); color: var(--ac-mustard); }

/* ==========================================================================
   WOOCOMMERCE — SINGLE PRODUCT
   ========================================================================== */
.single-product div.product .product_title {
	font-size: clamp(1.6rem, 4vw, 2.6rem);
	margin-bottom: 0.5rem;
}
.single-product div.product .price {
	color: var(--ac-terracotta-d);
	font-weight: 800;
	font-size: 1.5rem;
}
.single-product div.product .woocommerce-product-gallery__image img {
	border-radius: var(--ac-radius);
}
.single-product .woocommerce-tabs ul.tabs li {
	border-radius: var(--ac-radius-pill);
	background: var(--ac-cream-deep);
	border: 1px solid var(--ac-border);
}
.single-product .woocommerce-tabs ul.tabs li.active {
	background: var(--ac-terracotta-d);
}
.single-product .woocommerce-tabs ul.tabs li.active a { color: var(--ac-white); }
.single-product form.cart .quantity input.qty {
	border-radius: var(--ac-radius-pill);
	border: 2px solid var(--ac-border);
	padding: 0.6em;
	font-weight: 800;
}

/* USP / shipping reassurance under add-to-cart */
.ac-product-usp {
	list-style: none;
	margin: 1.25rem 0 0;
	padding: 1rem 1.1rem;
	border: 1px dashed var(--ac-border);
	border-radius: var(--ac-radius);
	background: var(--ac-cream);
	display: grid;
	gap: 0.5rem;
}
.ac-product-usp li {
	display: flex;
	align-items: center;
	gap: 0.6rem;
	font-weight: 700;
	color: var(--ac-ink);
	font-size: 0.92rem;
}
.ac-product-usp li span { font-size: 1.1rem; }

/* ==========================================================================
   FREE-SHIPPING PROGRESS BAR (cart)
   ========================================================================== */
.ac-ship-progress {
	background: var(--ac-cream);
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-radius);
	padding: 1rem 1.2rem;
	margin: 0 0 1.5rem;
	text-align: center;
}
.ac-ship-progress__msg {
	font-weight: 700;
	color: var(--ac-ink);
	margin-bottom: 0.65rem;
	font-size: 0.95rem;
}
.ac-ship-progress__msg b { color: var(--ac-terracotta-d); }
.ac-ship-progress__track {
	height: 10px;
	border-radius: var(--ac-radius-pill);
	background: var(--ac-cream-deep);
	overflow: hidden;
}
.ac-ship-progress__fill {
	height: 100%;
	border-radius: var(--ac-radius-pill);
	background: linear-gradient(90deg, var(--ac-sage), var(--ac-terracotta));
	transition: width 0.6s ease;
}

/* Cart & checkout polish */
.woocommerce-cart table.cart,
.woocommerce-checkout .woocommerce-checkout-review-order-table,
.woocommerce form.checkout_coupon,
.woocommerce .cart-collaterals .cart_totals {
	border-radius: var(--ac-radius);
	overflow: hidden;
}
.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: var(--ac-radius);
	border-top: none;
}
.woocommerce-message { border-left: 4px solid var(--ac-sage); }
.woocommerce-info { border-left: 4px solid var(--ac-mustard); }
.woocommerce-error { border-left: 4px solid var(--ac-danger); }

/* ==========================================================================
   TRUST BADGES
   ========================================================================== */
.ac-trust {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.25rem;
}
.ac-trust__item {
	text-align: center;
	padding: 1.75rem 1.1rem;
	background: var(--ac-white);
	border: 1px solid var(--ac-border);
	border-radius: var(--ac-radius);
	box-shadow: var(--ac-shadow-sm);
	transition: transform var(--ac-transition), box-shadow var(--ac-transition);
}
.ac-trust__item:hover { transform: translateY(-8px); box-shadow: var(--ac-shadow); }
.ac-trust__icon {
	font-size: 1.7rem;
	display: grid;
	place-items: center;
	width: 64px;
	height: 64px;
	margin: 0 auto 0.85rem;
	border-radius: 50%;
	background: var(--ac-grad-candy);
	background-size: 200% 200%;
	transition: transform var(--ac-transition);
}
.ac-trust__item:hover .ac-trust__icon { transform: scale(1.12) rotate(-6deg); }
.ac-trust__item h4 { margin: 0 0 0.25rem; font-size: 1rem; }
.ac-trust__item p { margin: 0; font-size: 0.85rem; color: var(--ac-ink-soft); }

/* ==========================================================================
   NEWSLETTER + INSTAGRAM (footer area)
   ========================================================================== */
.ac-newsletter {
	background: var(--ac-ink);
	color: var(--ac-white);
	border-radius: var(--ac-radius-lg);
	padding: clamp(2rem, 5vw, 3.25rem);
	text-align: center;
	max-width: 1240px;
	margin: 0 auto;
}
.ac-newsletter h2 { color: var(--ac-white); font-size: clamp(1.6rem, 4vw, 2.4rem); margin: 0 0 0.5rem; }
.ac-newsletter p { color: rgba(255,255,255,0.82); margin: 0 auto 1.5rem; max-width: 34rem; }
.ac-newsletter__form {
	display: flex;
	gap: 0.6rem;
	max-width: 460px;
	margin: 0 auto;
	flex-wrap: wrap;
	justify-content: center;
}
.ac-newsletter__form input[type="email"] {
	flex: 1 1 240px;
	border-radius: var(--ac-radius-pill);
	border: none;
	padding: 0.85em 1.4em;
	font-family: var(--ac-font-body);
	color: var(--ac-ink);
}

.ac-insta {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 0.6rem;
}
.ac-insta a {
	aspect-ratio: 1 / 1;
	border-radius: var(--ac-radius-sm);
	overflow: hidden;
	background: var(--ac-cream-deep);
	display: block;
	position: relative;
}
.ac-insta a::after {
	content: "♥";
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	background: rgba(61,64,91,0.0);
	color: transparent;
	font-size: 1.4rem;
	transition: all var(--ac-transition);
}
.ac-insta a:hover::after {
	background: rgba(61,64,91,0.45);
	color: var(--ac-white);
}
.ac-insta img { width: 100%; height: 100%; object-fit: cover; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer,
.ast-footer-overlay {
	background-color: var(--ac-cream-deep);
}
.footer-adv .footer-adv-overlay { border-top: 1px solid var(--ac-border); }

/* ==========================================================================
   RUM & RAISIN INSPIRED STOREFRONT POLISH
   ========================================================================== */
.ast-above-header-bar,
.ast-primary-header-bar,
.ast-below-header-bar,
.site-header {
	background: var(--ac-blush) !important;
}

.ast-primary-header-bar {
	min-height: 92px;
	border-bottom: 1px solid rgba(42, 33, 30, 0.08);
}

.ast-below-header-bar {
	border-top: 1px solid rgba(42, 33, 30, 0.06);
	border-bottom: 1px solid rgba(42, 33, 30, 0.1);
}

.site-logo-img img,
.custom-logo-link img {
	max-height: 74px;
	width: auto;
}

.main-header-menu .menu-link,
.ast-builder-menu .menu-item > .menu-link {
	color: var(--ac-ink) !important;
	font-family: var(--ac-font-body);
	font-size: 1.02rem;
	font-weight: 800;
	letter-spacing: 0;
	padding-inline: 1.05rem;
}

.main-header-menu .current-menu-item > .menu-link,
.ast-builder-menu .current-menu-item > .menu-link,
.main-header-menu .menu-item:hover > .menu-link,
.ast-builder-menu .menu-item:hover > .menu-link {
	color: var(--ac-link) !important;
}

.ast-header-account-wrap,
.ast-header-woo-cart,
.ast-header-search {
	color: var(--ac-ink);
}

.ac-user-logged-out .ast-header-account-wrap {
	display: inline-flex;
	align-items: center;
}

.ac-user-logged-out .ast-header-account-wrap a.ac-login-register-cta,
.ac-user-logged-out .ast-header-account-wrap .ac-login-register-cta {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.48rem;
	min-height: 40px;
	padding: 0.56rem 0.92rem;
	border: 1px solid rgba(225, 99, 124, 0.28);
	border-radius: 999px;
	background: #fdebf1;
	color: #2a211e !important;
	font-family: var(--ac-font-body);
	font-size: 0.88rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none !important;
	white-space: nowrap;
	box-shadow: 0 12px 28px rgba(225, 99, 124, 0.12);
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.ac-user-logged-out .ast-header-account-wrap a.ac-login-register-cta:hover,
.ac-user-logged-out .ast-header-account-wrap a.ac-login-register-cta:focus-visible {
	background: #ffdfe8;
	color: #1f1714 !important;
	box-shadow: 0 16px 34px rgba(225, 99, 124, 0.18);
	transform: translateY(-1px);
}

.ac-login-register-cta__icon {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 20px;
	width: 20px;
	height: 20px;
	border-radius: 999px;
	background: #fff;
}

.ac-login-register-cta__icon::before {
	content: "";
	width: 8px;
	height: 8px;
	border: 2px solid #d15869;
	border-top: 0;
	border-left: 0;
	transform: rotate(-45deg);
}

.ac-login-register-cta__text {
	display: inline-flex;
	align-items: center;
}

@media (max-width: 544px) {
	.ac-user-logged-out .ast-header-account-wrap a.ac-login-register-cta,
	.ac-user-logged-out .ast-header-account-wrap .ac-login-register-cta {
		min-height: 36px;
		padding: 0.5rem 0.72rem;
		font-size: 0.78rem;
	}

	.ac-login-register-cta__icon {
		flex-basis: 18px;
		width: 18px;
		height: 18px;
	}
}

.ac-announcement {
	background: #1F2A38;
	animation: none;
	color: var(--ac-white);
}

.ac-marquee {
	background: var(--ac-white);
	border-color: rgba(42, 33, 30, 0.12);
}

.ac-marquee__item {
	font-family: var(--ac-font-body);
	font-size: 0.92rem;
	font-weight: 900;
	letter-spacing: 0.03em;
	text-transform: uppercase;
}

.ast-container,
.site-content .ast-container {
	max-width: 1240px;
}

.ac-ai-flow .site-content .ast-container,
.ac-ai-flow .entry-content,
.ac-ai-flow .site-main,
.ac-ai-flow .content-area {
	max-width: none;
	padding-left: 0;
	padding-right: 0;
}

.ac-ai-flow .entry-header,
.ac-ai-flow .ast-single-post .entry-title,
.ac-ai-flow .post-thumb-img-content {
	display: none;
}

.ac-ai-flow .entry-content > .wp-block-html,
.ac-ai-flow .entry-content > .wp-block-shortcode {
	margin-block: 0;
}

.ast-button,
.button,
button,
input[type="submit"],
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt {
	border: 1px solid var(--ac-ink);
	border-radius: 7px;
	background: var(--ac-ink);
	color: var(--ac-white) !important;
	box-shadow: none;
	font-size: 0.96rem;
	font-weight: 900;
	letter-spacing: 0;
	padding: 0.78em 1.25em;
	transform: none;
}

.ast-button::after,
.button::after,
.wp-block-button__link::after,
.woocommerce a.button::after,
.woocommerce button.button::after,
.woocommerce a.button.alt::after,
.woocommerce button.button.alt::after {
	display: none;
}

.ast-button:hover,
.button:hover,
button:hover,
input[type="submit"]:hover,
.wp-block-button__link:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
	background: var(--ac-link);
	border-color: var(--ac-link);
	color: var(--ac-white) !important;
	box-shadow: none;
	transform: translateY(-1px);
}

.ac-btn-ghost,
.woocommerce a.button.ac-ghost,
.wp-block-button.is-style-outline .wp-block-button__link {
	background: var(--ac-white);
	color: var(--ac-ink) !important;
	border-color: var(--ac-ink);
}

.ac-btn-ghost:hover,
.woocommerce a.button.ac-ghost:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--ac-ink);
	color: var(--ac-white) !important;
	border-color: var(--ac-ink);
}

.woocommerce ul.products {
	display: grid;
	gap: 22px;
}

.woocommerce ul.products.columns-4,
.woocommerce-page ul.products.columns-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
	display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	display: flex;
	flex-direction: column;
	background: var(--ac-white);
	border: 1px solid rgba(42, 33, 30, 0.11);
	border-radius: 10px;
	padding: 0;
	box-shadow: none;
	overflow: hidden;
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
	transform: translateY(-3px);
	box-shadow: 0 18px 36px rgba(42, 33, 30, 0.1);
	border-color: rgba(42, 33, 30, 0.16);
}

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
	display: block;
	color: var(--ac-ink);
	text-decoration: none;
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
	width: 100%;
	aspect-ratio: 1 / 1.08;
	object-fit: cover;
	border-radius: 0;
	margin: 0 0 0.8rem;
	background: var(--ac-cream-deep);
}

.woocommerce ul.products li.product:hover a img {
	transform: none;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.75em;
	padding: 0 1rem 0.35rem;
	font-family: var(--ac-font-body);
	font-size: 0.98rem;
	font-weight: 900;
	line-height: 1.35;
	color: var(--ac-ink);
}

.woocommerce ul.products li.product .price {
	display: block;
	min-height: 1.6em;
	padding: 0 1rem 0.85rem;
	color: var(--ac-ink);
	font-size: 0.98rem;
	font-weight: 900;
}

.woocommerce ul.products li.product .price del {
	color: #918780;
	font-weight: 800;
}

.woocommerce ul.products li.product .price ins {
	color: var(--ac-link);
	text-decoration: none;
}

.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .added_to_cart {
	display: flex;
	align-items: center;
	justify-content: center;
	width: calc(100% - 2rem);
	min-height: 43px;
	margin: auto 1rem 1rem;
	border-radius: 7px;
	text-align: center;
}

.woocommerce ul.products li.product .added_to_cart {
	background: var(--ac-blush);
	border: 1px solid rgba(42, 33, 30, 0.16);
	color: var(--ac-ink) !important;
	font-weight: 900;
	text-decoration: none;
}

.woocommerce span.onsale,
.woocommerce ul.products li.product .onsale,
.ac-badge {
	border-radius: 7px;
	background: var(--ac-blush);
	color: var(--ac-ink);
	box-shadow: none;
}

.ac-badge--new {
	background: #EAF0DF;
	color: var(--ac-link);
}

.single-product div.product .summary .cart {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	align-items: center;
}

.single-product form.cart .quantity input.qty {
	border-radius: 7px;
	border-color: rgba(42, 33, 30, 0.18);
	min-height: 46px;
}

.single-product div.product form.cart .button {
	min-height: 46px;
}

.woocommerce-cart table.cart,
.woocommerce-checkout .woocommerce-checkout-review-order-table,
.woocommerce form.checkout_coupon,
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review {
	border: 1px solid rgba(42, 33, 30, 0.11);
	border-radius: 10px;
	background: var(--ac-white);
	box-shadow: none;
}

.woocommerce-cart table.cart th,
.woocommerce-checkout-review-order-table th {
	color: var(--ac-ink);
	font-family: var(--ac-font-body);
	font-weight: 900;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
	border-radius: 10px;
	background: var(--ac-white);
	color: var(--ac-ink);
	box-shadow: none;
}

.ac-newsletter {
	background: #1F2A38;
	border-radius: 14px;
}

.site-footer,
.ast-footer-overlay {
	background: #25361D;
	color: rgba(255, 255, 255, 0.82);
}

.site-footer a,
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6 {
	color: var(--ac-white);
}

@media (max-width: 1024px) {
	.woocommerce ul.products.columns-4,
	.woocommerce-page ul.products.columns-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 544px) {
	.woocommerce ul.products {
		gap: 16px;
	}

	.woocommerce ul.products.columns-4,
	.woocommerce-page ul.products.columns-4 {
		grid-template-columns: 1fr;
	}

	.main-header-menu .menu-link,
	.ast-builder-menu .menu-item > .menu-link {
		font-size: 1rem;
	}
}

/* ==========================================================================
   SCROLL REVEAL (progressively enhanced by JS)
   ========================================================================== */
/* Reveal only hides when JS is available (html.ac-js). No-JS = always visible. */
.ac-js .ac-reveal {
	opacity: 0;
	transform: translateY(24px);
	transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.ac-js .ac-reveal.is-visible {
	opacity: 1;
	transform: none;
}
@media (prefers-reduced-motion: reduce) {
	.ac-js .ac-reveal { opacity: 1; transform: none; transition: none; }
}

/* Staggered pop-in for grid children once their grid scrolls into view */
.ac-js .ac-collection-grid.is-visible > *,
.ac-js .ac-trust.is-visible > *,
.ac-js .ac-insta.is-visible > * {
	animation: ac-pop-in 0.55s both;
}
.ac-js .ac-collection-grid.is-visible > *:nth-child(1),
.ac-js .ac-trust.is-visible > *:nth-child(1) { animation-delay: 0.05s; }
.ac-js .ac-collection-grid.is-visible > *:nth-child(2),
.ac-js .ac-trust.is-visible > *:nth-child(2) { animation-delay: 0.13s; }
.ac-js .ac-collection-grid.is-visible > *:nth-child(3),
.ac-js .ac-trust.is-visible > *:nth-child(3) { animation-delay: 0.21s; }
.ac-js .ac-collection-grid.is-visible > *:nth-child(4),
.ac-js .ac-trust.is-visible > *:nth-child(4) { animation-delay: 0.29s; }
.ac-js .ac-collection-grid.is-visible > *:nth-child(5) { animation-delay: 0.37s; }
.ac-js .ac-collection-grid.is-visible > *:nth-child(6) { animation-delay: 0.45s; }
.ac-js .ac-collection-grid.is-visible > *:nth-child(7) { animation-delay: 0.53s; }
.ac-js .ac-collection-grid.is-visible > *:nth-child(8) { animation-delay: 0.61s; }
@media (prefers-reduced-motion: reduce) {
	.ac-js .ac-collection-grid.is-visible > *,
	.ac-js .ac-trust.is-visible > *,
	.ac-js .ac-insta.is-visible > * { animation: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 921px) {
	.ac-hero__inner { grid-template-columns: 1fr; text-align: center; }
	.ac-hero__sub { margin-left: auto; margin-right: auto; }
	.ac-hero__cta { justify-content: center; }
	.ac-hero { margin: 0.5rem; border-radius: var(--ac-radius-lg); }
	.ac-hero__art-wrap { max-width: 380px; margin: 1rem auto 0; order: -1; }
	.ac-hero__stats { justify-content: center; }
	.ac-hero__badge { width: 84px; height: 84px; font-size: 0.72rem; }
	.ac-hero__chip { font-size: 0.74rem; padding: 0.4rem 0.8rem; }
	.ac-trust { grid-template-columns: repeat(2, 1fr); }
	.ac-insta { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 544px) {
	.ac-trust { grid-template-columns: 1fr; }
	.ac-insta { grid-template-columns: repeat(3, 1fr); }
	.ac-announcement__track { gap: 1rem; padding: 0.55rem 3rem; }
	.ac-marquee__item { font-size: 0.9rem; }
	.woocommerce ul.products li.product .woocommerce-loop-product__title { font-size: 0.95rem; }
}

/* Honour reduced-motion for hover lifts too */
@media (prefers-reduced-motion: reduce) {
	.woocommerce ul.products li.product:hover,
	.ast-button:hover,
	.button:hover,
	.ac-cat-pill:hover,
	.ac-collection-card:hover,
	.ac-trust__item:hover {
		transform: none;
	}
}

/* ==========================================================================
   ACCOUNT / LOGIN
   ========================================================================== */
.ac-ai-flow .woocommerce form.login,
.ac-ai-flow .woocommerce form.register,
.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.register,
.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
	background: #fff;
	border: 1px solid rgba(42, 33, 30, 0.11);
	border-radius: 16px;
	box-shadow: 0 18px 54px rgba(18, 14, 12, 0.06);
}

.ac-ai-flow .woocommerce form.login,
.ac-ai-flow .woocommerce form.register,
.woocommerce-account .woocommerce form.login,
.woocommerce-account .woocommerce form.register,
.woocommerce-account .woocommerce-MyAccount-content {
	padding: 1.35rem;
}

.woocommerce-account .woocommerce .u-columns.col2-set {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.1rem;
}

.woocommerce-account .woocommerce .u-column1,
.woocommerce-account .woocommerce .u-column2 {
	float: none;
	width: auto;
}

.woocommerce-account .woocommerce label {
	color: var(--ac-ink);
	font-size: 0.88rem;
	font-weight: 850;
}

.woocommerce-account .woocommerce input.input-text {
	min-height: 44px;
	background: #fffdf9;
	border: 1px solid rgba(42, 33, 30, 0.14);
	border-radius: 12px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
	margin: 0;
	padding: 0.5rem;
	list-style: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 0.7rem 0.85rem;
	border-radius: 12px;
	color: var(--ac-ink);
	font-weight: 850;
	text-decoration: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
	background: #fdebf1;
	color: var(--ac-link);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-address-fields {
	margin-top: 1.15rem;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address {
	float: none;
	width: 100%;
	margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address + .woocommerce-Address {
	margin-top: 1rem;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1rem 1.15rem;
	background: #fffaf7;
	border: 1px solid rgba(107, 130, 98, 0.34);
	border-bottom: 0;
	border-radius: 16px 16px 0 0;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h2,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title h3 {
	margin: 0;
	color: var(--ac-ink);
	font-family: var(--ac-font-display);
	font-size: clamp(1.1rem, 2vw, 1.45rem);
	line-height: 1.1;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a.edit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	min-height: 40px;
	padding: 0.62rem 1rem;
	background: #fdebf1;
	border: 1px solid rgba(225, 99, 124, 0.34);
	border-radius: 999px;
	color: #2a211e;
	font-size: 0.9rem;
	font-weight: 900;
	line-height: 1;
	text-decoration: none;
	box-shadow: 0 10px 26px rgba(225, 99, 124, 0.12);
	transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a.edit::before {
	content: "✎";
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	background: #fff;
	border-radius: 999px;
	color: #d15869;
	font-size: 0.82rem;
	line-height: 1;
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a.edit:hover,
.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a.edit:focus-visible {
	background: #ffdfe8;
	color: #1f1714;
	box-shadow: 0 14px 34px rgba(225, 99, 124, 0.18);
	transform: translateY(-1px);
}

.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address address {
	margin: 0;
	padding: 1.15rem 1.35rem;
	background: #fff;
	border: 1px solid rgba(107, 130, 98, 0.34);
	border-radius: 0 0 16px 16px;
	color: #332723;
	font-size: 1.03rem;
	font-style: normal;
	line-height: 1.75;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

@media (max-width: 768px) {
	.woocommerce-account .woocommerce .u-columns.col2-set {
		grid-template-columns: 1fr;
	}

	.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title {
		align-items: flex-start;
		flex-direction: column;
	}

	.woocommerce-account .woocommerce-MyAccount-content .woocommerce-Address-title a.edit {
		width: 100%;
	}
}

/* ==========================================================================
   SINGLE PRODUCT - PREMIUM PRODUCT DETAIL UI
   Applies to real WooCommerce product URLs while preserving native data.
   ========================================================================== */
.single-product.woocommerce-page .site-content,
.single-product.woocommerce-page #content {
	background: #f7f7f5;
}

.single-product.woocommerce-page .site-content .ast-container {
	max-width: 1280px;
	padding-left: 24px;
	padding-right: 24px;
}

.single-product div.product {
	display: grid !important;
	grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1fr);
	gap: clamp(34px, 5vw, 68px);
	align-items: start;
	padding-top: clamp(56px, 7vw, 110px);
	padding-bottom: 54px;
}

.single-product div.product::before,
.single-product div.product::after {
	content: none !important;
}

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
	float: none !important;
	width: 100% !important;
}

.single-product div.product .woocommerce-product-gallery {
	position: sticky;
	top: 140px;
	margin: 0 !important;
}

.single-product div.product .woocommerce-product-gallery__wrapper {
	margin: 0 !important;
}

.single-product div.product .woocommerce-product-gallery__image {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(42, 33, 30, 0.08);
	border-radius: 24px;
	background: #fff;
	box-shadow: 0 28px 72px rgba(42, 33, 30, 0.08);
}

.single-product div.product .woocommerce-product-gallery__image::after {
	content: "Hover to zoom";
	position: absolute;
	left: 16px;
	bottom: 16px;
	z-index: 3;
	padding: 8px 12px;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.88);
	color: rgba(42, 33, 30, 0.78);
	font-family: var(--ac-font-body);
	font-size: 0.78rem;
	font-weight: 900;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	box-shadow: 0 12px 30px rgba(42, 33, 30, 0.1);
	pointer-events: none;
}

.single-product div.product .woocommerce-product-gallery__image img {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1.18;
	height: auto;
	min-height: 520px;
	object-fit: cover;
	border-radius: 0 !important;
	cursor: zoom-in;
	transition: transform 0.28s ease, filter 0.28s ease;
	will-change: transform;
}

.single-product div.product .woocommerce-product-gallery__image.ac-zoom-active img {
	transform: scale(1.72);
	cursor: zoom-out;
	filter: saturate(1.04);
}

.single-product div.product .summary {
	position: relative;
	margin: 0 !important;
	padding-top: 8px;
	color: #322927;
}

.single-product div.product .summary::before {
	content: "ArtsyChimes collectible";
	display: inline-flex;
	margin-bottom: 14px;
	color: #687b6a;
	font-family: var(--ac-font-body);
	font-size: 0.78rem;
	font-weight: 950;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.single-product div.product .product_title {
	max-width: 760px;
	margin: 0 0 18px;
	color: #241d1a;
	font-family: var(--ac-font-display);
	font-size: clamp(2.4rem, 5.7vw, 5.15rem);
	font-weight: 700;
	line-height: 0.98;
	letter-spacing: 0;
}

.single-product div.product .price {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	margin: 0 0 18px;
	color: #241d1a;
	font-family: var(--ac-font-body);
	font-size: clamp(1.65rem, 3vw, 2.45rem);
	font-weight: 950;
	line-height: 1.1;
}

.single-product div.product .price del {
	color: rgba(42, 33, 30, 0.42);
	font-size: 0.72em;
}

.single-product div.product .price ins {
	color: #d85f73;
	text-decoration: none;
}

.single-product div.product .stock {
	display: inline-flex;
	align-items: center;
	width: fit-content;
	margin: 0 0 20px;
	padding: 8px 14px;
	border-radius: 999px;
	background: #eaf0df;
	color: #657853;
	font-family: var(--ac-font-body);
	font-size: 0.78rem;
	font-weight: 950;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.single-product div.product .woocommerce-product-details__short-description,
.single-product div.product .summary > div[itemprop="description"] {
	max-width: 680px;
	margin: 0 0 26px;
	color: rgba(42, 33, 30, 0.72);
	font-family: var(--ac-font-body);
	font-size: clamp(1rem, 1.8vw, 1.18rem);
	font-weight: 650;
	line-height: 1.72;
}

.single-product div.product .woocommerce-product-details__short-description h2,
.single-product div.product .woocommerce-product-details__short-description h3,
.single-product div.product .woocommerce-product-details__short-description strong {
	color: #363033;
	font-weight: 950;
}

.single-product div.product .summary .cart,
.single-product div.product form.cart {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 14px;
	margin: 24px 0 24px;
}

.single-product form.cart .quantity {
	margin: 0 !important;
}

.single-product form.cart .quantity input.qty {
	width: 84px;
	min-height: 58px;
	padding: 0 12px;
	border: 2px solid #efd9ca;
	border-radius: 18px;
	background: #fffdf9;
	color: #3a3445;
	font-family: var(--ac-font-body);
	font-size: 1.15rem;
	font-weight: 950;
	box-shadow: none;
}

.single-product div.product form.cart .button,
.single-product div.product .single_add_to_cart_button {
	min-height: 58px;
	padding: 0 34px;
	border: 0;
	border-radius: 999px;
	background: #cf5d46 !important;
	color: #fff !important;
	font-family: var(--ac-font-body);
	font-size: 1.05rem;
	font-weight: 950;
	letter-spacing: 0;
	box-shadow: 0 18px 42px rgba(207, 93, 70, 0.22);
	transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.single-product div.product form.cart .button:hover,
.single-product div.product .single_add_to_cart_button:hover {
	background: #bc4f3a !important;
	transform: translateY(-1px);
	box-shadow: 0 22px 50px rgba(207, 93, 70, 0.28);
}

.single-product div.product .product_meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 24px;
	margin-top: 20px;
	padding-top: 18px;
	border-top: 1px solid rgba(104, 123, 106, 0.32);
	color: rgba(42, 33, 30, 0.66);
	font-family: var(--ac-font-body);
	font-size: 0.98rem;
	font-weight: 700;
}

.single-product div.product .product_meta a {
	color: #cf5d46;
	text-decoration: none;
}

.single-product .ac-product-usp {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0;
	margin: 22px 0 0;
	padding: 0;
	border: 1px solid rgba(42, 33, 30, 0.14);
	border-radius: 18px;
	background: #fff;
	overflow: hidden;
	box-shadow: none;
}

.single-product .ac-product-usp li {
	margin: 0;
	padding: 22px 24px;
	border-right: 1px solid rgba(42, 33, 30, 0.12);
	color: rgba(42, 33, 30, 0.66);
	font-size: 0.98rem;
	font-weight: 750;
	line-height: 1.45;
}

.single-product .ac-product-usp li:last-child {
	border-right: 0;
}

.single-product .woocommerce-tabs {
	max-width: 1180px;
	margin: 0 auto 72px;
	padding: 0 24px;
}

.single-product .woocommerce-tabs ul.tabs {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 18px !important;
	padding: 0 !important;
	border: 0;
}

.single-product .woocommerce-tabs ul.tabs::before {
	content: none !important;
}

.single-product .woocommerce-tabs ul.tabs li {
	margin: 0 !important;
	border: 1px solid rgba(42, 33, 30, 0.13) !important;
	border-radius: 999px !important;
	background: #fff !important;
	box-shadow: none !important;
}

.single-product .woocommerce-tabs ul.tabs li::before,
.single-product .woocommerce-tabs ul.tabs li::after {
	content: none !important;
}

.single-product .woocommerce-tabs ul.tabs li a {
	padding: 10px 18px !important;
	color: #322927 !important;
	font-family: var(--ac-font-body);
	font-size: 0.9rem;
	font-weight: 950;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.single-product .woocommerce-tabs ul.tabs li.active {
	background: #241d1a !important;
}

.single-product .woocommerce-tabs ul.tabs li.active a {
	color: #fff !important;
}

.single-product .woocommerce-tabs .panel {
	padding: clamp(24px, 4vw, 42px);
	border: 1px solid rgba(42, 33, 30, 0.11);
	border-radius: 22px;
	background: #fff;
	color: rgba(42, 33, 30, 0.75);
	box-shadow: 0 22px 56px rgba(42, 33, 30, 0.05);
}

.single-product .woocommerce-tabs .panel h2,
.single-product .related.products > h2 {
	color: #241d1a;
	font-family: var(--ac-font-display);
	font-weight: 700;
	letter-spacing: 0;
}

.single-product .related.products {
	max-width: 1180px;
	margin: 0 auto;
	padding: 0 24px 72px;
}

@media (max-width: 980px) {
	.single-product.woocommerce-page .site-content .ast-container {
		padding-left: 18px;
		padding-right: 18px;
	}

	.single-product div.product {
		grid-template-columns: 1fr;
		gap: 28px;
		padding-top: 34px;
	}

	.single-product div.product .woocommerce-product-gallery {
		position: relative;
		top: auto;
	}

	.single-product div.product .woocommerce-product-gallery__image img {
		min-height: 0;
		aspect-ratio: 1 / 1.08;
	}

	.single-product div.product .product_title {
		font-size: clamp(2.15rem, 10vw, 3.7rem);
		line-height: 1.02;
	}

	.single-product .ac-product-usp {
		grid-template-columns: 1fr;
	}

	.single-product .ac-product-usp li {
		border-right: 0;
		border-bottom: 1px solid rgba(42, 33, 30, 0.12);
	}

	.single-product .ac-product-usp li:last-child {
		border-bottom: 0;
	}
}

@media (max-width: 544px) {
	.single-product.woocommerce-page .site-content .ast-container {
		padding-left: 14px;
		padding-right: 14px;
	}

	.single-product div.product {
		padding-top: 22px;
		padding-bottom: 34px;
	}

	.single-product div.product .woocommerce-product-gallery__image {
		border-radius: 18px;
	}

	.single-product div.product .woocommerce-product-gallery__image::after {
		content: "Tap to zoom";
		left: 12px;
		bottom: 12px;
		font-size: 0.68rem;
	}

	.single-product div.product .summary::before {
		font-size: 0.7rem;
		letter-spacing: 0.1em;
	}

	.single-product div.product .price {
		font-size: 1.55rem;
	}

	.single-product div.product form.cart {
		align-items: stretch;
	}

	.single-product form.cart .quantity input.qty {
		width: 74px;
		min-height: 54px;
	}

	.single-product div.product form.cart .button,
	.single-product div.product .single_add_to_cart_button {
		flex: 1 1 auto;
		min-height: 54px;
		padding-left: 22px;
		padding-right: 22px;
	}

	.single-product .woocommerce-tabs {
		padding-left: 14px;
		padding-right: 14px;
	}
}

/* ==========================================================================
   CHECKOUT AI - ORDER REVIEW / PAYMENT LAYOUT FIX
   Keeps WooCommerce checkout native while removing the cramped 3-column layout.
   ========================================================================== */
.acp-checkout .acp-checkout-grid {
	grid-template-columns: minmax(0, 1fr) !important;
	max-width: 1220px;
	gap: 20px;
}

.acp-checkout .acp-checkout-grid > div {
	width: 100%;
	overflow: visible !important;
}

.acp-checkout .acp-side {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
}

.acp-checkout .acp-side-card {
	min-height: 138px;
	border-left: 5px solid #cf7a8c;
	box-shadow: 0 14px 38px rgba(36, 29, 26, 0.07);
}

.acp-checkout .woocommerce form.checkout {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(420px, 0.68fr);
	gap: 30px 34px;
	align-items: start;
}

.acp-checkout .woocommerce form.checkout::before,
.acp-checkout .woocommerce form.checkout::after {
	content: none !important;
	display: none !important;
}

.acp-checkout .woocommerce-checkout #customer_details {
	grid-column: 1;
	grid-row: 1;
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	overflow: visible !important;
}

.acp-checkout .woocommerce-checkout #customer_details .col-1,
.acp-checkout .woocommerce-checkout #customer_details .col-2 {
	float: none !important;
	width: 100% !important;
	padding: 0 !important;
}

.acp-checkout .woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper,
.acp-checkout .woocommerce-checkout #customer_details .woocommerce-shipping-fields,
.acp-checkout .woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper {
	padding: 0 24px 24px !important;
}

.acp-checkout .woocommerce-checkout #customer_details .woocommerce-shipping-fields {
	padding-top: 4px !important;
}

.acp-checkout .woocommerce-checkout #customer_details .form-row {
	padding-left: 0 !important;
	padding-right: 0 !important;
}

.acp-checkout .woocommerce-checkout #order_review_heading {
	grid-column: 2;
	grid-row: 1;
	position: relative;
	z-index: 2;
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 18px 18px 0 0;
	background: transparent !important;
	box-shadow: none !important;
}

.acp-checkout .woocommerce-checkout #order_review {
	grid-column: 2;
	grid-row: 1;
	float: none !important;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 86px 0 0 !important;
	border: 1px solid rgba(36, 29, 26, 0.12) !important;
	border-radius: 18px !important;
	background: #fff !important;
	box-shadow: 0 20px 54px rgba(36, 29, 26, 0.08) !important;
	overflow: hidden !important;
}

.acp-checkout .woocommerce-checkout-review-order-table {
	width: 100% !important;
	min-width: 0 !important;
	margin: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	table-layout: auto;
}

.acp-checkout .woocommerce-checkout-review-order-table th,
.acp-checkout .woocommerce-checkout-review-order-table td {
	padding: 15px 18px !important;
	vertical-align: middle;
	border-color: rgba(104, 134, 112, 0.32) !important;
	font-size: 15px !important;
	line-height: 1.45 !important;
}

.acp-checkout .woocommerce-checkout-review-order-table .product-name {
	width: 65%;
	color: #3a302d;
	font-weight: 800;
}

.acp-checkout .woocommerce-checkout-review-order-table .product-total,
.acp-checkout .woocommerce-checkout-review-order-table tfoot td {
	text-align: right;
	white-space: nowrap;
	color: #3a3445;
	font-weight: 850;
}

.acp-checkout .woocommerce-checkout-review-order-table tfoot th {
	color: #3a302d;
	font-weight: 850;
}

.acp-checkout .woocommerce-checkout-review-order-table .order-total th,
.acp-checkout .woocommerce-checkout-review-order-table .order-total td {
	background: #fff8f5;
	color: #241d1a;
	font-size: 17px !important;
	font-weight: 950;
}

.acp-checkout .woocommerce-checkout #payment {
	margin: 18px 20px 20px !important;
	border: 1px solid rgba(36, 29, 26, 0.1) !important;
	border-radius: 16px !important;
	background: #fff7fa !important;
	box-shadow: none !important;
	overflow: hidden !important;
}

.acp-checkout .woocommerce-checkout #payment ul.payment_methods {
	padding: 20px 22px !important;
	background: #fff7fa !important;
}

.acp-checkout .woocommerce-checkout #payment label {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-size: 16px !important;
	line-height: 1.45 !important;
}

.acp-checkout .woocommerce-checkout #payment div.payment_box {
	margin-top: 14px !important;
	padding: 14px 16px !important;
	border-radius: 12px !important;
	background: #fff !important;
	font-size: 14px !important;
}

.acp-checkout .woocommerce-checkout .woocommerce-privacy-policy-text {
	padding: 18px 22px 0 !important;
	font-size: 13px !important;
	line-height: 1.65 !important;
}

.acp-checkout .woocommerce-checkout .form-row.place-order {
	padding: 0 0 22px !important;
}

.acp-checkout .woocommerce-checkout p.cr-customer-consent {
	display: flex !important;
	align-items: center !important;
	min-height: 28px;
	margin: 10px 0 0 !important;
	padding: 0 22px !important;
}

.acp-checkout .woocommerce-checkout p.cr-customer-consent label.checkbox {
	display: inline-flex !important;
	align-items: center !important;
	gap: 10px;
	margin: 0 !important;
	line-height: 1.4 !important;
}

.acp-checkout .woocommerce-checkout p.cr-customer-consent input[type="checkbox"] {
	position: static !important;
	flex: 0 0 18px;
	width: 18px !important;
	height: 18px !important;
	margin: 0 !important;
	border: 1px solid rgba(36, 29, 26, 0.35);
	border-radius: 4px;
	vertical-align: middle;
}

.acp-checkout .woocommerce-checkout p.cr-customer-consent .woocommerce-terms-and-conditions-checkbox-text:empty {
	display: none !important;
}

.acp-checkout .woocommerce-checkout #place_order {
	width: calc(100% - 44px) !important;
	min-height: 54px !important;
	margin: 18px 22px 22px !important;
	border-radius: 999px !important;
	background: #cf5d46 !important;
	box-shadow: 0 18px 42px rgba(207, 93, 70, 0.22) !important;
}

.acp-checkout .woocommerce-form-coupon-toggle .woocommerce-info {
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 58px;
	margin-bottom: 28px;
	padding: 16px 22px !important;
	border: 1px solid rgba(36, 29, 26, 0.1) !important;
	border-radius: 16px !important;
	background: #fff !important;
	box-shadow: 0 12px 34px rgba(36, 29, 26, 0.05) !important;
}

.acp-checkout .woocommerce-checkout #order_review .woocommerce-form-coupon-toggle {
	margin: 0 18px 14px !important;
}

.acp-checkout .woocommerce-checkout #order_review .woocommerce-form-coupon-toggle .woocommerce-info {
	min-height: 0;
	margin: 0 !important;
	padding: 13px 16px !important;
	border-color: rgba(36, 29, 26, 0.09) !important;
	border-radius: 14px !important;
	background: #fffaf7 !important;
	box-shadow: none !important;
	font-size: 14px;
	line-height: 1.35;
}

.acp-checkout .woocommerce-checkout #order_review .woocommerce-form-coupon-toggle .woocommerce-info a {
	color: #cf5d46;
	font-weight: 900;
}

.acp-checkout .woocommerce-checkout #order_review form.checkout_coupon,
.acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto;
	align-items: stretch;
	gap: 10px;
	width: auto !important;
	max-width: none !important;
	margin: 0 18px 14px !important;
	padding: 14px 16px !important;
	border: 1px solid rgba(36, 29, 26, 0.09) !important;
	border-radius: 14px !important;
	background: #fffaf7 !important;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.acp-checkout .woocommerce-checkout #order_review form.checkout_coupon::before,
.acp-checkout .woocommerce-checkout #order_review form.checkout_coupon::after,
.acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon::before,
.acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon::after {
	content: none !important;
	display: none !important;
}

.acp-checkout .woocommerce-checkout #order_review form.checkout_coupon p,
.acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon p {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
}

.acp-checkout .woocommerce-checkout #order_review form.checkout_coupon .form-row-first,
.acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon .form-row-first {
	min-width: 0;
}

.acp-checkout .woocommerce-checkout #order_review form.checkout_coupon .form-row-last,
.acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon .form-row-last {
	display: flex;
}

.acp-checkout .woocommerce-checkout #order_review form.checkout_coupon input.input-text,
.acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon input.input-text {
	width: 100% !important;
	min-height: 46px !important;
	padding: 0 14px !important;
	border: 1px solid rgba(36, 29, 26, 0.12) !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: #2a211e !important;
	font-size: 14px !important;
	font-weight: 750;
	box-shadow: none !important;
}

.acp-checkout .woocommerce-checkout #order_review form.checkout_coupon input.input-text::placeholder,
.acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon input.input-text::placeholder {
	color: rgba(42, 33, 30, 0.48);
}

.acp-checkout .woocommerce-checkout #order_review form.checkout_coupon button.button,
.acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon button.button {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 126px;
	min-height: 46px !important;
	padding: 0 18px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #cf5d46 !important;
	color: #fff !important;
	font-size: 14px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	box-shadow: 0 14px 30px rgba(207, 93, 70, 0.18) !important;
}

.acp-checkout .woocommerce-checkout #order_review form.checkout_coupon button.button:hover,
.acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon button.button:hover {
	background: #b94f3b !important;
	transform: translateY(-1px);
}

.acp-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before {
	content: none !important;
	display: none !important;
}

.acp-checkout .woocommerce-form-coupon-toggle .woocommerce-info a {
	display: inline-flex;
	align-items: center;
	min-height: 30px;
	outline-offset: 3px;
}

@media (max-width: 980px) {
	.acp-checkout .woocommerce form.checkout {
		grid-template-columns: 1fr;
		gap: 22px;
	}

	.acp-checkout .woocommerce-checkout #customer_details,
	.acp-checkout .woocommerce-checkout #order_review_heading,
	.acp-checkout .woocommerce-checkout #order_review {
		grid-column: 1;
		grid-row: auto;
	}

	.acp-checkout .woocommerce-checkout #order_review {
		padding-top: 0 !important;
		border-top: 0 !important;
		border-radius: 0 0 18px 18px !important;
	}

	.acp-checkout .woocommerce-checkout #order_review_heading {
		border: 1px solid rgba(36, 29, 26, 0.12) !important;
		border-bottom: 0 !important;
		background: #fff !important;
	}

	.acp-checkout .woocommerce-checkout #order_review form.checkout_coupon,
	.acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon {
		grid-template-columns: 1fr;
	}

	.acp-checkout .woocommerce-checkout #order_review form.checkout_coupon button.button,
	.acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon button.button {
		width: 100%;
	}

	.acp-checkout .acp-side {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 544px) {
	.acp-checkout .acp-checkout-grid {
		padding-left: 14px;
		padding-right: 14px;
	}

	.acp-checkout .woocommerce-checkout h3,
	.acp-checkout .woocommerce-checkout #order_review_heading {
		font-size: 20px !important;
		padding: 18px 16px 12px !important;
	}

	.acp-checkout .woocommerce-checkout-review-order-table th,
	.acp-checkout .woocommerce-checkout-review-order-table td {
		padding: 13px 14px !important;
		font-size: 14px !important;
	}

	.acp-checkout .woocommerce-checkout-review-order-table .product-name {
		width: auto;
	}

	.acp-checkout .woocommerce-checkout #payment {
		margin: 14px !important;
	}

	.acp-checkout .woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper,
	.acp-checkout .woocommerce-checkout #customer_details .woocommerce-shipping-fields,
	.acp-checkout .woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper {
		padding: 0 16px 20px !important;
	}

	.acp-checkout .woocommerce-checkout p.cr-customer-consent {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	.acp-checkout .woocommerce-checkout #place_order {
		width: calc(100% - 28px) !important;
		margin: 16px 14px 18px !important;
	}
}

/* ==========================================================================
   CHECKOUT AI - DISTRACTION FREE CHECKOUT
   Creates a Shopify-like focused checkout without changing WooCommerce logic.
   ========================================================================== */
body.ac-checkout-focus {
	background: #f7f7f6 !important;
}

body.ac-checkout-focus .ast-above-header-wrap,
body.ac-checkout-focus .ast-below-header-wrap,
body.ac-checkout-focus .ast-header-search,
body.ac-checkout-focus .ast-header-account-wrap,
body.ac-checkout-focus .ast-header-woo-cart,
body.ac-checkout-focus .ast-builder-layout-element[data-section*="section-header-menu"],
body.ac-checkout-focus .site-footer,
body.ac-checkout-focus footer {
	display: none !important;
}

body.ac-checkout-focus .site-header,
body.ac-checkout-focus .ast-primary-header-bar {
	border-bottom: 1px solid rgba(36, 29, 26, 0.1) !important;
	background: #fff !important;
	box-shadow: none !important;
}

body.ac-checkout-focus .ast-primary-header-bar {
	min-height: 104px !important;
}

body.ac-checkout-focus .ast-primary-header-bar .site-primary-header-wrap,
body.ac-checkout-focus .ast-primary-header-bar .ast-builder-grid-row {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 104px !important;
}

body.ac-checkout-focus .site-branding,
body.ac-checkout-focus .ast-site-identity {
	padding: 0 !important;
	text-align: center !important;
}

body.ac-checkout-focus .custom-logo-link img,
body.ac-checkout-focus .site-logo-img img {
	max-width: 156px !important;
	max-height: 82px !important;
	object-fit: contain;
}

body.ac-checkout-focus .acp {
	background: #f7f7f6 !important;
}

body.ac-checkout-focus .acp-checkout-hero {
	display: none !important;
}

body.ac-checkout-focus .acp-checkout .acp-section {
	padding: 0 !important;
	background: #f7f7f6 !important;
}

body.ac-checkout-focus .acp-checkout .acp-wrap {
	max-width: 1320px !important;
	padding: 0 !important;
}

body.ac-checkout-focus .acp-checkout .acp-checkout-grid {
	display: block !important;
	max-width: none !important;
	padding: 0 !important;
}

body.ac-checkout-focus .acp-checkout .acp-side {
	display: none !important;
}

body.ac-checkout-focus .acp-checkout .acp-shell {
	width: 100% !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce {
	max-width: 1320px;
	margin: 0 auto;
}

body.ac-checkout-focus .acp-checkout .woocommerce form.checkout {
	display: grid !important;
	grid-template-columns: minmax(0, 1.06fr) minmax(390px, 0.74fr);
	gap: 0 !important;
	align-items: stretch !important;
	min-height: calc(100vh - 105px);
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout #customer_details {
	padding: 54px 46px 64px !important;
	border: 0 !important;
	border-right: 1px solid rgba(36, 29, 26, 0.12) !important;
	border-radius: 0 !important;
	background: #fff !important;
	box-shadow: none !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout #customer_details h3,
body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review_heading {
	padding: 0 0 22px !important;
	border: 0 !important;
	background: transparent !important;
	font-family: var(--ac-font-body) !important;
	font-size: 24px !important;
	font-weight: 950 !important;
	line-height: 1.18 !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout #customer_details .woocommerce-billing-fields__field-wrapper,
body.ac-checkout-focus .acp-checkout .woocommerce-checkout #customer_details .woocommerce-shipping-fields,
body.ac-checkout-focus .acp-checkout .woocommerce-checkout #customer_details .woocommerce-additional-fields__field-wrapper {
	padding: 0 !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout #customer_details .form-row {
	margin-bottom: 14px !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout #customer_details label {
	margin-bottom: 5px !important;
	color: #241d1a !important;
	font-size: 13px !important;
	font-weight: 900 !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout input.input-text,
body.ac-checkout-focus .acp-checkout .woocommerce-checkout textarea,
body.ac-checkout-focus .acp-checkout .woocommerce-checkout select,
body.ac-checkout-focus .acp-checkout .woocommerce-checkout .select2-container .select2-selection--single {
	min-height: 52px !important;
	border: 1px solid rgba(36, 29, 26, 0.16) !important;
	border-radius: 13px !important;
	background: #fff !important;
	box-shadow: none !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout textarea {
	min-height: 88px !important;
	padding-top: 14px !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review_heading {
	grid-column: 2;
	grid-row: 1;
	z-index: 2;
	padding: 54px 38px 0 !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review {
	grid-column: 2;
	grid-row: 1;
	min-height: calc(100vh - 105px);
	padding: 112px 38px 54px !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #f5f5f4 !important;
	box-shadow: none !important;
	overflow: visible !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review > * {
	position: relative;
	z-index: 1;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review .woocommerce-form-coupon-toggle,
body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.checkout_coupon,
body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon,
body.ac-checkout-focus .acp-checkout .woocommerce-checkout-review-order-table,
body.ac-checkout-focus .acp-checkout .woocommerce-checkout #payment {
	max-width: 480px;
	margin-left: auto !important;
	margin-right: auto !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review .woocommerce-form-coupon-toggle .woocommerce-info {
	background: #fff !important;
	border-radius: 14px !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.checkout_coupon,
body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon {
	background: #fff !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout-review-order-table {
	border: 1px solid rgba(36, 29, 26, 0.1) !important;
	border-radius: 16px !important;
	background: #fff !important;
	overflow: hidden !important;
	box-shadow: 0 14px 34px rgba(36, 29, 26, 0.05) !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout-review-order-table th,
body.ac-checkout-focus .acp-checkout .woocommerce-checkout-review-order-table td {
	padding: 16px 18px !important;
	border-color: rgba(36, 29, 26, 0.1) !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout-review-order-table .order-total th,
body.ac-checkout-focus .acp-checkout .woocommerce-checkout-review-order-table .order-total td {
	background: #fff7f5 !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout #payment {
	margin-top: 18px !important;
	border-radius: 16px !important;
	background: #fff !important;
}

body.ac-checkout-focus .acp-checkout .woocommerce-checkout #place_order {
	background: #2a211e !important;
	box-shadow: 0 18px 40px rgba(36, 29, 26, 0.16) !important;
}

html body.ac-checkout-focus .ast-above-header-wrap,
html body.ac-checkout-focus .site-header .ast-below-header-wrap,
html body.ac-checkout-focus .site-header .ast-header-search,
html body.ac-checkout-focus .site-header .ast-header-account-wrap,
html body.ac-checkout-focus .site-header .ast-header-woo-cart,
html body.ac-checkout-focus .site-header .site-header-primary-section-left,
html body.ac-checkout-focus .site-header .site-header-primary-section-right,
html body.ac-checkout-focus .site-header .main-header-menu,
html body.ac-checkout-focus .site-header nav,
html body.ac-checkout-focus .site-footer,
html body.ac-checkout-focus #colophon,
html body.ac-checkout-focus footer.site-footer {
	display: none !important;
	visibility: hidden !important;
}

html body.ac-checkout-focus main.acp.acp-checkout section.acp-checkout-hero {
	display: none !important;
	visibility: hidden !important;
}

html body.ac-checkout-focus main.acp.acp-checkout section.acp-section {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	background: #f7f7f6 !important;
}

html body.ac-checkout-focus main.acp.acp-checkout .acp-shell {
	border: 0 !important;
	box-shadow: none !important;
	background: transparent !important;
}

@media (min-width: 981px) {
	body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review {
		position: sticky;
		top: 0;
	}
}

@media (max-width: 980px) {
	body.ac-checkout-focus .ast-primary-header-bar,
	body.ac-checkout-focus .ast-primary-header-bar .site-primary-header-wrap,
	body.ac-checkout-focus .ast-primary-header-bar .ast-builder-grid-row {
		min-height: 82px !important;
	}

	body.ac-checkout-focus .custom-logo-link img,
	body.ac-checkout-focus .site-logo-img img {
		max-width: 126px !important;
		max-height: 64px !important;
	}

	body.ac-checkout-focus .acp-checkout .woocommerce form.checkout {
		grid-template-columns: 1fr !important;
		min-height: 0;
	}

	body.ac-checkout-focus .acp-checkout .woocommerce-checkout #customer_details,
	body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review_heading,
	body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review {
		grid-column: 1;
		grid-row: auto;
	}

	body.ac-checkout-focus .acp-checkout .woocommerce-checkout #customer_details {
		padding: 28px 18px 22px !important;
		border-right: 0 !important;
	}

	body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review_heading {
		padding: 26px 18px 0 !important;
		background: #f5f5f4 !important;
	}

	body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review {
		min-height: 0;
		padding: 22px 16px 30px !important;
		background: #f5f5f4 !important;
	}

	body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review .woocommerce-form-coupon-toggle,
	body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.checkout_coupon,
	body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon,
	body.ac-checkout-focus .acp-checkout .woocommerce-checkout-review-order-table,
	body.ac-checkout-focus .acp-checkout .woocommerce-checkout #payment {
		max-width: none;
	}
}

/* ==========================================================================
   PRODUCT PAGE + MINI CART FINAL POLISH
   Keeps product URLs native while making cards/header/cart consistent.
   ========================================================================== */
body.single-product .ast-above-header-bar,
body.single-product .ast-above-header-wrap,
body.single-product .ast-primary-header-bar,
body.single-product .ast-below-header-bar,
body.single-product .site-header {
	background: #fff !important;
}

body.single-product .ast-above-header-bar,
body.single-product .ast-below-header-bar {
	border-color: rgba(36, 29, 26, 0.08) !important;
}

body.single-product .ast-above-header-bar {
	color: #2a211e !important;
}

body.single-product .site-content,
body.single-product #content {
	background: #f7f7f5 !important;
}

body.single-product div.product {
	padding-top: clamp(92px, 8.5vw, 132px) !important;
}

body.single-product .woocommerce-breadcrumb {
	position: relative;
	z-index: 2;
	display: flex !important;
	flex-wrap: wrap;
	gap: 0.36rem;
	max-width: 100%;
	margin: 0 0 18px !important;
	color: rgba(42, 33, 30, 0.58) !important;
	font-family: var(--ac-font-body);
	font-size: 0.88rem;
	font-weight: 750;
	line-height: 1.5;
	white-space: normal;
}

body.single-product .woocommerce-breadcrumb a {
	color: rgba(42, 33, 30, 0.78) !important;
	text-decoration: none !important;
}

body.single-product div.product .summary::before {
	margin-top: 0 !important;
}

body.single-product .related.products {
	grid-column: 1 / -1 !important;
	width: 100% !important;
	clear: both;
	max-width: 1180px;
	margin: 18px auto 0 !important;
	padding: 0 24px 78px !important;
}

body.single-product .related.products > h2 {
	margin: 0 0 24px !important;
	font-size: clamp(1.9rem, 3.5vw, 2.7rem) !important;
	line-height: 1.05 !important;
}

body.single-product .related.products ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 22px !important;
}

body.single-product .related.products ul.products li.product {
	min-height: 100%;
	border: 1px solid rgba(42, 33, 30, 0.1) !important;
	border-radius: 18px !important;
	background: #fff !important;
	box-shadow: 0 12px 30px rgba(36, 29, 26, 0.05) !important;
	overflow: hidden !important;
}

body.single-product .related.products ul.products li.product:hover {
	transform: translateY(-4px) !important;
	box-shadow: 0 20px 42px rgba(36, 29, 26, 0.1) !important;
}

body.single-product .related.products ul.products li.product a img {
	aspect-ratio: 1 / 1.05 !important;
	margin: 0 0 0.9rem !important;
	object-fit: cover !important;
}

body.single-product .related.products ul.products li.product .ast-on-card-button {
	display: none !important;
}

body.single-product .related.products ul.products li.product .ast-woo-product-category {
	display: block;
	padding: 0 1rem 0.2rem;
	color: rgba(42, 33, 30, 0.5);
	font-size: 0.72rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

body.single-product .related.products ul.products li.product .woocommerce-loop-product__title {
	min-height: 2.7em !important;
	padding: 0 1rem 0.45rem !important;
	font-family: var(--ac-font-body) !important;
	font-size: 0.98rem !important;
	font-weight: 950 !important;
	line-height: 1.35 !important;
}

body.single-product .related.products ul.products li.product .price {
	padding: 0 1rem 0.9rem !important;
}

body.single-product .related.products ul.products li.product .button,
body.single-product .related.products ul.products li.product .added_to_cart {
	width: calc(100% - 2rem) !important;
	min-height: 44px !important;
	margin: auto 1rem 1rem !important;
	border: 1px solid #f7cbd6 !important;
	border-radius: 999px !important;
	background: #fdebf1 !important;
	color: #2a211e !important;
	font-family: var(--ac-font-body) !important;
	font-size: 0.9rem !important;
	font-weight: 950 !important;
	box-shadow: none !important;
}

body.single-product .related.products ul.products li.product .button:hover,
body.single-product .related.products ul.products li.product .added_to_cart:hover {
	background: #ffdfe8 !important;
	border-color: #f2b8c8 !important;
	color: #1f1714 !important;
	transform: translateY(-1px);
}

.ast-site-header-cart,
.ast-header-woo-cart {
	position: relative;
}

.ast-site-header-cart .widget_shopping_cart,
.ast-site-header-cart .ast-site-header-cart-data .widget_shopping_cart,
.ast-header-woo-cart .widget_shopping_cart {
	width: min(390px, calc(100vw - 28px)) !important;
	padding: 0 !important;
	border: 1px solid rgba(36, 29, 26, 0.11) !important;
	border-radius: 18px !important;
	background: #fff !important;
	color: #2a211e !important;
	box-shadow: 0 24px 70px rgba(36, 29, 26, 0.16) !important;
	overflow: hidden !important;
}

.ast-site-header-cart .widget_shopping_cart::before,
.ast-header-woo-cart .widget_shopping_cart::before {
	content: "Your cart";
	display: block;
	padding: 16px 18px 12px;
	border-bottom: 1px solid rgba(36, 29, 26, 0.08);
	background: #fff;
	color: #241d1a;
	font-family: var(--ac-font-body);
	font-size: 1rem;
	font-weight: 950;
}

.ast-site-header-cart .woocommerce-mini-cart,
.ast-header-woo-cart .woocommerce-mini-cart {
	max-height: 360px;
	margin: 0 !important;
	padding: 8px 14px 0 !important;
	overflow-y: auto;
	background: #fff !important;
}

.ast-site-header-cart .woocommerce-mini-cart-item,
.ast-header-woo-cart .woocommerce-mini-cart-item {
	display: grid !important;
	grid-template-columns: 58px 1fr auto;
	gap: 12px;
	align-items: center;
	min-height: 78px;
	margin: 0 !important;
	padding: 12px 0 !important;
	border-bottom: 1px solid rgba(36, 29, 26, 0.08) !important;
	color: #2a211e !important;
	font-family: var(--ac-font-body);
	font-size: 0.9rem;
	font-weight: 850;
	line-height: 1.35;
}

.ast-site-header-cart .woocommerce-mini-cart-item img,
.ast-header-woo-cart .woocommerce-mini-cart-item img {
	grid-column: 1;
	width: 58px !important;
	height: 58px !important;
	margin: 0 !important;
	border-radius: 12px !important;
	object-fit: cover;
	background: #f7f2ef;
}

.ast-site-header-cart .woocommerce-mini-cart-item a:not(.remove),
.ast-header-woo-cart .woocommerce-mini-cart-item a:not(.remove) {
	display: contents;
	color: #2a211e !important;
	text-decoration: none !important;
}

.ast-site-header-cart .woocommerce-mini-cart-item .quantity,
.ast-header-woo-cart .woocommerce-mini-cart-item .quantity {
	display: block;
	grid-column: 2;
	margin-top: 4px;
	color: rgba(42, 33, 30, 0.62);
	font-size: 0.82rem;
	font-weight: 850;
}

.ast-site-header-cart .woocommerce-mini-cart-item .remove,
.ast-header-woo-cart .woocommerce-mini-cart-item .remove {
	grid-column: 3;
	grid-row: 1;
	display: grid !important;
	place-items: center;
	width: 26px !important;
	height: 26px !important;
	border: 1px solid rgba(36, 29, 26, 0.12) !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: rgba(42, 33, 30, 0.48) !important;
	font-size: 18px !important;
	line-height: 1 !important;
	text-decoration: none !important;
}

.ast-site-header-cart .woocommerce-mini-cart__total,
.ast-header-woo-cart .woocommerce-mini-cart__total {
	display: flex;
	justify-content: space-between;
	gap: 12px;
	margin: 0 !important;
	padding: 16px 18px !important;
	border-top: 0 !important;
	background: #fff8f9 !important;
	color: #241d1a !important;
	font-size: 0.98rem;
	font-weight: 950;
}

.ast-site-header-cart .woocommerce-mini-cart__buttons,
.ast-header-woo-cart .woocommerce-mini-cart__buttons {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 10px;
	margin: 0 !important;
	padding: 14px 18px 18px !important;
	background: #fff !important;
}

.ast-site-header-cart .woocommerce-mini-cart__buttons a,
.ast-header-woo-cart .woocommerce-mini-cart__buttons a {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-height: 44px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	border-radius: 999px !important;
	font-family: var(--ac-font-body);
	font-size: 0.88rem !important;
	font-weight: 950 !important;
	text-decoration: none !important;
}

.ast-site-header-cart .woocommerce-mini-cart__buttons a:first-child,
.ast-header-woo-cart .woocommerce-mini-cart__buttons a:first-child {
	border: 1px solid rgba(36, 29, 26, 0.14) !important;
	background: #fff !important;
	color: #2a211e !important;
}

.ast-site-header-cart .woocommerce-mini-cart__buttons a.checkout,
.ast-header-woo-cart .woocommerce-mini-cart__buttons a.checkout {
	border: 1px solid #f7cbd6 !important;
	background: #fdebf1 !important;
	color: #2a211e !important;
}

@media (max-width: 980px) {
	body.single-product div.product {
		padding-top: 42px !important;
	}

	body.single-product .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 544px) {
	body.single-product .related.products {
		padding-left: 16px !important;
		padding-right: 16px !important;
	}

	body.single-product .related.products ul.products {
		grid-template-columns: 1fr !important;
	}

	.ast-site-header-cart .widget_shopping_cart,
	.ast-header-woo-cart .widget_shopping_cart {
		width: calc(100vw - 22px) !important;
	}
}

/* ==========================================================================
   CHECKOUT AI - FOCUSED CHECKOUT HEADER POLISH
   Applies before JS as well, because functions.php adds ac-checkout-focus.
   ========================================================================== */
html body.ac-checkout-focus .site-header,
html body.ac-checkout-focus .ast-primary-header-bar {
	min-height: 94px !important;
	border-bottom: 1px solid rgba(36, 29, 26, 0.12) !important;
	background: #fff !important;
}

html body.ac-checkout-focus .ast-primary-header-bar .site-primary-header-wrap,
html body.ac-checkout-focus .ast-primary-header-bar .ast-builder-grid-row {
	display: flex !important;
	align-items: center !important;
	justify-content: flex-start !important;
	width: min(100%, 1320px) !important;
	min-height: 94px !important;
	margin: 0 auto !important;
	padding: 0 46px !important;
}

html body.ac-checkout-focus .site-branding,
html body.ac-checkout-focus .ast-site-identity {
	margin: 0 !important;
	padding: 0 !important;
	text-align: left !important;
}

html body.ac-checkout-focus .custom-logo-link img,
html body.ac-checkout-focus .site-logo-img img {
	max-width: 136px !important;
	max-height: 68px !important;
}

html body.ac-checkout-focus .acp-checkout .woocommerce {
	max-width: 1320px !important;
}

html body.ac-checkout-focus .acp-checkout .woocommerce form.checkout {
	min-height: calc(100vh - 95px) !important;
}

html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #customer_details,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review_heading,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review {
	margin-top: 0 !important;
}

html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review_heading {
	padding-top: 48px !important;
}

html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review {
	min-height: calc(100vh - 95px) !important;
	padding-top: 104px !important;
	background: #f4f4f3 !important;
}

@media (max-width: 980px) {
	html body.ac-checkout-focus .site-header,
	html body.ac-checkout-focus .ast-primary-header-bar,
	html body.ac-checkout-focus .ast-primary-header-bar .site-primary-header-wrap,
	html body.ac-checkout-focus .ast-primary-header-bar .ast-builder-grid-row {
		min-height: 78px !important;
	}

	html body.ac-checkout-focus .ast-primary-header-bar .site-primary-header-wrap,
	html body.ac-checkout-focus .ast-primary-header-bar .ast-builder-grid-row {
		justify-content: center !important;
		padding: 0 18px !important;
	}

	html body.ac-checkout-focus .custom-logo-link img,
	html body.ac-checkout-focus .site-logo-img img {
		max-width: 122px !important;
		max-height: 58px !important;
	}

	html body.ac-checkout-focus .acp-checkout .woocommerce form.checkout,
	html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review {
		min-height: 0 !important;
	}

	html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review {
		padding-top: 20px !important;
	}
}

/* ==========================================================================
   PRODUCT PAGE + MINI CART HARDENED POLISH
   Final high-specificity layer for product pages and hover cart surfaces.
   ========================================================================== */
html body.single-product,
html body.single-product.woocommerce-page {
	background: #f7f7f6 !important;
}

html body.single-product.ast-theme-transparent-header .site-header,
html body.single-product .site-header,
html body.single-product .main-header-bar,
html body.single-product .ast-above-header-wrap,
html body.single-product .ast-above-header-bar,
html body.single-product .ast-primary-header-bar,
html body.single-product .ast-below-header-wrap,
html body.single-product .ast-below-header-bar,
html body.single-product #masthead {
	background: #fff !important;
	background-color: #fff !important;
	background-image: none !important;
	box-shadow: none !important;
}

html body.single-product .ast-above-header-wrap,
html body.single-product .ast-below-header-wrap {
	border-color: rgba(36, 29, 26, 0.1) !important;
}

html body.single-product .site-content,
html body.single-product #content {
	background: #f7f7f6 !important;
}

html body.single-product div.product {
	position: relative;
	padding-top: clamp(96px, 8vw, 136px) !important;
	overflow: visible !important;
}

html body.single-product .woocommerce-breadcrumb {
	position: relative;
	z-index: 4;
	display: flex !important;
	flex-wrap: wrap !important;
	align-items: center;
	gap: 0.35rem;
	max-width: min(1180px, calc(100vw - 32px));
	margin: 0 0 20px !important;
	padding: 0 !important;
	color: rgba(42, 33, 30, 0.62) !important;
	font-size: 0.9rem !important;
	line-height: 1.45 !important;
	white-space: normal !important;
	overflow: visible !important;
}

html body.single-product .woocommerce-breadcrumb a {
	color: rgba(42, 33, 30, 0.82) !important;
	text-decoration: none !important;
}

html body.single-product .related.products {
	grid-column: 1 / -1 !important;
	width: 100% !important;
	max-width: 1180px !important;
	margin: 24px auto 0 !important;
	padding: 0 24px 82px !important;
	clear: both !important;
}

html body.single-product .related.products > h2 {
	margin: 0 0 24px !important;
	color: #241d1a !important;
	font-family: var(--ac-font-display) !important;
	font-size: clamp(2rem, 3.2vw, 2.75rem) !important;
	font-weight: 750 !important;
	line-height: 1.05 !important;
}

html body.single-product .related.products ul.products {
	display: grid !important;
	grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
	gap: 22px !important;
	margin: 0 !important;
	padding: 0 !important;
}

html body.single-product .related.products ul.products::before,
html body.single-product .related.products ul.products::after {
	display: none !important;
	content: none !important;
}

html body.single-product .related.products ul.products li.product {
	float: none !important;
	display: flex !important;
	flex-direction: column !important;
	width: auto !important;
	min-height: 100% !important;
	margin: 0 !important;
	padding: 0 0 14px !important;
	border: 1px solid rgba(58, 44, 52, 0.14) !important;
	border-radius: 14px !important;
	background: #fff !important;
	box-shadow: 0 10px 28px rgba(58, 44, 52, 0.055) !important;
	overflow: hidden !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

html body.single-product .related.products ul.products li.product:hover {
	transform: translateY(-3px) !important;
	box-shadow: 0 18px 42px rgba(58, 44, 52, 0.12) !important;
}

html body.single-product .related.products ul.products li.product a.woocommerce-LoopProduct-link {
	display: block !important;
	color: inherit !important;
	text-decoration: none !important;
}

html body.single-product .related.products ul.products li.product a img {
	width: 100% !important;
	aspect-ratio: 1 / 0.82 !important;
	height: auto !important;
	margin: 0 0 9px !important;
	border-radius: 0 !important;
	object-fit: cover !important;
	background: #f6edf1 !important;
}

html body.single-product .related.products ul.products li.product .ast-on-card-button,
html body.single-product .related.products ul.products li.product .ast-select-options-trigger,
html body.single-product .related.products ul.products li.product .star-rating,
html body.single-product .related.products ul.products li.product .ast-woo-product-category,
html body.single-product .related.products ul.products li.product span.onsale {
	display: none !important;
}

html body.single-product .related.products ul.products li.product .woocommerce-loop-product__title {
	display: -webkit-box !important;
	min-height: 2.7em !important;
	margin: 0 !important;
	padding: 0 12px 7px !important;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	color: #241d1a !important;
	font-family: var(--ac-font-body) !important;
	font-size: 0.95rem !important;
	font-weight: 950 !important;
	line-height: 1.35 !important;
}

html body.single-product .related.products ul.products li.product .price {
	display: block !important;
	min-height: 22px !important;
	padding: 0 12px 9px !important;
	color: #241d1a !important;
	font-size: 0.88rem !important;
	font-weight: 950 !important;
	line-height: 1.25 !important;
}

html body.single-product .related.products ul.products li.product .price del {
	margin-right: 6px !important;
	color: rgba(42, 33, 30, 0.46) !important;
	font-size: 0.78rem !important;
}

html body.single-product .related.products ul.products li.product .price ins {
	color: #e45f74 !important;
	text-decoration: none !important;
}

html body.single-product .related.products ul.products li.product .button,
html body.single-product .related.products ul.products li.product .added_to_cart {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: calc(100% - 24px) !important;
	height: 40px !important;
	min-height: 40px !important;
	margin: auto 12px 0 !important;
	padding: 0 14px !important;
	border: 1px solid #f4c4d0 !important;
	border-radius: 999px !important;
	background: #fdebf1 !important;
	color: #241d1a !important;
	font-family: var(--ac-font-body) !important;
	font-size: 0.86rem !important;
	font-weight: 950 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	box-shadow: none !important;
	white-space: nowrap !important;
	overflow: hidden !important;
}

html body.single-product .related.products ul.products li.product:not(.outofstock) .button:not(.added_to_cart)::before {
	content: "+";
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 18px !important;
	height: 18px !important;
	margin-right: 7px !important;
	border-radius: 999px !important;
	background: #f6d0db !important;
	color: #34262c !important;
	font-size: 14px !important;
	line-height: 1 !important;
}

html body.single-product .related.products ul.products li.product .button:hover,
html body.single-product .related.products ul.products li.product .added_to_cart:hover {
	border-color: #e8aebd !important;
	background: #f7dbe4 !important;
	color: #241d1a !important;
	box-shadow: 0 10px 22px rgba(217, 95, 115, 0.13) !important;
	transform: translateY(-1px) !important;
}

html body.single-product .related.products ul.products li.product.outofstock .button {
	border-color: #e5e0dd !important;
	background: #fff !important;
	color: #3a2c34 !important;
}

html body.single-product .related.products ul.products li.product.outofstock .button::before {
	content: none !important;
	display: none !important;
}

html .ast-site-header-cart .widget_shopping_cart,
html .ast-site-header-cart .ast-site-header-cart-data .widget_shopping_cart,
html .ast-header-woo-cart .widget_shopping_cart,
html .ast-header-woo-cart .ast-site-header-cart-data .widget_shopping_cart,
html .widget_shopping_cart_content,
html .ast-mini-cart-empty {
	background: #fff !important;
	background-color: #fff !important;
	background-image: none !important;
	color: #241d1a !important;
}

html .ast-site-header-cart .widget_shopping_cart,
html .ast-header-woo-cart .widget_shopping_cart {
	width: min(404px, calc(100vw - 24px)) !important;
	padding: 0 !important;
	border: 1px solid rgba(36, 29, 26, 0.1) !important;
	border-radius: 20px !important;
	box-shadow: 0 28px 80px rgba(36, 29, 26, 0.18) !important;
	overflow: hidden !important;
}

html .ast-site-header-cart .widget_shopping_cart::before,
html .ast-header-woo-cart .widget_shopping_cart::before {
	content: "Your cart";
	display: block !important;
	padding: 16px 18px 12px !important;
	border-bottom: 1px solid rgba(36, 29, 26, 0.08) !important;
	background: #fff !important;
	color: #241d1a !important;
	font-family: var(--ac-font-body) !important;
	font-size: 1rem !important;
	font-weight: 950 !important;
}

html .ast-site-header-cart .woocommerce-mini-cart,
html .ast-header-woo-cart .woocommerce-mini-cart {
	margin: 0 !important;
	padding: 8px 14px 0 !important;
	background: #fff !important;
}

html .ast-site-header-cart .woocommerce-mini-cart-item,
html .ast-header-woo-cart .woocommerce-mini-cart-item {
	display: grid !important;
	grid-template-columns: 60px minmax(0, 1fr) 28px !important;
	gap: 12px !important;
	align-items: center !important;
	min-height: 82px !important;
	margin: 0 !important;
	padding: 12px 0 !important;
	border-bottom: 1px solid rgba(36, 29, 26, 0.08) !important;
	background: #fff !important;
	color: #241d1a !important;
	font-family: var(--ac-font-body) !important;
	font-size: 0.9rem !important;
	font-weight: 850 !important;
	line-height: 1.35 !important;
}

html .ast-site-header-cart .woocommerce-mini-cart-item a:not(.remove),
html .ast-header-woo-cart .woocommerce-mini-cart-item a:not(.remove) {
	display: contents !important;
	color: #241d1a !important;
	text-decoration: none !important;
}

html .ast-site-header-cart .woocommerce-mini-cart-item img,
html .ast-header-woo-cart .woocommerce-mini-cart-item img {
	grid-column: 1 !important;
	width: 60px !important;
	height: 60px !important;
	margin: 0 !important;
	border-radius: 13px !important;
	object-fit: cover !important;
	background: #f6edf1 !important;
}

html .ast-site-header-cart .woocommerce-mini-cart-item .quantity,
html .ast-header-woo-cart .woocommerce-mini-cart-item .quantity {
	display: block !important;
	grid-column: 2 !important;
	margin-top: 4px !important;
	color: rgba(42, 33, 30, 0.58) !important;
	font-size: 0.82rem !important;
	font-weight: 850 !important;
}

html .ast-site-header-cart .woocommerce-mini-cart-item .remove,
html .ast-header-woo-cart .woocommerce-mini-cart-item .remove {
	grid-column: 3 !important;
	display: grid !important;
	place-items: center !important;
	width: 26px !important;
	height: 26px !important;
	margin: 0 !important;
	border: 1px solid rgba(36, 29, 26, 0.14) !important;
	border-radius: 999px !important;
	background: #fff !important;
	color: rgba(42, 33, 30, 0.5) !important;
	font-size: 18px !important;
	line-height: 1 !important;
	text-decoration: none !important;
}

html .ast-site-header-cart .woocommerce-mini-cart__total,
html .ast-header-woo-cart .woocommerce-mini-cart__total,
html .ast-site-header-cart .total,
html .ast-header-woo-cart .total {
	display: flex !important;
	justify-content: space-between !important;
	gap: 12px !important;
	margin: 0 !important;
	padding: 16px 18px !important;
	border-top: 0 !important;
	background: #fff8f9 !important;
	color: #241d1a !important;
	font-size: 0.98rem !important;
	font-weight: 950 !important;
}

html .ast-site-header-cart .woocommerce-mini-cart__buttons,
html .ast-header-woo-cart .woocommerce-mini-cart__buttons,
html .ast-site-header-cart .buttons,
html .ast-header-woo-cart .buttons {
	display: grid !important;
	grid-template-columns: 1fr 1fr !important;
	gap: 10px !important;
	margin: 0 !important;
	padding: 14px 18px 18px !important;
	background: #fff !important;
}

html .ast-site-header-cart .woocommerce-mini-cart__buttons a,
html .ast-header-woo-cart .woocommerce-mini-cart__buttons a,
html .ast-site-header-cart .buttons a,
html .ast-header-woo-cart .buttons a {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	min-height: 44px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	border-radius: 999px !important;
	font-family: var(--ac-font-body) !important;
	font-size: 0.88rem !important;
	font-weight: 950 !important;
	text-decoration: none !important;
	box-shadow: none !important;
}

html .ast-site-header-cart .woocommerce-mini-cart__buttons a:first-child,
html .ast-header-woo-cart .woocommerce-mini-cart__buttons a:first-child,
html .ast-site-header-cart .buttons a:first-child,
html .ast-header-woo-cart .buttons a:first-child {
	border: 1px solid rgba(36, 29, 26, 0.14) !important;
	background: #fff !important;
	color: #241d1a !important;
}

html .ast-site-header-cart .woocommerce-mini-cart__buttons a.checkout,
html .ast-header-woo-cart .woocommerce-mini-cart__buttons a.checkout,
html .ast-site-header-cart .buttons a.checkout,
html .ast-header-woo-cart .buttons a.checkout {
	border: 1px solid #f4c4d0 !important;
	background: #fdebf1 !important;
	color: #241d1a !important;
}

/* ==========================================================================
   PRODUCT PURCHASE CONTROLS 3.1.21
   Cleaner Shopify-style quantity stepper and hardened product-card CTAs.
   ========================================================================== */
html body.single-product div.product form.cart {
	display: flex !important;
	align-items: center !important;
	gap: 14px !important;
	margin: 30px 0 28px !important;
}

html body.single-product form.cart .quantity.ac-qty-stepper {
	display: inline-grid !important;
	grid-template-columns: 44px 58px 44px !important;
	align-items: stretch !important;
	width: 146px !important;
	height: 48px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 1px solid #ead1c5 !important;
	border-radius: 999px !important;
	background: #fffaf7 !important;
	box-shadow: 0 12px 30px rgba(58, 44, 52, 0.08) !important;
	overflow: hidden !important;
}

html body.single-product form.cart .quantity.ac-qty-stepper .ac-qty-stepper__btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 44px !important;
	height: 46px !important;
	min-height: 46px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #2f2522 !important;
	font-family: var(--ac-font-body) !important;
	font-size: 1.35rem !important;
	font-weight: 950 !important;
	line-height: 1 !important;
	box-shadow: none !important;
	cursor: pointer !important;
}

html body.single-product form.cart .quantity.ac-qty-stepper .ac-qty-stepper__btn--plus {
	background: #fdebf1 !important;
	border-left: 1px solid rgba(58, 44, 52, 0.08) !important;
}

html body.single-product form.cart .quantity.ac-qty-stepper .ac-qty-stepper__btn--minus {
	border-right: 1px solid rgba(58, 44, 52, 0.08) !important;
}

html body.single-product form.cart .quantity.ac-qty-stepper .ac-qty-stepper__btn:hover:not(:disabled) {
	background: #f7dbe4 !important;
	color: #241d1a !important;
}

html body.single-product form.cart .quantity.ac-qty-stepper .ac-qty-stepper__btn:disabled {
	opacity: 0.36 !important;
	cursor: not-allowed !important;
}

html body.single-product form.cart .quantity.ac-qty-stepper input.qty {
	width: 58px !important;
	height: 46px !important;
	min-height: 46px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: #fff !important;
	color: #34262c !important;
	font-family: var(--ac-font-body) !important;
	font-size: 1rem !important;
	font-weight: 950 !important;
	line-height: 46px !important;
	text-align: center !important;
	box-shadow: none !important;
	-moz-appearance: textfield;
}

html body.single-product form.cart .quantity.ac-qty-stepper input.qty::-webkit-outer-spin-button,
html body.single-product form.cart .quantity.ac-qty-stepper input.qty::-webkit-inner-spin-button {
	margin: 0;
	-webkit-appearance: none;
}

html body.single-product div.product .single_add_to_cart_button,
html body.single-product div.product form.cart button.single_add_to_cart_button {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	min-width: 174px !important;
	height: 48px !important;
	min-height: 48px !important;
	padding: 0 28px !important;
	border-radius: 999px !important;
	background: #d8614d !important;
	color: #fff !important;
	font-family: var(--ac-font-body) !important;
	font-size: 1rem !important;
	font-weight: 950 !important;
	line-height: 1 !important;
	text-align: center !important;
	white-space: nowrap !important;
	box-shadow: 0 16px 36px rgba(216, 97, 77, 0.22) !important;
}

html body.single-product div.product .single_add_to_cart_button::before,
html body.single-product div.product .single_add_to_cart_button::after {
	display: none !important;
	content: none !important;
}

html body.single-product .related.products ul.products li.product .button img,
html body.single-product .related.products ul.products li.product .added_to_cart img,
html body.single-product .related.products ul.products li.product .button svg,
html body.single-product .related.products ul.products li.product .added_to_cart svg,
html body.single-product .related.products ul.products li.product .button .ast-icon,
html body.single-product .related.products ul.products li.product .added_to_cart .ast-icon {
	display: none !important;
	width: 0 !important;
	height: 0 !important;
	margin: 0 !important;
	opacity: 0 !important;
	visibility: hidden !important;
}

html body.single-product .related.products ul.products li.product .button,
html body.single-product .related.products ul.products li.product .added_to_cart {
	position: relative !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 8px !important;
	width: calc(100% - 24px) !important;
	max-width: calc(100% - 24px) !important;
	height: 42px !important;
	min-height: 42px !important;
	padding: 0 16px !important;
	overflow: hidden !important;
	text-indent: 0 !important;
}

html body.single-product .related.products ul.products li.product:not(.outofstock) .button:not(.added_to_cart)::before {
	flex: 0 0 18px !important;
	margin: 0 !important;
}

html body.single-product .related.products ul.products li.product.outofstock .button {
	background: #fff !important;
	color: #3a2c34 !important;
}

/* ==========================================================================
   CHECKOUT HIT-TARGET FIX 3.1.22
   Keep the visual right-column heading from covering coupon/payment controls.
   ========================================================================== */
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review_heading {
	align-self: start !important;
	height: auto !important;
	min-height: 0 !important;
	max-height: none !important;
	pointer-events: none !important;
}

html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review {
	isolation: isolate !important;
	pointer-events: auto !important;
}

html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review .woocommerce-form-coupon-toggle,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.checkout_coupon,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout-review-order-table,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #payment,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #place_order {
	pointer-events: auto !important;
}

/* ==========================================================================
   OUT-OF-STOCK PRODUCT CARD CTA FIX 3.1.23
   Prevent normal add-to-cart plus-badge styles from tinting "View product".
   ========================================================================== */
html body .acp .woocommerce ul.products li.product.outofstock .button,
html body .acp .woocommerce ul.products li.product.outofstock .button.product_type_simple,
html body .acp .woocommerce ul.products li.product.outofstock .button.product_type_external {
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 0 !important;
	width: calc(100% - 28px) !important;
	height: 36px !important;
	min-height: 36px !important;
	margin: auto 14px 0 !important;
	padding: 0 12px !important;
	border: 1px solid #e5e0dd !important;
	border-radius: 999px !important;
	background: #fff !important;
	background-image: none !important;
	color: #34262c !important;
	font-size: 0 !important;
	font-weight: 850 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-indent: 0 !important;
	box-shadow: none !important;
	overflow: hidden !important;
}

html body .acp .woocommerce ul.products li.product.outofstock .button::before,
html body .acp .woocommerce ul.products li.product.outofstock .button.product_type_simple::before,
html body .acp .woocommerce ul.products li.product.outofstock .button.product_type_external::before {
	content: "View product" !important;
	display: block !important;
	width: auto !important;
	height: auto !important;
	min-width: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	color: #34262c !important;
	font-size: 12.5px !important;
	font-weight: 850 !important;
	line-height: 1 !important;
	letter-spacing: 0 !important;
	box-shadow: none !important;
}

html body .acp .woocommerce ul.products li.product.outofstock .button::after {
	display: none !important;
	content: none !important;
}

html body .acp .woocommerce ul.products li.product.outofstock .button:hover {
	border-color: #e8aebd !important;
	background: #fff6f8 !important;
	color: #241d1a !important;
}

html body .acp .woocommerce ul.products li.product.outofstock .button:hover::before {
	color: #241d1a !important;
}

/* ==========================================================================
   CHECKOUT COUPON ALWAYS-OPEN ROW 3.1.24
   Hide the WooCommerce coupon prompt and keep only the apply-coupon row.
   ========================================================================== */
html body.ac-checkout-focus .acp-checkout .woocommerce-form-coupon-toggle,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review .woocommerce-form-coupon-toggle,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review .woocommerce-form-coupon-toggle .woocommerce-info {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	overflow: hidden !important;
	pointer-events: none !important;
}

html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.checkout_coupon,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.ac-checkout-coupon-form-inline {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) auto !important;
	align-items: center !important;
	gap: 10px !important;
	max-width: 480px !important;
	margin: 0 auto 14px !important;
	padding: 14px 16px !important;
	border: 1px solid rgba(36, 29, 26, 0.08) !important;
	border-radius: 16px !important;
	background: #fff !important;
	box-shadow: 0 12px 30px rgba(36, 29, 26, 0.045) !important;
	visibility: visible !important;
	opacity: 1 !important;
}

html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.checkout_coupon p,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon p,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.ac-checkout-coupon-form-inline p {
	margin: 0 !important;
	padding: 0 !important;
}

html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.checkout_coupon .form-row-first,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.woocommerce-form-coupon .form-row-first,
html body.ac-checkout-focus .acp-checkout .woocommerce-checkout #order_review form.ac-checkout-coupon-form-inline .form-row-first {
	min-width: 0 !important;
}

/* ==========================================================================
   MINI-CART ACTION ALIGNMENT 3.1.25
   Keep View cart and Checkout in one clean row inside the hover cart.
   ========================================================================== */
html body .ast-site-header-cart p.woocommerce-mini-cart__buttons.buttons,
html body .ast-header-woo-cart p.woocommerce-mini-cart__buttons.buttons,
html body .ast-site-header-cart .widget_shopping_cart p.buttons,
html body .ast-header-woo-cart .widget_shopping_cart p.buttons {
	display: grid !important;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
	grid-auto-flow: column !important;
	align-items: center !important;
	gap: 12px !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 14px 18px 18px !important;
	background: #fff !important;
}

html body .ast-site-header-cart p.woocommerce-mini-cart__buttons.buttons a,
html body .ast-header-woo-cart p.woocommerce-mini-cart__buttons.buttons a,
html body .ast-site-header-cart .widget_shopping_cart p.buttons a,
html body .ast-header-woo-cart .widget_shopping_cart p.buttons a {
	position: static !important;
	float: none !important;
	clear: none !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 100% !important;
	min-width: 0 !important;
	max-width: none !important;
	height: 44px !important;
	min-height: 44px !important;
	margin: 0 !important;
	padding: 0 14px !important;
	border-radius: 999px !important;
	text-align: center !important;
	white-space: nowrap !important;
	transform: none !important;
}

html body .ast-site-header-cart p.woocommerce-mini-cart__buttons.buttons a:not(.checkout),
html body .ast-header-woo-cart p.woocommerce-mini-cart__buttons.buttons a:not(.checkout),
html body .ast-site-header-cart .widget_shopping_cart p.buttons a:not(.checkout),
html body .ast-header-woo-cart .widget_shopping_cart p.buttons a:not(.checkout) {
	grid-column: 1 !important;
	grid-row: 1 !important;
}

html body .ast-site-header-cart p.woocommerce-mini-cart__buttons.buttons a.checkout,
html body .ast-header-woo-cart p.woocommerce-mini-cart__buttons.buttons a.checkout,
html body .ast-site-header-cart .widget_shopping_cart p.buttons a.checkout,
html body .ast-header-woo-cart .widget_shopping_cart p.buttons a.checkout {
	grid-column: 2 !important;
	grid-row: 1 !important;
}

/* ==========================================================================
   PRODUCT FOOTER + ADDED CARD STATE 3.1.26
   Keep single-product footers premium and show one clear View cart CTA.
   ========================================================================== */
html body.single-product .site-footer,
html body.single-product footer.site-footer,
html body.single-product .site-footer .ast-footer-overlay,
html body.single-product .site-footer .site-primary-footer-wrap,
html body.single-product .site-footer .site-below-footer-wrap,
html body.single-product .site-footer .site-primary-footer-wrap[data-section],
html body.single-product .site-footer .site-below-footer-wrap[data-section],
html body.single-product .site-footer .ast-builder-grid-row,
html body.single-product .site-footer .ast-builder-footer-grid-columns,
html body.single-product .site-footer .footer-widget-area,
html body.single-product .site-footer .site-footer-primary-section-1,
html body.single-product .site-footer .site-footer-primary-section-2,
html body.single-product .site-footer .site-footer-primary-section-3,
html body.single-product .site-footer .site-footer-below-section-1,
html body.single-product .site-footer .ast-footer-copyright {
	background: linear-gradient(112deg, #211a20 0%, #30242c 48%, #5a3040 100%) !important;
	background-color: #211a20 !important;
	color: rgba(255, 255, 255, 0.84) !important;
	border-color: rgba(255, 255, 255, 0.08) !important;
}

html body.single-product .site-footer {
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

html body.single-product .site-footer a,
html body.single-product .site-footer p,
html body.single-product .site-footer li,
html body.single-product .site-footer label,
html body.single-product .site-footer .widget-title,
html body.single-product .site-footer h1,
html body.single-product .site-footer h2,
html body.single-product .site-footer h3,
html body.single-product .site-footer h4,
html body.single-product .site-footer h5,
html body.single-product .site-footer h6,
html body.single-product .site-footer .ast-footer-copyright,
html body.single-product .site-footer .ast-footer-copyright p {
	color: rgba(255, 255, 255, 0.88) !important;
}

html body.single-product .site-footer h1,
html body.single-product .site-footer h2,
html body.single-product .site-footer h3,
html body.single-product .site-footer h4,
html body.single-product .site-footer h5,
html body.single-product .site-footer h6,
html body.single-product .site-footer .widget-title {
	color: #ffffff !important;
	letter-spacing: 0.12em !important;
	text-transform: uppercase !important;
}

html body.single-product .site-footer a:hover,
html body.single-product .site-footer a:focus {
	color: #f4a4b5 !important;
}

html body.single-product .site-footer input[type="email"],
html body.single-product .site-footer input[type="text"] {
	min-height: 46px !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	color: #241d1a !important;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16) !important;
}

html body.single-product .site-footer input::placeholder {
	color: rgba(48, 56, 69, 0.48) !important;
}

html body.single-product .site-footer button,
html body.single-product .site-footer input[type="submit"],
html body.single-product .site-footer .wp-block-button__link {
	min-height: 46px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #e56b83 !important;
	color: #ffffff !important;
	box-shadow: 0 18px 34px rgba(229, 107, 131, 0.22) !important;
}

html body.woocommerce ul.products li.product .button.added,
html body .acp .woocommerce ul.products li.product .button.added,
html body.single-product .related.products ul.products li.product .button.added {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	overflow: hidden !important;
	pointer-events: none !important;
}

html body.woocommerce ul.products li.product .added_to_cart,
html body .acp .woocommerce ul.products li.product .added_to_cart,
html body.single-product .related.products ul.products li.product .added_to_cart {
	position: relative !important;
	float: none !important;
	clear: both !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 10px !important;
	width: calc(100% - 24px) !important;
	max-width: none !important;
	height: 46px !important;
	min-height: 46px !important;
	margin: auto 12px 0 !important;
	padding: 0 20px !important;
	border: 1px solid #15100f !important;
	border-radius: 999px !important;
	background: #15100f !important;
	color: #ffffff !important;
	font-family: inherit !important;
	font-size: 15px !important;
	font-weight: 900 !important;
	line-height: 1 !important;
	text-align: center !important;
	text-decoration: none !important;
	white-space: nowrap !important;
	box-shadow: 0 16px 34px rgba(21, 16, 15, 0.18) !important;
	opacity: 1 !important;
	visibility: visible !important;
	transform: none !important;
}

html body.woocommerce ul.products li.product .added_to_cart::before,
html body .acp .woocommerce ul.products li.product .added_to_cart::before,
html body.single-product .related.products ul.products li.product .added_to_cart::before {
	content: "✓" !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 22px !important;
	height: 22px !important;
	flex: 0 0 22px !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	color: #15100f !important;
	font-size: 14px !important;
	font-weight: 950 !important;
	line-height: 1 !important;
}

html body.woocommerce ul.products li.product .added_to_cart:hover,
html body .acp .woocommerce ul.products li.product .added_to_cart:hover,
html body.single-product .related.products ul.products li.product .added_to_cart:hover {
	background: #000000 !important;
	color: #ffffff !important;
	transform: translateY(-1px) !important;
}

/* ==========================================================================
   PRODUCT FOOTER SURFACE CLEANUP 3.1.27
   Prevent inner Astra footer columns from painting separate panels.
   ========================================================================== */
html body.single-product .site-footer,
html body.single-product footer.site-footer,
html body.single-product .site-footer .site-primary-footer-wrap,
html body.single-product .site-footer .site-below-footer-wrap,
html body.single-product .site-footer .site-primary-footer-wrap[data-section],
html body.single-product .site-footer .site-below-footer-wrap[data-section] {
	background: linear-gradient(112deg, #211a20 0%, #30242c 48%, #5a3040 100%) !important;
	background-color: #211a20 !important;
}

html body.single-product .site-footer .ast-builder-grid-row,
html body.single-product .site-footer .ast-builder-footer-grid-columns,
html body.single-product .site-footer .ast-builder-grid-row-container,
html body.single-product .site-footer .ast-builder-layout-element,
html body.single-product .site-footer .footer-widget-area,
html body.single-product .site-footer .footer-widget-area-inner,
html body.single-product .site-footer .site-footer-primary-section-1,
html body.single-product .site-footer .site-footer-primary-section-2,
html body.single-product .site-footer .site-footer-primary-section-3,
html body.single-product .site-footer .site-footer-below-section-1,
html body.single-product .site-footer .ast-footer-copyright {
	background: transparent !important;
	background-color: transparent !important;
	box-shadow: none !important;
}

html body.single-product .site-footer img,
html body.single-product .site-footer .custom-logo-link img {
	filter: brightness(0) invert(1) !important;
	opacity: 0.9 !important;
}

/* ==========================================================================
   SINGLE PRODUCT UPSELL REMOVAL FALLBACK 3.1.28
   Related products remains the only recommendation block on product pages.
   ========================================================================== */
html body.single-product .upsells.products,
html body.single-product section.upsells.products {
	display: none !important;
	visibility: hidden !important;
	height: 0 !important;
	min-height: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
}

/* ==========================================================================
   CART DRAWER 3.1.40
   Right-side WooCommerce cart panel opened after AJAX add-to-cart.
   ========================================================================== */
html.ac-cart-drawer-open,
html.ac-cart-drawer-open body {
	overflow: hidden !important;
}

.ac-cart-drawer {
	position: fixed;
	inset: 0;
	z-index: 999999;
	pointer-events: none;
	visibility: hidden;
}

.ac-cart-drawer.is-open {
	pointer-events: auto;
	visibility: visible;
}

.ac-cart-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(15, 12, 12, 0.62);
	backdrop-filter: blur(2px);
	opacity: 0;
	transition: opacity 0.24s ease;
}

.ac-cart-drawer.is-open .ac-cart-drawer__overlay {
	opacity: 1;
}

.ac-cart-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: grid;
	grid-template-rows: auto minmax(0, 1fr);
	width: min(520px, 100vw);
	height: 100%;
	background: #fff;
	color: #241d1a;
	box-shadow: -32px 0 84px rgba(15, 12, 12, 0.28);
	transform: translateX(105%);
	transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1);
	outline: none;
}

.ac-cart-drawer.is-open .ac-cart-drawer__panel {
	transform: translateX(0);
}

.ac-cart-drawer__header {
	display: grid;
	grid-template-columns: 44px minmax(0, 1fr);
	align-items: center;
	gap: 8px;
	padding: 20px 24px;
	border-bottom: 1px solid rgba(36, 29, 26, 0.08);
	background: #fff;
}

.ac-cart-drawer__back {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 0;
	border-radius: 999px;
	background: transparent;
	color: #17110f;
	font-size: 38px;
	line-height: 1;
	cursor: pointer;
}

.ac-cart-drawer__back:hover,
.ac-cart-drawer__back:focus {
	background: #f7edf0;
	color: #17110f;
}

.ac-cart-drawer__header h2 {
	margin: 0;
	color: #17110f;
	font-family: "Nunito", system-ui, sans-serif;
	font-size: 26px;
	font-weight: 950;
	line-height: 1.05;
}

.ac-cart-drawer__header p {
	margin: 4px 0 0;
	color: rgba(36, 29, 26, 0.62);
	font-size: 14px;
	font-weight: 700;
}

.ac-cart-drawer__body {
	min-height: 0;
	overflow: auto;
	background: #f6f4f1;
}

.ac-cart-drawer__notice {
	display: none;
	margin: 14px 16px 0;
	padding: 12px 14px;
	border: 1px solid rgba(217, 95, 82, 0.22);
	border-radius: 14px;
	background: #fff3f2;
	color: #7f3028;
	font-size: 13px;
	font-weight: 900;
	line-height: 1.35;
}

.ac-cart-drawer.has-notice .ac-cart-drawer__notice {
	display: block;
}

.ac-cart-drawer__notice[data-type="success"] {
	border-color: rgba(101, 139, 91, 0.24);
	background: #f2f8ee;
	color: #3f6536;
}

.ac-cart-drawer__summary {
	display: flex;
	min-height: 100%;
	flex-direction: column;
}

.ac-cart-drawer__trust {
	padding: 12px 18px;
	background: #111;
	color: #fff;
	text-align: center;
	font-size: 14px;
	font-weight: 950;
}

.ac-cart-drawer__progress {
	padding: 18px 22px 20px;
	background: #fff;
	border-bottom: 1px solid rgba(36, 29, 26, 0.08);
}

.ac-cart-drawer__progress-copy {
	display: grid;
	gap: 4px;
	margin-bottom: 13px;
	text-align: center;
}

.ac-cart-drawer__progress-copy strong {
	color: #17110f;
	font-size: 20px;
	font-weight: 950;
	line-height: 1.15;
}

.ac-cart-drawer__progress-copy span {
	color: rgba(36, 29, 26, 0.62);
	font-size: 13px;
	font-weight: 800;
}

.ac-cart-drawer__progress-track {
	height: 9px;
	overflow: hidden;
	border-radius: 999px;
	background: #f1e8df;
}

.ac-cart-drawer__progress-track span {
	display: block;
	height: 100%;
	border-radius: inherit;
	background: linear-gradient(90deg, #80bea0, #e56b83);
	transition: width 0.28s ease;
}

.ac-cart-drawer__milestones {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	align-items: start;
	gap: 8px;
	margin-top: 11px;
	color: #241d1a;
	font-size: 18px;
	font-weight: 950;
	text-align: center;
}

.ac-cart-drawer__milestones span {
	display: grid;
	justify-items: center;
	gap: 2px;
	min-width: 0;
}

.ac-cart-drawer__milestones small {
	color: rgba(36, 29, 26, 0.62);
	font-size: 11px;
	font-weight: 900;
	line-height: 1.1;
}

.ac-cart-drawer__items {
	display: grid;
	gap: 14px;
	padding: 18px 16px;
}

.ac-cart-drawer__item {
	position: relative;
	display: grid;
	grid-template-columns: 88px minmax(0, 1fr);
	gap: 14px;
	align-items: center;
	padding: 14px 48px 14px 14px;
	border: 1px solid rgba(36, 29, 26, 0.1);
	border-radius: 20px;
	background: #fff;
	box-shadow: 0 14px 34px rgba(36, 29, 26, 0.07);
}

.ac-cart-drawer__thumb {
	display: block;
	overflow: hidden;
	width: 88px;
	height: 88px;
	border: 1px solid rgba(36, 29, 26, 0.12);
	border-radius: 16px;
	background: #fff;
}

.ac-cart-drawer__thumb img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.ac-cart-drawer__item-main {
	min-width: 0;
}

.ac-cart-drawer__item-title {
	display: -webkit-box;
	overflow: hidden;
	color: #1d1715;
	font-size: 16px;
	font-weight: 900;
	line-height: 1.25;
	text-decoration: none;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.ac-cart-drawer__item-title:hover {
	color: #d95f52;
}

.ac-cart-drawer__item-meta {
	margin-top: 6px;
	color: rgba(36, 29, 26, 0.72);
	font-size: 14px;
	font-weight: 900;
}

.ac-cart-drawer__qty {
	display: inline-grid;
	grid-template-columns: 38px 44px 38px;
	align-items: center;
	margin-top: 10px;
	overflow: hidden;
	border: 1px solid #f0cdd7;
	border-radius: 999px;
	background: #fff8fa;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.ac-cart-drawer__qty-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	min-width: 38px !important;
	height: 36px;
	min-height: 36px;
	padding: 0 !important;
	border: 0;
	background: #fdeaf0 !important;
	color: #241d1a !important;
	font-size: 19px;
	font-weight: 950;
	line-height: 1;
	cursor: pointer;
	transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.ac-cart-drawer__qty-btn:hover,
.ac-cart-drawer__qty-btn:focus {
	background: #efc7d2 !important;
	color: #17110f !important;
}

.ac-cart-drawer__qty-btn:disabled {
	opacity: 0.48;
	cursor: not-allowed;
}

.ac-cart-drawer__qty-value {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	height: 36px;
	border-right: 1px solid #efd4dc;
	border-left: 1px solid #efd4dc;
	background: #fff;
	color: #17110f;
	font-size: 16px;
	font-weight: 950;
}

.ac-cart-drawer__remove {
	position: absolute;
	top: 18px;
	right: 16px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	min-width: 34px !important;
	height: 34px;
	min-height: 34px;
	padding: 0 !important;
	border: 1px solid rgba(36, 29, 26, 0.14);
	border-radius: 999px;
	background: #fff !important;
	color: #493a35 !important;
	font-size: 24px;
	font-weight: 700;
	line-height: 1;
	cursor: pointer;
	box-shadow: 0 8px 22px rgba(36, 29, 26, 0.1);
	z-index: 2;
	transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease, transform 0.16s ease;
}

.ac-cart-drawer__remove:hover,
.ac-cart-drawer__remove:focus {
	border-color: #15100f;
	background: #15100f !important;
	color: #fff !important;
	transform: translateY(-1px);
}

.ac-cart-drawer__recs {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin: 0 16px 16px;
	padding: 17px;
	border: 1px solid rgba(36, 29, 26, 0.08);
	border-radius: 18px;
	background: #fff;
}

.ac-cart-drawer__recs strong {
	display: block;
	color: #17110f;
	font-size: 17px;
	font-weight: 950;
}

.ac-cart-drawer__recs span {
	display: block;
	margin-top: 3px;
	color: rgba(36, 29, 26, 0.62);
	font-size: 13px;
	font-weight: 700;
}

.ac-cart-drawer__recs a {
	flex: 0 0 auto;
	color: #d95f52;
	font-size: 13px;
	font-weight: 950;
	text-decoration: underline;
	text-underline-offset: 4px;
}

.ac-cart-drawer__footer {
	position: sticky;
	bottom: 0;
	display: grid;
	gap: 12px;
	margin-top: auto;
	padding: 0 20px 20px;
	background: linear-gradient(180deg, rgba(245, 244, 242, 0), #fff 18%, #fff 100%);
}

.ac-cart-drawer__save {
	margin: 0 -20px;
	padding: 12px 20px;
	background: linear-gradient(90deg, #83dfc2, #d6f5e8);
	color: #071c17;
	text-align: center;
	font-size: 17px;
	font-weight: 950;
}

.ac-cart-drawer__total {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 14px;
	color: #17110f;
}

.ac-cart-drawer__total span {
	font-size: 14px;
	font-weight: 800;
	color: rgba(36, 29, 26, 0.66);
}

.ac-cart-drawer__total strong {
	font-size: 20px;
	font-weight: 950;
}

.ac-cart-drawer__checkout,
.ac-cart-drawer__cart-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	border-radius: 16px;
	font-size: 16px;
	font-weight: 950;
	text-decoration: none;
}

.ac-cart-drawer__checkout {
	background: #050505;
	color: #fff !important;
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.ac-cart-drawer__checkout:hover,
.ac-cart-drawer__checkout:focus {
	background: #241d1a;
	color: #fff !important;
}

.ac-cart-drawer__cart-link {
	min-height: 44px;
	border: 1px solid rgba(36, 29, 26, 0.12);
	background: #fff;
	color: #241d1a !important;
}

.ac-cart-drawer__empty {
	display: grid;
	place-items: center;
	align-content: center;
	min-height: 100%;
	padding: 34px 28px;
	text-align: center;
}

.ac-cart-drawer__empty h3 {
	margin: 0 0 8px;
	color: #17110f;
	font-size: 28px;
	font-weight: 950;
}

.ac-cart-drawer__empty p {
	max-width: 300px;
	margin: 0 0 22px;
	color: rgba(36, 29, 26, 0.66);
	font-size: 15px;
	font-weight: 700;
	line-height: 1.5;
}

.ac-cart-drawer.is-updating .ac-cart-drawer__body {
	cursor: progress;
}

.ac-cart-drawer.is-updating .ac-cart-drawer__summary {
	opacity: 0.64;
	pointer-events: none;
}

html.ac-cart-drawer-ready body.single-product form.cart > a.added_to_cart.wc-forward,
html.ac-cart-drawer-ready body.woocommerce ul.products li.product a.added_to_cart.wc-forward {
	display: none !important;
}

html body.woocommerce-cart button[name="update_cart"],
html body.woocommerce-cart input[name="update_cart"],
html body .woocommerce-cart-form button[name="update_cart"],
html body .woocommerce-cart-form input[name="update_cart"],
html body .shop_table.cart button[name="update_cart"],
html body .shop_table.cart input[name="update_cart"] {
	display: none !important;
}

@media (max-width: 544px) {
	.ac-cart-drawer__panel {
		width: 100vw;
	}

	.ac-cart-drawer__header {
		padding: 14px 14px;
	}

	.ac-cart-drawer__header h2 {
		font-size: 24px;
	}

	.ac-cart-drawer__items {
		padding: 14px 10px;
	}

	.ac-cart-drawer__item {
		grid-template-columns: 74px minmax(0, 1fr);
		gap: 10px;
		padding: 12px 44px 12px 12px;
		border-radius: 16px;
	}

	.ac-cart-drawer__remove {
		top: 14px;
		right: 12px;
		width: 32px;
		min-width: 32px !important;
		height: 32px;
		min-height: 32px;
		font-size: 22px;
	}

	.ac-cart-drawer__qty {
		grid-template-columns: 38px 46px 38px;
	}

	.ac-cart-drawer__thumb {
		width: 74px;
		height: 74px;
	}

	.ac-cart-drawer__recs {
		align-items: flex-start;
		flex-direction: column;
		margin-right: 10px;
		margin-left: 10px;
	}

	html body.single-product div.product form.cart {
		align-items: stretch !important;
		gap: 10px !important;
	}

	html body.single-product form.cart .quantity.ac-qty-stepper {
		width: 140px !important;
		grid-template-columns: 42px 56px 42px !important;
	}

	html body.single-product div.product .single_add_to_cart_button,
	html body.single-product div.product form.cart button.single_add_to_cart_button {
		flex: 1 1 auto !important;
		min-width: 0 !important;
		padding-right: 18px !important;
		padding-left: 18px !important;
	}
}

@media (max-width: 980px) {
	html body.single-product div.product {
		padding-top: 44px !important;
	}

	html body.single-product .related.products ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
	}
}

@media (max-width: 544px) {
	html body.single-product .related.products {
		padding-right: 16px !important;
		padding-left: 16px !important;
	}

	html body.single-product .related.products ul.products {
		grid-template-columns: 1fr !important;
	}

	html .ast-site-header-cart .widget_shopping_cart,
	html .ast-header-woo-cart .widget_shopping_cart {
		width: calc(100vw - 22px) !important;
	}
}

/* ==========================================================================
   HOME HERO POLISH 3.1.44
   Adds breathing room below the nav and replaces the old black hero seal.
   ========================================================================== */
html body .acp.acp-home .acp-hero {
	padding-top: 136px !important;
	padding-bottom: 44px !important;
	background:
		radial-gradient(circle at 82% 8%, rgba(229, 98, 126, 0.14), transparent 28%),
		linear-gradient(90deg, #fff 0%, #fff 53%, #fff5f8 100%) !important;
}

html body .acp.acp-home .acp-hero-grid {
	align-items: center !important;
}

html body .acp.acp-home .acp-hero-copy {
	padding-top: 0 !important;
}

html body .acp.acp-home .acp-badge-row {
	margin-top: 0 !important;
	margin-bottom: 22px !important;
}

html body .acp.acp-home .acp-seal {
	right: 86px !important;
	bottom: 70px !important;
	width: 132px !important;
	height: auto !important;
	min-height: 88px !important;
	padding: 16px 18px !important;
	border: 1px solid rgba(36, 29, 26, 0.12) !important;
	border-radius: 18px !important;
	background: rgba(255, 255, 255, 0.92) !important;
	color: transparent !important;
	font-size: 0 !important;
	box-shadow: 0 18px 42px rgba(36, 29, 26, 0.14) !important;
	transform: rotate(-7deg) !important;
	animation: acpSealFloat 6.5s ease-in-out 1.2s infinite !important;
	backdrop-filter: blur(10px);
}

html body .acp.acp-home .acp-seal::before {
	content: "GIFT & COLLECT";
	display: block;
	margin-bottom: 7px;
	color: #d95f73;
	font-family: "Nunito", system-ui, sans-serif;
	font-size: 10px;
	font-weight: 950;
	letter-spacing: 0.12em;
	line-height: 1;
	text-transform: uppercase;
}

html body .acp.acp-home .acp-seal::after {
	content: "Tiny art\A made personal";
	display: block;
	color: #241d1a;
	font-family: "Nunito", system-ui, sans-serif;
	font-size: 17px;
	font-weight: 950;
	line-height: 1.04;
	white-space: pre-line;
}

@keyframes acpSealFloat {
	0%, 100% {
		transform: translate3d(0, 0, 0) rotate(-7deg);
	}
	50% {
		transform: translate3d(0, -7px, 0) rotate(-5deg);
	}
}

@media (max-width: 980px) {
	html body .acp.acp-home .acp-hero {
		padding-top: 84px !important;
	}

	html body .acp.acp-home .acp-seal {
		right: 42px !important;
		bottom: 48px !important;
	}
}

@media (max-width: 620px) {
	html body .acp.acp-home .acp-hero {
		padding-top: 62px !important;
		padding-bottom: 28px !important;
	}

	html body .acp.acp-home .acp-hero-copy {
		padding-top: 0 !important;
	}

	html body .acp.acp-home .acp-seal {
		right: 24px !important;
		bottom: 42px !important;
		width: 112px !important;
		min-height: 76px !important;
		padding: 13px 14px !important;
		border-radius: 16px !important;
	}

	html body .acp.acp-home .acp-seal::after {
		font-size: 14px;
	}
}

/* ==========================================================================
   PRIMARY MENU CLEANUP 3.1.45
   Bookmarks is a direct link; Brooch Pins is a direct collection link.
   ========================================================================== */
body:has(.acp) .main-header-menu > .menu-item > a[href*="acp_search=bookmark"] .sub-arrow,
body:has(.acp) .main-header-menu > .menu-item > a[href*="acp_search=bookmark"] .dropdown-menu-toggle,
body:has(.acp) .main-header-menu > .menu-item > a[href*="acp_search=bookmark"] + .sub-menu,
body:has(.acp) .main-header-menu > .menu-item > a[href*="acp_search=brooch"] + .sub-menu {
	display: none !important;
}

/* ==========================================================================
   FOOTER ALIGNMENT POLISH 3.1.53
   Keeps Astra footer widgets on a premium, balanced grid and fixes the lazy
   logo placeholder that can render as a tiny mark inside a large box.
   ========================================================================== */
html body .site-footer,
html body footer.site-footer,
html body .site-footer .site-primary-footer-wrap,
html body .site-footer .site-below-footer-wrap,
html body .site-footer .site-primary-footer-wrap[data-section],
html body .site-footer .site-below-footer-wrap[data-section] {
	background: linear-gradient(112deg, #211a20 0%, #30242c 48%, #5a3040 100%) !important;
	background-color: #211a20 !important;
	color: rgba(255, 255, 255, 0.86) !important;
}

html body .site-footer .site-primary-footer-wrap {
	padding: 56px 24px 46px !important;
}

html body .site-footer .site-primary-footer-wrap .ast-builder-footer-grid-columns {
	display: grid !important;
	grid-template-columns: minmax(320px, 1.18fr) minmax(210px, 0.56fr) minmax(150px, 0.26fr) !important;
	gap: clamp(36px, 6vw, 92px) !important;
	align-items: center !important;
	max-width: 1180px !important;
	min-height: 0 !important;
	margin: 0 auto !important;
}

html body .site-footer .site-footer-primary-section-1,
html body .site-footer .site-footer-primary-section-2,
html body .site-footer .site-footer-primary-section-3,
html body .site-footer .footer-widget-area,
html body .site-footer .footer-widget-area-inner,
html body .site-footer .widget {
	min-height: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
}

html body .site-footer .site-footer-primary-section-1 {
	display: grid !important;
	grid-template-columns: 122px minmax(0, 1fr) !important;
	gap: 28px 34px !important;
	align-items: center !important;
}

html body .site-footer .site-footer-primary-section-1 .widget:first-child {
	grid-row: 1 / span 3 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 122px !important;
	min-height: 122px !important;
	margin: 0 !important;
	border-radius: 24px !important;
	background: rgba(255, 255, 255, 0.06) !important;
}

html body .site-footer .site-footer-primary-section-1 .widget:first-child::before {
	content: "" !important;
	display: block !important;
	width: 92px !important;
	height: 66px !important;
	background: url("https://artsychimes.com/wp-content/uploads/2024/08/logo-ac-black-2-1.png") center / contain no-repeat !important;
	filter: brightness(0) invert(1) !important;
	opacity: 0.94 !important;
}

html body .site-footer .site-footer-primary-section-1 .widget:first-child img {
	display: none !important;
}

html body .site-footer .site-footer-primary-section-1 .widget {
	width: auto !important;
	margin: 0 !important;
}

html body .site-footer .site-footer-primary-section-1 .widget:nth-child(2),
html body .site-footer .site-footer-primary-section-1 .widget:nth-child(3),
html body .site-footer .site-footer-primary-section-1 .widget:nth-child(4) {
	grid-column: 2 !important;
}

html body .site-footer .widget-title,
html body .site-footer h1,
html body .site-footer h2,
html body .site-footer h3,
html body .site-footer h4,
html body .site-footer h5,
html body .site-footer h6 {
	margin: 0 0 14px !important;
	color: #ffffff !important;
	font-family: "Fraunces", Georgia, serif !important;
	font-size: 17px !important;
	font-weight: 800 !important;
	letter-spacing: 0.14em !important;
	line-height: 1.2 !important;
	text-transform: uppercase !important;
}

html body .site-footer p,
html body .site-footer li,
html body .site-footer a,
html body .site-footer label {
	color: rgba(255, 255, 255, 0.84) !important;
	font-size: 16px !important;
	line-height: 1.65 !important;
}

html body .site-footer a:hover,
html body .site-footer a:focus {
	color: #f4a4b5 !important;
}

html body .site-footer .uagb-forms-main-form {
	display: flex !important;
	align-items: center !important;
	gap: 14px !important;
	width: min(100%, 440px) !important;
	margin-top: 8px !important;
}

html body .site-footer .uagb-forms-email-input,
html body .site-footer input[type="email"] {
	flex: 1 1 auto !important;
	width: auto !important;
	min-width: 0 !important;
	min-height: 48px !important;
	padding: 0 22px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #ffffff !important;
	color: #241d1a !important;
	box-shadow: 0 18px 34px rgba(0, 0, 0, 0.16) !important;
}

html body .site-footer .uagb-forms-main-submit-button,
html body .site-footer button,
html body .site-footer input[type="submit"] {
	flex: 0 0 auto !important;
	min-height: 48px !important;
	padding: 0 26px !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #e56b83 !important;
	color: #ffffff !important;
	font-weight: 900 !important;
	box-shadow: 0 18px 34px rgba(229, 107, 131, 0.22) !important;
}

html body .site-footer .site-footer-primary-section-2 {
	align-self: center !important;
}

html body .site-footer .site-footer-primary-section-2 .widget_nav_menu {
	max-width: 220px !important;
	margin: 0 auto !important;
}

html body .site-footer .site-footer-primary-section-2 ul,
html body .site-footer .site-footer-primary-section-2 .menu {
	display: grid !important;
	gap: 8px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

html body .site-footer .site-footer-primary-section-2 a {
	display: inline-flex !important;
	padding: 0 !important;
	font-weight: 800 !important;
	text-decoration: none !important;
}

html body .site-footer .site-footer-primary-section-3 {
	align-self: start !important;
	justify-self: end !important;
	padding-top: 2px !important;
}

html body .site-footer .site-below-footer-wrap {
	padding: 0 !important;
	border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
	background: rgba(15, 12, 14, 0.38) !important;
}

html body .site-footer .site-below-footer-wrap .ast-builder-footer-grid-columns {
	min-height: 72px !important;
	max-width: 1180px !important;
	margin: 0 auto !important;
}

html body .site-footer .ast-footer-copyright,
html body .site-footer .ast-footer-copyright p {
	margin: 0 !important;
	color: rgba(255, 255, 255, 0.82) !important;
	font-size: 15px !important;
	text-align: center !important;
}

@media (max-width: 920px) {
	html body .site-footer .site-primary-footer-wrap .ast-builder-footer-grid-columns {
		grid-template-columns: 1fr !important;
		gap: 34px !important;
		text-align: center !important;
	}

	html body .site-footer .site-footer-primary-section-1 {
		grid-template-columns: 1fr !important;
		justify-items: center !important;
	}

	html body .site-footer .site-footer-primary-section-1 .widget:first-child,
	html body .site-footer .site-footer-primary-section-1 .widget:nth-child(2),
	html body .site-footer .site-footer-primary-section-1 .widget:nth-child(3),
	html body .site-footer .site-footer-primary-section-1 .widget:nth-child(4) {
		grid-column: 1 !important;
		grid-row: auto !important;
	}

	html body .site-footer .site-footer-primary-section-2 .widget_nav_menu,
	html body .site-footer .uagb-forms-main-form {
		margin-right: auto !important;
		margin-left: auto !important;
	}

	html body .site-footer .site-footer-primary-section-3 {
		justify-self: center !important;
	}
}

@media (max-width: 560px) {
	html body .site-footer .site-primary-footer-wrap {
		padding: 42px 18px 36px !important;
	}

	html body .site-footer .uagb-forms-main-form {
		flex-direction: column !important;
	}

	html body .site-footer .uagb-forms-email-input,
	html body .site-footer input[type="email"],
	html body .site-footer .uagb-forms-main-submit-button,
	html body .site-footer button,
	html body .site-footer input[type="submit"] {
		width: 100% !important;
	}
}

/* Footer widget area alignment correction 3.1.54. */
html body .site-footer .site-footer-primary-section-1 {
	display: block !important;
}

html body .site-footer .site-footer-primary-section-1 > .footer-widget-area {
	display: grid !important;
	grid-template-columns: 122px minmax(0, 1fr) !important;
	gap: 18px 34px !important;
	align-items: center !important;
	width: 100% !important;
}

html body .site-footer .site-footer-primary-section-1 > .footer-widget-area > .widget {
	width: auto !important;
	margin: 0 !important;
}

html body .site-footer .site-footer-primary-section-1 > .footer-widget-area > .widget:first-child {
	grid-column: 1 !important;
	grid-row: 1 / span 3 !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	width: 122px !important;
	min-height: 122px !important;
	border-radius: 24px !important;
	background: rgba(255, 255, 255, 0.06) !important;
}

html body .site-footer .site-footer-primary-section-1 > .footer-widget-area > .widget:first-child::before {
	content: "Artsy\A Chimes" !important;
	display: block !important;
	width: auto !important;
	height: auto !important;
	background: none !important;
	filter: none !important;
	color: #ffffff !important;
	font-family: "Fraunces", Georgia, serif !important;
	font-size: 27px !important;
	font-weight: 900 !important;
	letter-spacing: 0 !important;
	line-height: 0.86 !important;
	text-align: center !important;
	text-transform: none !important;
	white-space: pre-line !important;
	opacity: 0.98 !important;
	text-shadow: 0 10px 28px rgba(0, 0, 0, 0.24) !important;
}

html body .site-footer .site-footer-primary-section-1 > .footer-widget-area > .widget:first-child img {
	display: none !important;
}

html body .site-footer .site-footer-primary-section-1 > .footer-widget-area > .widget:first-child > * {
	display: none !important;
}

html body .site-footer .site-footer-primary-section-1 > .footer-widget-area > .widget:nth-child(n+2) {
	grid-column: 2 !important;
}

html body .site-footer .site-footer-primary-section-1 > .footer-widget-area > .widget .uagb-forms-main-form {
	width: min(100%, 440px) !important;
}

@media (max-width: 920px) {
	html body .site-footer .site-footer-primary-section-1 > .footer-widget-area {
		grid-template-columns: 1fr !important;
		justify-items: center !important;
		text-align: center !important;
	}

	html body .site-footer .site-footer-primary-section-1 > .footer-widget-area > .widget:first-child,
	html body .site-footer .site-footer-primary-section-1 > .footer-widget-area > .widget:nth-child(n+2) {
		grid-column: 1 !important;
		grid-row: auto !important;
	}
}
