/**
 * Theme Name: Austmystik
 * Theme URI: https://www.austmystik.com.au/
 * Author: AustMystik
 * Description: A simple, elegant WordPress theme inspired by AustMystik candles. Cream, gold, and serif typography — designed for both the Classic Editor and Gutenberg.
 * Version: 1.2.5
 * Requires at least: 6.0
 * Tested up to: 6.7
 * Requires PHP: 7.4
 * Text Domain: austmystik
 */

/* -------------------------------------------------------------------------- */
/*  Design tokens                                                              */
/* -------------------------------------------------------------------------- */

:root {
	--am-cream: #fdf8f0;
	--am-cream-soft: #f9f0e3;
	--am-cream-deep: #f0e4d1;
	--am-gold: #d4a843;
	--am-tan: #cba98a;
	--am-ink: #2c2c2c;
	--am-muted: #6b6560;
	--am-white: #ffffff;
	--am-charcoal: #1a1a1a;
	--am-bar-from: #b8926e;
	--am-bar-to: #a37b56;
	--am-heading: "DM Serif Display", Georgia, "Times New Roman", serif;
	--am-body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
	--am-content: 45rem;
	--am-wide: 72rem;
	--am-full: 80rem; /* Tailwind max-w-7xl */
	--am-gutter: clamp(1.25rem, 4vw, 2rem);
	--am-radius: 1.25rem;
	--am-radius-pill: 999px;
	--am-header-h: 5rem;
}

/* -------------------------------------------------------------------------- */
/*  Reset                                                                      */
/* -------------------------------------------------------------------------- */

*,
*::before,
*::after {
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	overflow-x: clip;
}

body {
	margin: 0;
	font-family: var(--am-body);
	font-size: 1.0625rem;
	line-height: 1.75;
	color: var(--am-ink);
	background: var(--am-cream);
	-webkit-font-smoothing: antialiased;
}

img,
video,
iframe {
	max-width: 100%;
	height: auto;
}

img {
	display: block;
}

a {
	color: var(--am-ink);
	text-decoration: none;
}

a:hover {
	color: var(--am-gold);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--am-heading);
	font-weight: 400;
	line-height: 1.2;
	color: var(--am-ink);
	margin: 0 0 0.75em;
}

h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.25rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; font-family: var(--am-body); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }

p {
	margin: 0 0 1.25em;
}

ul,
ol {
	padding-left: 1.25em;
}

figure {
	margin: 0;
}

button,
input,
textarea,
select {
	font-family: inherit;
	font-size: inherit;
}

/* -------------------------------------------------------------------------- */
/*  Helpers                                                                    */
/* -------------------------------------------------------------------------- */

.screen-reader-text,
.skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
}

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	z-index: 10000;
	padding: 0.5rem 1rem;
	background: var(--am-ink);
	color: var(--am-white);
	border-radius: 4px;
}

.wrap {
	width: min(var(--am-wide), calc(100% - var(--am-gutter) * 2));
	margin-inline: auto;
}

.alignleft { float: left; margin: 0 1.5rem 1rem 0; }
.alignright { float: right; margin: 0 0 1rem 1.5rem; }
.aligncenter { display: block; margin: 1.5rem auto; }
.alignnone { margin: 1.5rem 0; }
.alignwide { max-width: var(--am-wide); margin-left: auto; margin-right: auto; }
.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.wp-caption { max-width: 100%; }
.wp-caption-text,
.gallery-caption {
	font-size: 0.875rem;
	color: var(--am-muted);
	margin-top: 0.5rem;
}

.sticky {}
.bypostauthor {}
.gallery { display: flex; flex-wrap: wrap; gap: 1rem; }

/* -------------------------------------------------------------------------- */
/*  Announcement                                                               */
/* -------------------------------------------------------------------------- */

.announcement-bar {
	background: linear-gradient(to right, var(--am-bar-from), var(--am-bar-to));
	color: var(--am-white);
	text-align: center;
	font-size: 0.8125rem;
	font-weight: 500;
	letter-spacing: 0.01em;
	padding: 0.55rem 2.5rem;
	position: relative;
}

.announcement-bar p {
	margin: 0;
}

.announcement-dismiss {
	position: absolute;
	right: 0.75rem;
	top: 50%;
	transform: translateY(-50%);
	background: none;
	border: 0;
	color: inherit;
	cursor: pointer;
	font-size: 1.1rem;
	line-height: 1;
	opacity: 0.85;
}

body.announcement-hidden .announcement-bar {
	display: none;
}

/* -------------------------------------------------------------------------- */
/*  Header                                                                     */
/* -------------------------------------------------------------------------- */

.site-header {
	background: var(--am-white);
	position: sticky;
	top: 0;
	z-index: 100;
	box-shadow: 0 1px 0 rgba(44, 44, 44, 0.06);
}

.header-inner {
	display: grid;
	grid-template-columns: 2.5rem 1fr auto;
	align-items: center;
	min-height: var(--am-header-h);
	gap: 0.75rem;
}

.header-tools {
	grid-column: 3;
	grid-row: 1;
}

.site-branding {
	justify-self: center;
	text-align: center;
}

.custom-logo-link img,
.custom-logo {
	height: 4.5rem;
	width: auto;
}

.site-title-mark {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	color: var(--am-ink);
	text-decoration: none;
}

.site-title-mark:hover {
	color: var(--am-ink);
}

.site-title {
	font-family: var(--am-heading);
	font-size: 1.65rem;
	font-weight: 400;
	margin: 0;
	line-height: 1;
}

.site-description {
	display: none;
}

.menu-toggle {
	background: none;
	border: 0;
	padding: 0.35rem;
	cursor: pointer;
	color: var(--am-ink);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.menu-toggle svg {
	display: block;
}

/* Navigation */

.primary-navigation {
	display: none;
}

.primary-navigation.is-open {
	display: block;
	grid-column: 1 / -1;
	padding-bottom: 1.25rem;
}

.primary-navigation .menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.primary-navigation .menu > li {
	border-top: 1px solid var(--am-cream-deep);
}

.primary-navigation a {
	display: block;
	padding: 0.85rem 0;
	font-size: 0.95rem;
	font-weight: 500;
	color: var(--am-ink);
}

.primary-navigation .sub-menu {
	list-style: none;
	margin: 0;
	padding: 0 0 0.5rem 1rem;
}

.primary-navigation .menu-item-all-products a {
	font-weight: 600;
}

.primary-navigation .current-menu-item > a,
.primary-navigation a:hover {
	color: var(--am-gold);
}

.header-search {
	display: none;
	grid-column: 1 / -1;
	padding: 0 0 1.25rem;
}

.header-search.is-open {
	display: block;
}

body.nav-open {
	overflow: hidden;
}

@media (min-width: 960px) {
	.header-inner {
		grid-template-columns: 1fr auto 1fr;
		position: relative;
	}

	.menu-toggle {
		display: none;
	}

	.site-branding {
		grid-column: 2;
		grid-row: 1;
	}

	.header-tools {
		grid-column: 3;
		grid-row: 1;
	}

	.primary-navigation {
		display: block;
		grid-column: 1 / -1;
		grid-row: 2;
		padding-bottom: 1rem;
	}

	.primary-navigation .menu {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 0.25rem 1.75rem;
	}

	.primary-navigation .menu > li {
		border: 0;
		position: relative;
	}

	.primary-navigation a {
		padding: 0.35rem 0;
	}

	.primary-navigation .sub-menu {
		display: none;
		position: absolute;
		top: 100%;
		left: 50%;
		transform: translateX(-50%);
		min-width: 14rem;
		background: var(--am-white);
		padding: 0.5rem 0;
		border-radius: 0.75rem;
		box-shadow: 0 12px 32px rgba(44, 44, 44, 0.12);
		z-index: 20;
	}

	.primary-navigation li:hover > .sub-menu,
	.primary-navigation li:focus-within > .sub-menu {
		display: block;
	}

	.primary-navigation .sub-menu a {
		padding: 0.5rem 1rem;
		white-space: nowrap;
	}

	.primary-navigation .menu-item-all-products a {
		font-weight: 600;
	}

	.primary-navigation .menu-item-all-products + li {
		border-top: 1px solid var(--am-cream-deep);
		margin-top: 0.25rem;
		padding-top: 0.25rem;
	}

	.header-search {
		grid-column: 1 / -1;
		grid-row: 3;
	}
}

/* -------------------------------------------------------------------------- */
/*  Page titles                                                                */
/* -------------------------------------------------------------------------- */

.page-hero {
	text-align: center;
	padding: 3rem 0 2.5rem;
}

.eyebrow {
	display: block;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--am-tan);
	margin-bottom: 0.85rem;
}

.page-hero .eyebrow {
	margin-bottom: 0.85rem;
}

.page-hero h1 {
	margin-bottom: 0.5rem;
}

.page-hero .lede {
	color: var(--am-muted);
	font-size: 1.125rem;
	max-width: 36rem;
	margin: 0 auto;
}

.breadcrumb {
	font-size: 0.875rem;
	color: var(--am-muted);
	padding: 1.25rem 0 0;
}

.breadcrumb a {
	color: var(--am-muted);
}

.breadcrumb .current {
	color: var(--am-ink);
	font-weight: 500;
}

.am-crumbs {
	padding-top: 1.5rem;
}

body.am-has-crumbs .am-crumbs .woocommerce-breadcrumb {
	margin: 0 0 1.35rem;
}

.woocommerce-breadcrumb {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.15rem;
	font-family: var(--am-body);
	font-size: 0.8rem;
	font-weight: 400;
	color: var(--am-muted);
	margin: 0;
}

.woocommerce-breadcrumb a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--am-muted);
	text-decoration: none;
}

.woocommerce-breadcrumb a:hover {
	color: var(--am-gold);
}

.woocommerce-breadcrumb .lucide,
.woocommerce-breadcrumb svg {
	width: 0.85rem;
	height: 0.85rem;
	stroke-width: 1.75;
	flex-shrink: 0;
}

.woocommerce-breadcrumb .current {
	color: var(--am-muted);
	font-weight: 400;
}

.am-shop-crumb-sep {
	padding: 0 0.35rem;
	color: var(--am-muted);
}

body.am-has-crumbs .site-main.am-full-width,
body.am-has-crumbs .site-main.wrap {
	padding-top: 0;
}

body.am-has-crumbs .page-hero,
body.am-has-crumbs .entry-header {
	padding-top: 0.15rem;
}

body.am-has-crumbs .am-content__inner {
	padding-top: 0.35rem;
}

/* -------------------------------------------------------------------------- */
/*  Content                                                                    */
/* -------------------------------------------------------------------------- */

.site-main {
	padding-bottom: 4.5rem;
}

.entry-header {
	text-align: center;
	padding: 2.75rem 0 1.5rem;
}

.entry-header .post-meta {
	justify-content: center;
}

.entry-header h1 {
	margin: 0.35rem 0 0.75rem;
}

.featured-image {
	max-width: var(--am-content);
	margin: 0 auto 2rem;
	border-radius: var(--am-radius);
	overflow: hidden;
}

.featured-image img {
	width: 100%;
}

.entry-content,
.entry-summary,
.page-content,
.comment-content {
	max-width: var(--am-content);
	margin-inline: auto;
	color: var(--am-muted);
}

body.am-product .entry-summary {
	max-width: none;
	margin-inline: 0;
	width: 100%;
}

.entry-content > *:first-child,
.page-content > *:first-child {
	margin-top: 0;
}

.entry-content a,
.page-content a,
.comment-content a {
	color: var(--am-ink);
	text-decoration: underline;
	text-decoration-color: var(--am-cream-deep);
	text-underline-offset: 3px;
}

.entry-content a:hover,
.page-content a:hover {
	color: var(--am-gold);
	text-decoration-color: var(--am-gold);
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
	color: var(--am-ink);
	margin-top: 1.75em;
}

.entry-content .alignwide,
.page-content .alignwide {
	max-width: var(--am-wide);
}

.entry-content .alignfull,
.page-content .alignfull {
	max-width: 100vw;
}

.entry-content ul,
.entry-content ol,
.page-content ul,
.page-content ol {
	color: var(--am-muted);
}

.entry-content blockquote,
.page-content blockquote,
.wp-block-quote {
	border: 0;
	margin: 2rem auto;
	padding: 0;
	text-align: center;
	max-width: 38rem;
}

.entry-content blockquote p,
.wp-block-quote p {
	font-family: var(--am-heading);
	font-style: italic;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	line-height: 1.45;
	color: var(--am-tan);
	margin: 0;
}

.wp-block-quote cite,
.entry-content blockquote cite {
	display: block;
	margin-top: 1rem;
	font-family: var(--am-body);
	font-style: normal;
	font-size: 0.9rem;
	color: var(--am-muted);
}

.entry-content hr,
.wp-block-separator {
	border: 0;
	border-top: 1px solid var(--am-cream-deep);
	max-width: 12rem;
	margin: 2.5rem auto;
}

.has-drop-cap:not(:focus)::first-letter {
	font-family: var(--am-heading);
	color: var(--am-ink);
}

.wp-block-image img {
	border-radius: 0.75rem;
}

.wp-block-gallery {
	gap: 1rem;
}

.wp-block-columns {
	gap: 2rem;
}

.wp-block-column h3 {
	margin-bottom: 0.5em;
}

.wp-block-pullquote {
	border: 0;
	text-align: center;
}

.wp-block-pullquote p {
	font-family: var(--am-heading);
	font-style: italic;
	color: var(--am-tan);
}

.wp-block-table table {
	width: 100%;
	border-collapse: collapse;
}

.wp-block-table td,
.wp-block-table th {
	border: 1px solid var(--am-cream-deep);
	padding: 0.65rem 0.85rem;
}

.wp-block-code,
code {
	font-size: 0.9em;
}

pre {
	background: var(--am-cream-soft);
	padding: 1.25rem;
	border-radius: 0.75rem;
	overflow: auto;
}

/* Buttons — Classic + Gutenberg */

.button,
.wp-block-button__link,
.wp-element-button,
input[type="submit"],
.comment-form input[type="submit"],
.search-submit {
	display: inline-block;
	background: var(--am-ink);
	color: var(--am-white) !important;
	border: 1px solid var(--am-ink);
	border-radius: var(--am-radius-pill);
	padding: 0.75rem 1.75rem;
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1.2;
	text-decoration: none !important;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.wp-block-button__link:hover,
.wp-element-button:hover,
input[type="submit"]:hover,
.search-submit:hover {
	background: var(--am-gold);
	border-color: var(--am-gold);
	color: var(--am-white) !important;
}

.wp-block-button.is-style-outline .wp-block-button__link,
.button.outline {
	background: transparent;
	color: var(--am-ink) !important;
	border-color: rgba(44, 44, 44, 0.3);
}

.wp-block-button.is-style-outline .wp-block-button__link:hover,
.button.outline:hover {
	background: var(--am-ink);
	color: var(--am-white) !important;
	border-color: var(--am-ink);
}

.wp-block-buttons {
	gap: 0.75rem;
}

/* Forms */

input[type="text"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="password"],
textarea,
select {
	width: 100%;
	border: 1px solid var(--am-cream-deep);
	background: var(--am-white);
	border-radius: var(--am-radius-pill);
	padding: 0.85rem 1.25rem;
	color: var(--am-ink);
	outline: none;
}

textarea {
	border-radius: 1rem;
	min-height: 8rem;
}

input:focus,
textarea:focus,
select:focus {
	border-color: var(--am-tan);
}

label {
	display: block;
	font-size: 0.85rem;
	font-weight: 500;
	margin-bottom: 0.35rem;
}

/* -------------------------------------------------------------------------- */
/*  Blog cards                                                                 */
/* -------------------------------------------------------------------------- */

.post-feed {
	display: grid;
	gap: 1.25rem;
	max-width: 48rem;
	margin: 0 auto;
}

.post-card {
	display: block;
	background: var(--am-white);
	border-radius: var(--am-radius);
	padding: 1.75rem 1.75rem 1.5rem;
	box-shadow: 0 1px 0 rgba(44, 44, 44, 0.04);
	transition: transform 0.2s ease, box-shadow 0.2s ease;
	color: inherit;
}

.post-card:hover {
	color: inherit;
	transform: translateY(-2px);
	box-shadow: 0 10px 28px rgba(44, 44, 44, 0.08);
}

.post-card.has-image {
	padding: 0;
	overflow: hidden;
}

.post-card.has-image .post-card-body {
	padding: 1.5rem 1.75rem 1.5rem;
}

.post-card-thumb img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
}

.post-meta {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 0.65rem;
	font-size: 0.75rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.post-category {
	color: var(--am-gold);
	font-weight: 600;
}

.post-card:hover .post-category {
	color: var(--am-gold);
}

.posted-on {
	color: #b0aaa3;
	font-weight: 500;
}

.post-card h2 {
	font-size: 1.5rem;
	margin: 0 0 0.5rem;
}

.post-card p {
	color: var(--am-muted);
	margin: 0 0 1rem;
	font-size: 1rem;
}

.read-more {
	color: var(--am-gold);
	font-weight: 500;
	font-size: 0.95rem;
}

.post-card:hover .read-more {
	color: var(--am-gold);
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2.5rem;
}

.pagination .nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	justify-content: center;
}

.pagination a,
.pagination span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	height: 2.5rem;
	padding: 0 0.75rem;
	border-radius: var(--am-radius-pill);
	background: var(--am-white);
	font-size: 0.9rem;
}

.pagination .current {
	background: var(--am-ink);
	color: var(--am-white);
}

/* Single */

.entry-footer {
	max-width: var(--am-content);
	margin: 2.5rem auto 0;
	padding-top: 1.5rem;
	border-top: 1px solid var(--am-cream-deep);
	font-size: 0.9rem;
	color: var(--am-muted);
}

.entry-footer a {
	color: var(--am-gold);
}

.post-navigation {
	max-width: var(--am-content);
	margin: 2rem auto 0;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.post-navigation a {
	display: block;
	background: var(--am-white);
	border-radius: var(--am-radius);
	padding: 1.1rem 1.25rem;
	font-size: 0.95rem;
}

.post-navigation .nav-subtitle {
	display: block;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--am-tan);
	margin-bottom: 0.35rem;
}

.post-navigation .nav-next {
	text-align: right;
}

/* -------------------------------------------------------------------------- */
/*  Comments                                                                   */
/* -------------------------------------------------------------------------- */

.comments-area {
	max-width: var(--am-content);
	margin: 3rem auto 0;
}

.comments-title,
.comment-reply-title {
	font-size: 1.75rem;
}

.comment-list {
	list-style: none;
	margin: 0 0 2rem;
	padding: 0;
}

.comment-list .children {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0 0 0 1.25rem;
}

.comment-body {
	background: var(--am-white);
	border-radius: var(--am-radius);
	padding: 1.25rem 1.5rem;
	margin-bottom: 1rem;
}

.comment-author {
	font-weight: 600;
	color: var(--am-ink);
}

.comment-metadata {
	font-size: 0.8rem;
	color: var(--am-muted);
	margin-bottom: 0.75rem;
}

.comment-form {
	background: var(--am-white);
	border-radius: var(--am-radius);
	padding: 1.75rem;
}

/* -------------------------------------------------------------------------- */
/*  Search form                                                                */
/* -------------------------------------------------------------------------- */

.search-form {
	display: flex;
	gap: 0.5rem;
}

.search-form label {
	flex: 1;
	margin: 0;
}

.search-form .search-field {
	width: 100%;
}

.search-form .search-submit {
	flex-shrink: 0;
}

/* -------------------------------------------------------------------------- */
/*  404 / empty                                                                */
/* -------------------------------------------------------------------------- */

.error-404,
.no-results {
	text-align: center;
	padding: 4rem 0;
	max-width: 32rem;
	margin: 0 auto;
}

.error-404 h1,
.no-results h1 {
	margin-bottom: 0.75rem;
}

.error-404 p,
.no-results p {
	color: var(--am-muted);
}

/* -------------------------------------------------------------------------- */
/*  Footer                                                                     */
/* -------------------------------------------------------------------------- */

.site-footer,
.am-footer {
	background: var(--am-charcoal);
	color: #c8c4be;
	padding: 3.75rem 0 0;
	margin-top: auto;
}

.am-footer__wrap {
	width: 100%;
	max-width: var(--am-full);
	margin-inline: auto;
	padding-inline: 1.25rem;
}

.am-footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem 2rem;
	padding-bottom: 3rem;
}

.am-footer__social {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	margin-bottom: 1.35rem;
}

.am-footer__social a {
	display: inline-flex;
	color: var(--am-white);
	opacity: 1;
}

.am-footer__social a:hover {
	color: var(--am-gold);
}

.am-footer__social svg,
.am-footer__social i {
	width: 1.25rem;
	height: 1.25rem;
}

.am-footer__offer {
	margin: 0 0 0.85rem;
	font-size: 0.95rem;
	line-height: 1.5;
	color: #c8c4be;
}

.am-footer__signup {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem;
	margin: 0 0 1.35rem;
	max-width: 18.5rem;
}

.am-footer__signup input[type="email"] {
	flex: 1;
	min-width: 0;
	height: 2.65rem;
	padding: 0 1.15rem;
	border: 0;
	border-radius: 999px;
	background: #2a2a2a;
	color: var(--am-white);
	font-family: var(--am-body);
	font-size: 0.9rem;
}

.am-footer__signup input[type="email"]::placeholder {
	color: #8a8680;
}

.am-footer__signup input[type="email"]:focus {
	outline: 1px solid var(--am-gold);
}

.am-footer__signup button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 2.65rem;
	width: 2.65rem;
	height: 2.65rem;
	padding: 0;
	border: 0;
	border-radius: 999px;
	background: var(--am-gold);
	color: var(--am-white);
	cursor: pointer;
}

.am-footer__signup button:hover {
	background: var(--am-tan);
}

.am-footer__signup button svg {
	width: 1.15rem;
	height: 1.15rem;
}

.am-footer__signup-status {
	flex-basis: 100%;
	margin: 0.35rem 0 0;
	font-size: 0.82rem;
	color: var(--am-gold);
}

.am-footer__contact {
	margin: 0;
	font-size: 0.92rem;
	line-height: 1.7;
	color: #c8c4be;
}

.am-reveal {
	display: inline;
	margin: 0;
	padding: 0;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
	font-weight: inherit;
	line-height: inherit;
	text-align: inherit;
	cursor: pointer;
	text-decoration: underline;
	text-decoration-style: dotted;
	text-underline-offset: 0.18em;
}

.am-reveal:hover,
.am-reveal:focus-visible {
	color: var(--am-gold, #d4a843);
}

.am-reveal--open {
	text-decoration: none;
}

.am-contact__value.am-reveal {
	display: block;
}

.am-footer__heading {
	margin: 0 0 1rem;
	font-family: var(--am-heading);
	font-size: 1.05rem;
	font-weight: 400;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--am-white);
}

.am-footer__links {
	list-style: none;
	margin: 0;
	padding: 0;
}

.am-footer__links li {
	margin: 0 0 0.42rem;
}

.am-footer__links a,
.am-footer a {
	color: #c8c4be;
	font-size: 0.92rem;
	line-height: 1.45;
	text-decoration: none;
}

.am-footer__links a:hover,
.am-footer a:hover {
	color: var(--am-gold);
}

.am-footer__note {
	margin: 2.25rem 0 0;
	font-size: 0.92rem;
	color: #c8c4be;
}

.am-footer__bottom {
	border-top: 1px solid rgba(255, 255, 255, 0.12);
	padding: 1.15rem 0 1.25rem;
	text-align: center;
}

.am-footer__bottom p {
	margin: 0;
	font-size: 0.85rem;
	color: #9c9892;
}

@media (min-width: 720px) {
	.am-footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.am-footer__wrap {
		padding-inline: 2rem;
	}

	.am-footer__grid {
		grid-template-columns: minmax(15rem, 1.15fr) repeat(3, minmax(0, 1fr));
		gap: 2.5rem 3rem;
		align-items: start;
	}
}

/* -------------------------------------------------------------------------- */
/*  Layout shell                                                               */
/* -------------------------------------------------------------------------- */

.site {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

.site-content {
	flex: 1;
}

.wp-block-group {
	margin-bottom: 2rem;
}

.wp-block-cover {
	border-radius: var(--am-radius);
	overflow: hidden;
}

/* Gutenberg layout helper: let wide blocks escape the content column. */
.entry-content > .alignwide,
.page-content > .alignwide {
	width: min(var(--am-wide), calc(100vw - var(--am-gutter) * 2));
}

.entry-content > .wp-block-buttons,
.page-content > .wp-block-buttons {
	margin-bottom: 1.5rem;
}

.has-gold-color { color: var(--am-gold) !important; }
.has-tan-color { color: var(--am-tan) !important; }
.has-ink-color { color: var(--am-ink) !important; }
.has-cream-background-color { background-color: var(--am-cream) !important; }
.has-cream-soft-background-color { background-color: var(--am-cream-soft) !important; }
.has-gold-background-color { background-color: var(--am-gold) !important; }
.has-ink-background-color { background-color: var(--am-ink) !important; }
.has-white-background-color { background-color: var(--am-white) !important; }
.has-charcoal-background-color { background-color: var(--am-charcoal) !important; }

.has-heading-font-family { font-family: var(--am-heading) !important; }
.has-body-font-family { font-family: var(--am-body) !important; }

/* -------------------------------------------------------------------------- */
/*  Full Width Template — max-w-7xl / px-4 / sm:px-6 / lg:px-8                 */
/* -------------------------------------------------------------------------- */

.am-full-width {
	padding-top: 2rem;
	padding-bottom: 2rem;
	background: var(--am-cream);
}

.am-full-width-wrap {
	width: 100%;
	max-width: var(--am-full);
	margin-inline: auto;
	padding-inline: 1rem;
}

.am-full-width .entry-content,
.am-full-width .page-content {
	max-width: none;
}

.am-full-width .entry-content > *:first-child {
	margin-top: 0;
}

.am-full-width .entry-content > .alignwide,
.am-full-width .page-content > .alignwide,
.am-full-width .entry-content > .alignfull,
.am-full-width .page-content > .alignfull {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.entry-content > .wp-block-group.has-background.alignwide,
.page-content > .wp-block-group.has-background.alignwide {
	position: relative;
	background-position: right center;
	background-repeat: no-repeat;
	overflow: hidden;
	border-radius: 1.15rem;
}

.entry-content > .wp-block-group.has-background.alignwide::after,
.page-content > .wp-block-group.has-background.alignwide::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(255, 255, 255, 0.6);
	pointer-events: none;
	z-index: 0;
}

.entry-content > .wp-block-group.has-background.alignwide > *,
.page-content > .wp-block-group.has-background.alignwide > * {
	position: relative;
	z-index: 1;
}

@media (min-width: 768px) {
	.entry-content > .wp-block-group.has-background.alignwide,
	.page-content > .wp-block-group.has-background.alignwide {
		background-position: center;
	}

	.entry-content > .wp-block-group.has-background.alignwide::after,
	.page-content > .wp-block-group.has-background.alignwide::after {
		display: none;
	}

	.entry-content > .wp-block-group.has-background.alignwide > *,
	.page-content > .wp-block-group.has-background.alignwide > * {
		width: 50%;
		max-width: 50%;
		box-sizing: border-box;
	}
}

@media (min-width: 640px) {
	.am-full-width {
		padding-top: 2.5rem;
		padding-bottom: 2.5rem;
	}

	.am-full-width-wrap {
		padding-inline: 1.5rem;
	}
}

@media (min-width: 1024px) {
	.am-full-width-wrap {
		padding-inline: 2rem;
	}
}

/* -------------------------------------------------------------------------- */
/*  WooCommerce — same container as Home                                       */
/* -------------------------------------------------------------------------- */

.am-full-width-wrap .woocommerce-breadcrumb {
	margin: 0 0 1.35rem;
}

.am-full-width-wrap .woocommerce-products-header__title,
.am-full-width-wrap .page-title {
	font-family: var(--am-heading);
	font-weight: 400;
	margin: 0 0 1.25rem;
}

/* -------------------------------------------------------------------------- */
/*  Fragrance grid — Find Your Scent page                                       */
/* -------------------------------------------------------------------------- */

.wp-block-group.am-fragrance,
.wp-block-austmystik-fragrance-list.am-fragrance,
.am-fragrance {
	margin: 0;
	background: var(--am-cream-soft, #f9f0e3);
}

.entry-content > .wp-block-group.am-fragrance,
.page-content > .wp-block-group.am-fragrance,
.entry-content > .wp-block-austmystik-fragrance-list.am-fragrance,
.page-content > .wp-block-austmystik-fragrance-list.am-fragrance,
.am-full-width .entry-content > .wp-block-group.am-fragrance.alignwide,
.am-full-width .page-content > .wp-block-group.am-fragrance.alignwide,
.am-full-width .entry-content > .wp-block-austmystik-fragrance-list.am-fragrance.alignwide,
.am-full-width .page-content > .wp-block-austmystik-fragrance-list.am-fragrance.alignwide,
.am-full-width .entry-content > .wp-block-group.am-fragrance.alignfull,
.am-full-width .page-content > .wp-block-group.am-fragrance.alignfull,
.am-full-width .entry-content > .wp-block-austmystik-fragrance-list.am-fragrance.alignfull,
.am-full-width .page-content > .wp-block-austmystik-fragrance-list.am-fragrance.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}

.am-fragrance__inner {
	width: 100%;
	max-width: var(--am-full, 80rem);
	margin: 0 auto;
	padding: 3.25rem 1.25rem 3.75rem;
	box-sizing: border-box;
}

.am-fragrance__search {
	max-width: 26rem;
	margin: 0 auto 2.25rem;
}

.am-fragrance__search-input {
	font-family: var(--am-body, "DM Sans", ui-sans-serif, system-ui, sans-serif);
	font-size: 0.95rem;
}

.am-fragrance__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.1rem;
	margin: 0;
}

.am-fragrance__card--hidden {
	display: none;
}

.am-fragrance__empty,
.entry-content .am-fragrance__empty,
.page-content .am-fragrance__empty {
	font-family: var(--am-body, "DM Sans", ui-sans-serif, system-ui, sans-serif);
	color: var(--am-muted, #6b6560);
	text-align: center;
	margin: 2.5rem 0 0;
}

.am-fragrance__card {
	background: var(--am-white, #fff);
	border: 1px solid var(--am-cream-deep, #f0e4d1);
	border-radius: 1rem;
	padding: 1.35rem 1.4rem;
	box-sizing: border-box;
	transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.am-fragrance__card:hover {
	box-shadow: 0 10px 24px rgba(44, 44, 44, 0.08);
	transform: translateY(-2px);
}

.am-fragrance__name,
.entry-content .am-fragrance__name,
.page-content .am-fragrance__name {
	font-family: var(--am-heading, "DM Serif Display", Georgia, serif);
	font-size: 1.1rem;
	font-weight: 400;
	line-height: 1.3;
	color: var(--am-ink, #2c2c2c);
	margin: 0 0 0.65rem;
}

.am-fragrance__notes,
.entry-content .am-fragrance__notes,
.page-content .am-fragrance__notes {
	font-family: var(--am-body, "DM Sans", ui-sans-serif, system-ui, sans-serif);
	font-size: 0.88rem;
	font-weight: 400;
	line-height: 1.7;
	color: var(--am-muted, #6b6560);
	margin: 0;
}

.am-fragrance__notes strong {
	color: var(--am-ink, #2c2c2c);
	font-weight: 600;
}

.am-fragrance__cta {
	text-align: center;
	margin: 2.5rem 0 0;
}

.am-fragrance__cta p {
	font-family: var(--am-body, "DM Sans", ui-sans-serif, system-ui, sans-serif);
	color: var(--am-muted, #6b6560);
	margin: 0 0 1.1rem;
}

@media (min-width: 640px) {
	.am-fragrance__inner {
		padding-inline: 1.5rem;
	}

	.am-fragrance__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.am-fragrance__inner {
		padding-inline: 2rem;
		padding-top: 4rem;
		padding-bottom: 4.5rem;
	}

	.am-fragrance__grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		gap: 1.35rem;
	}
}
