/* =========================================================
   Ryan + Reid — Main Stylesheet
   ========================================================= */

:root {
	--color-canvas:      #F5F1EA;
	--color-sage:        #A8B2A1;
	--color-charcoal:    #3B3B3B;
	--color-mist:        #AEBBC2;
	--color-canvas-deep: #EDE9E1;
	--font-display:      'Moontime', cursive;
	--font-body:         'Montserrat', sans-serif;
	--radius-btn:        4px;
	--transition:        150ms ease;
	--max-content:       1200px;
	--max-text:          680px;
}

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

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

html {
	font-size: 16px;
	-webkit-text-size-adjust: 100%;
	scroll-behavior: smooth;
}

body {
	background-color: var(--color-canvas);
	color: var(--color-charcoal);
	font-family: var(--font-body);
	font-weight: 400;
	line-height: 1.7;
	-webkit-font-smoothing: antialiased;
}

img {
	max-width: 100%;
	height: auto;
	display: block;
}

a {
	color: var(--color-charcoal);
	text-decoration: none;
	transition: color var(--transition);
}

a:hover {
	text-decoration: underline;
}

ul, ol {
	list-style: none;
}

button, input, select, textarea {
	font-family: var(--font-body);
	font-size: inherit;
}

/* ----- Typography ----- */

h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-body);
	font-weight: 500;
	line-height: 1.25;
	color: var(--color-charcoal);
}

h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1.25em; }
p:last-child { margin-bottom: 0; }

.display-type {
	font-family: var(--font-display);
	font-weight: 400;
	line-height: 1.15;
}

/* ----- Layout Utilities ----- */

.container {
	width: 100%;
	max-width: var(--max-content);
	margin-inline: auto;
	padding-inline: 1.5rem;
}

.container--narrow {
	max-width: var(--max-text);
}

.section {
	padding-block: 5rem;
}

.section--flush {
	padding-block: 0;
}

/* ----- Buttons ----- */

.btn,
button.btn,
a.btn,
input[type="submit"].btn {
	display: inline-block;
	background-color: var(--color-sage);
	color: #ffffff;
	font-family: var(--font-body);
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 0.75rem 1.75rem;
	border: none;
	border-radius: var(--radius-btn);
	cursor: pointer;
	transition: background-color var(--transition), color var(--transition);
	line-height: 1;
}

.btn:hover,
button.btn:hover,
a.btn:hover,
input[type="submit"].btn:hover {
	background-color: var(--color-mist);
	color: #ffffff;
	text-decoration: none;
}

.btn--full {
	display: block;
	width: 100%;
	text-align: center;
}

.btn--outline {
	background-color: transparent;
	color: var(--color-sage);
	border: 1px solid var(--color-sage);
}

.btn--outline:hover {
	background-color: var(--color-sage);
	color: #ffffff;
}

/* ----- Form Elements ----- */

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="number"],
input[type="search"],
select,
textarea {
	width: 100%;
	padding: 0.65rem 0.875rem;
	border: 1px solid var(--color-mist);
	border-radius: var(--radius-btn);
	background-color: #ffffff;
	color: var(--color-charcoal);
	font-family: var(--font-body);
	font-size: 0.9rem;
	transition: border-color var(--transition);
	-webkit-appearance: none;
	appearance: none;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
select:focus,
textarea:focus {
	outline: none;
	border-color: var(--color-sage);
}

label {
	display: block;
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-charcoal);
	margin-bottom: 0.4rem;
}

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

.site-header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: var(--color-canvas);
	border-bottom: 1px solid var(--color-sage);
}

.site-header__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-block: 1rem;
}

.site-header__brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.25rem;
	text-decoration: none;
}

.site-header__logo {
	max-height: 52px;
	width: auto;
	display: block;
}

.site-header__tagline {
	font-family: var(--font-display);
	font-size: 0.95rem;
	color: var(--color-sage);
	line-height: 1;
}

.site-header__nav {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.site-header__menu {
	display: flex;
	align-items: center;
	gap: 2rem;
}

.site-header__menu a {
	font-size: 0.8rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-charcoal);
	text-decoration: none;
	transition: color var(--transition);
}

.site-header__menu a:hover,
.site-header__menu a.current-menu-item {
	color: var(--color-sage);
}

.site-header__cart a {
	display: flex;
	align-items: center;
	gap: 0.35rem;
	color: var(--color-charcoal);
	text-decoration: none;
	font-size: 0.8rem;
	font-weight: 500;
	transition: color var(--transition);
}

.site-header__cart a:hover {
	color: var(--color-sage);
}

.site-header__cart svg {
	width: 20px;
	height: 20px;
}

.cart-count {
	font-size: 0.75rem;
	background-color: var(--color-sage);
	color: #ffffff;
	border-radius: 50%;
	width: 18px;
	height: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
}

.hamburger {
	display: none;
	flex-direction: column;
	gap: 5px;
	cursor: pointer;
	background: none;
	border: none;
	padding: 4px;
}

.hamburger span {
	display: block;
	width: 24px;
	height: 1.5px;
	background-color: var(--color-charcoal);
	transition: all var(--transition);
}

/* Mobile nav */
.mobile-nav {
	display: none;
	flex-direction: column;
	padding: 1rem 1.5rem 1.5rem;
	border-top: 1px solid var(--color-mist);
}

.mobile-nav.is-open {
	display: flex;
}

.mobile-nav a {
	padding: 0.65rem 0;
	font-size: 0.9rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-charcoal);
	border-bottom: 1px solid var(--color-mist);
	text-decoration: none;
}

.mobile-nav a:last-child {
	border-bottom: none;
}

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

.footer-divider {
	border: none;
	border-top: 1px solid var(--color-sage);
}

.site-footer {
	background-color: var(--color-canvas-deep);
	padding-block: 4rem 2rem;
}

.site-footer__grid {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 3rem;
}

.site-footer__brand-logo {
	max-height: 32px;
	width: auto;
	margin-bottom: 1rem;
}

.site-footer__tagline {
	font-size: 0.875rem;
	color: var(--color-charcoal);
	margin-bottom: 0.5rem;
}

.site-footer__email a {
	font-size: 0.875rem;
	color: var(--color-charcoal);
}

.site-footer__social {
	display: flex;
	gap: 1rem;
	margin-top: 1rem;
}

.site-footer__social a {
	display: flex;
	align-items: center;
	color: var(--color-charcoal);
	transition: color var(--transition);
}

.site-footer__social a:hover {
	color: var(--color-sage);
}

.site-footer__social svg {
	width: 20px;
	height: 20px;
}

.site-footer__col-title {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-sage);
	margin-bottom: 1rem;
}

.site-footer__nav a {
	display: block;
	font-size: 0.875rem;
	color: var(--color-charcoal);
	padding-block: 0.3rem;
	text-decoration: none;
}

.site-footer__nav a:hover {
	color: var(--color-sage);
}

.site-footer__email-signup {
	margin-top: 1rem;
}

.site-footer__email-signup label {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-charcoal);
	margin-bottom: 0.5rem;
}

.site-footer__email-signup .signup-row {
	display: flex;
	gap: 0.5rem;
}

.site-footer__email-signup input {
	flex: 1;
	padding: 0.6rem 0.75rem;
	font-size: 0.875rem;
}

.site-footer__email-signup button {
	padding: 0.6rem 1.1rem;
	font-size: 0.75rem;
	white-space: nowrap;
}

.site-footer__bottom {
	margin-top: 3rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--color-mist);
	text-align: center;
	font-size: 0.8rem;
	color: var(--color-charcoal);
	opacity: 0.65;
}

/* ----- Homepage: Hero ----- */

.hero {
	padding-block: 7rem 6rem;
	text-align: center;
}

.hero__headline {
	font-family: var(--font-display);
	font-size: clamp(3rem, 8vw, 6rem);
	font-weight: 400;
	color: var(--color-charcoal);
	line-height: 1.05;
	margin-bottom: 1.25rem;
}

.hero__subhead {
	font-size: clamp(1rem, 2vw, 1.2rem);
	font-weight: 300;
	color: var(--color-charcoal);
	max-width: 540px;
	margin-inline: auto;
	margin-bottom: 2.5rem;
	opacity: 0.85;
}

/* ----- Collections Grid ----- */

.collections-section {
	padding-block: 5rem;
}

.collections-section__header {
	text-align: center;
	margin-bottom: 3rem;
}

.collections-section__header h2 {
	font-weight: 400;
	margin-bottom: 0;
}

.collections-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 1.5rem;
}

.collection-card {
	background-color: #FAF8F3;
	border: 1px solid var(--color-mist);
	display: flex;
	flex-direction: column;
}

.collection-card__image {
	aspect-ratio: 1 / 1;
	overflow: hidden;
	background-color: #F0EDE6;
	display: flex;
	align-items: center;
	justify-content: center;
}

.collection-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.collection-card__image-placeholder {
	width: 100%;
	height: 100%;
	background-color: #F0EDE6;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.75rem;
	color: var(--color-sage);
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.collection-card__body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.collection-card__name {
	font-size: 1.05rem;
	font-weight: 500;
	margin-bottom: 0.35rem;
}

.collection-card__desc {
	font-size: 0.875rem;
	color: var(--color-charcoal);
	opacity: 0.75;
	margin-bottom: 0.75rem;
	flex: 1;
}

.collection-card__price {
	font-size: 0.875rem;
	font-weight: 500;
	color: var(--color-charcoal);
	margin-bottom: 1rem;
}

.collection-card__link {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--color-sage);
	text-decoration: none;
	transition: color var(--transition);
	margin-top: auto;
}

.collection-card__link:hover {
	color: var(--color-mist);
	text-decoration: none;
}

/* ----- Brand Statement ----- */

.brand-statement {
	background-color: var(--color-canvas);
	padding-block: 6rem;
	text-align: center;
}

.brand-statement__quote {
	font-family: var(--font-display);
	font-size: clamp(1.75rem, 4vw, 2.75rem);
	font-weight: 400;
	color: var(--color-charcoal);
	line-height: 1.2;
	margin-bottom: 2rem;
	max-width: 820px;
	margin-inline: auto;
}

.brand-statement__body {
	font-size: 0.95rem;
	line-height: 1.85;
	color: var(--color-charcoal);
	margin-bottom: 2rem;
	max-width: var(--max-text);
	margin-inline: auto;
}

/* ----- For Professionals Callout ----- */

.professionals-callout {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.professionals-callout__text {
	padding: 5rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 1.25rem;
}

.professionals-callout__bg {
	background-color: var(--color-mist);
	min-height: 320px;
}

.professionals-callout__text h2 {
	font-weight: 400;
}

.professionals-callout__text p {
	font-size: 0.95rem;
	opacity: 0.85;
	margin-bottom: 0;
}

/* ----- Email Capture ----- */

.email-capture {
	background-color: var(--color-canvas-deep);
	padding-block: 5rem;
	text-align: center;
}

.email-capture h2 {
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.email-capture p {
	font-size: 0.95rem;
	opacity: 0.75;
	margin-bottom: 2rem;
}

.email-capture__form {
	display: flex;
	justify-content: center;
	gap: 0.75rem;
	max-width: 460px;
	margin-inline: auto;
}

.email-capture__form input {
	flex: 1;
}

/* ----- WooCommerce: Archive ----- */

.shop-header {
	padding-block: 3.5rem 2rem;
	text-align: center;
}

.shop-header__subhead {
	font-size: 1rem;
	opacity: 0.75;
	max-width: 540px;
	margin-inline: auto;
}

.products-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	padding-bottom: 4rem;
}

.product-card {
	background-color: #FAF8F3;
	border: 1px solid var(--color-mist);
	display: flex;
	flex-direction: column;
}

.product-card__image {
	aspect-ratio: 1 / 1;
	background-color: #F0EDE6;
	overflow: hidden;
}

.product-card__image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 200ms ease;
}

.product-card:hover .product-card__image img {
	transform: scale(1.02);
}

.product-card__body {
	padding: 1.5rem;
	flex: 1;
	display: flex;
	flex-direction: column;
}

.product-card__name {
	font-weight: 500;
	font-size: 1.05rem;
	margin-bottom: 0.35rem;
}

.product-card__name a {
	text-decoration: none;
}

.product-card__excerpt {
	font-size: 0.875rem;
	opacity: 0.75;
	margin-bottom: 0.75rem;
	flex: 1;
}

.product-card__price {
	font-size: 0.9rem;
	font-weight: 500;
	margin-bottom: 1rem;
}

/* ----- WooCommerce: Single Product ----- */

.single-product-layout {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 4rem;
	padding-block: 4rem;
}

.product-gallery__main {
	aspect-ratio: 1 / 1;
	background-color: #F0EDE6;
	overflow: hidden;
	margin-bottom: 1rem;
}

.product-gallery__main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.product-gallery__thumbs {
	display: flex;
	gap: 0.75rem;
}

.product-gallery__thumb {
	width: 72px;
	height: 72px;
	background-color: #F0EDE6;
	cursor: pointer;
	border: 1px solid transparent;
	transition: border-color var(--transition);
}

.product-gallery__thumb:hover,
.product-gallery__thumb.active {
	border-color: var(--color-sage);
}

.product-details__name {
	font-size: clamp(1.5rem, 3vw, 2.25rem);
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.product-details__tagline {
	font-family: var(--font-display);
	font-size: 1.35rem;
	color: var(--color-sage);
	margin-bottom: 1.25rem;
}

.product-details__price {
	font-size: 1.35rem;
	font-weight: 500;
	margin-bottom: 1.75rem;
}

.product-details__field {
	margin-bottom: 1.25rem;
}

.product-details__field label {
	margin-bottom: 0.4rem;
}

.product-details__message textarea {
	min-height: 100px;
	resize: vertical;
}

.product-details__shipping-note {
	font-size: 0.8rem;
	color: var(--color-charcoal);
	opacity: 0.65;
	margin-top: 0.75rem;
	text-align: center;
}

.product-tabs {
	margin-top: 3rem;
}

.product-tabs__nav {
	display: flex;
	border-bottom: 1px solid var(--color-mist);
	margin-bottom: 2rem;
}

.product-tabs__nav button {
	background: none;
	border: none;
	padding: 0.75rem 1.5rem;
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	cursor: pointer;
	color: var(--color-charcoal);
	opacity: 0.5;
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	transition: all var(--transition);
}

.product-tabs__nav button.active,
.product-tabs__nav button:hover {
	opacity: 1;
	color: var(--color-sage);
	border-bottom-color: var(--color-sage);
}

.product-tab-panel {
	display: none;
}

.product-tab-panel.active {
	display: block;
}

.product-tab-panel p {
	font-size: 0.95rem;
	line-height: 1.8;
}

.whats-inside-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.875rem;
}

.whats-inside-table th {
	text-align: left;
	padding: 0.65rem 1rem;
	background-color: var(--color-canvas-deep);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--color-mist);
}

.whats-inside-table td {
	padding: 0.65rem 1rem;
	border-bottom: 1px solid var(--color-mist);
	vertical-align: top;
}

.whats-inside-table tr:last-child td {
	border-bottom: none;
}

.related-products {
	padding-block: 4rem;
	border-top: 1px solid var(--color-mist);
}

.related-products h2 {
	font-weight: 400;
	margin-bottom: 2rem;
}

/* ----- Cart ----- */

.cart-layout {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 3rem;
	padding-block: 4rem;
}

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

.cart-table th {
	text-align: left;
	padding: 0.65rem 0;
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	border-bottom: 1px solid var(--color-mist);
}

.cart-table td {
	padding: 1.25rem 0;
	border-bottom: 1px solid var(--color-mist);
	vertical-align: middle;
}

.cart-item__image {
	width: 72px;
	height: 72px;
	object-fit: cover;
	background-color: #F0EDE6;
}

.cart-item__info {
	padding-left: 1rem;
}

.cart-item__name {
	font-weight: 500;
	margin-bottom: 0.25rem;
}

.cart-item__variation {
	font-size: 0.8rem;
	opacity: 0.65;
}

.cart-quantity {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.cart-quantity button {
	background: none;
	border: 1px solid var(--color-mist);
	width: 28px;
	height: 28px;
	cursor: pointer;
	font-size: 1rem;
	color: var(--color-charcoal);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: border-color var(--transition);
}

.cart-quantity button:hover {
	border-color: var(--color-sage);
}

.cart-quantity input {
	width: 48px;
	text-align: center;
	padding: 0.35rem;
	border: 1px solid var(--color-mist);
}

.cart-remove a {
	font-size: 0.75rem;
	color: var(--color-charcoal);
	opacity: 0.5;
	text-decoration: none;
	transition: opacity var(--transition);
}

.cart-remove a:hover {
	opacity: 1;
}

.order-summary {
	background-color: var(--color-canvas-deep);
	padding: 2rem;
	align-self: start;
}

.order-summary h3 {
	font-weight: 500;
	margin-bottom: 1.5rem;
	font-size: 0.875rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.order-summary__row {
	display: flex;
	justify-content: space-between;
	padding-block: 0.65rem;
	border-bottom: 1px solid var(--color-mist);
	font-size: 0.9rem;
}

.order-summary__row--total {
	font-weight: 600;
	font-size: 1.05rem;
	border-bottom: none;
	margin-top: 0.5rem;
}

.order-summary__checkout {
	margin-top: 1.5rem;
}

.coupon-toggle {
	font-size: 0.8rem;
	cursor: pointer;
	color: var(--color-charcoal);
	opacity: 0.55;
	background: none;
	border: none;
	text-decoration: underline;
	margin-top: 1rem;
	display: block;
}

.coupon-field {
	display: none;
	margin-top: 0.75rem;
	flex-direction: column;
	gap: 0.5rem;
}

.coupon-field.is-open {
	display: flex;
}

/* ----- Checkout ----- */

.checkout-layout {
	display: grid;
	grid-template-columns: 3fr 2fr;
	gap: 4rem;
	padding-block: 4rem;
}

.checkout-section-title {
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-sage);
	margin-bottom: 1.5rem;
	padding-bottom: 0.5rem;
	border-bottom: 1px solid var(--color-mist);
}

.checkout-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.checkout-grid .field--full {
	grid-column: 1 / -1;
}

.checkout-field {
	margin-bottom: 1.25rem;
}

.checkout-order-summary {
	background-color: var(--color-canvas-deep);
	padding: 2rem;
	align-self: start;
}

.checkout-trust-line {
	font-size: 0.8rem;
	text-align: center;
	color: var(--color-charcoal);
	opacity: 0.55;
	margin-top: 1rem;
}

.payment-section {
	margin-top: 2rem;
}

/* ----- Page Templates ----- */

.page-hero {
	padding-block: 5rem 3rem;
	text-align: center;
}

.page-hero__headline {
	font-family: var(--font-display);
	font-size: clamp(2.5rem, 6vw, 4.5rem);
	font-weight: 400;
	margin-bottom: 1rem;
}

.page-content {
	max-width: var(--max-text);
	margin-inline: auto;
	padding-block: 3rem 5rem;
}

.page-content h2 {
	font-weight: 400;
	margin-top: 2rem;
	margin-bottom: 0.75rem;
}

.page-content p {
	font-size: 0.95rem;
	line-height: 1.85;
}

/* ----- About Values ----- */

.values-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
	padding-block: 4rem;
}

.value-item h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.value-item p {
	font-size: 0.875rem;
	opacity: 0.8;
}

/* ----- Professionals ----- */

.use-cases-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
	padding-block: 3rem;
}

.use-case h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-bottom: 0.5rem;
}

.use-case p {
	font-size: 0.875rem;
	opacity: 0.8;
}

.inquiry-section {
	background-color: var(--color-canvas-deep);
	padding: 3rem;
	margin-block: 3rem;
}

.inquiry-section h2 {
	font-weight: 400;
	margin-bottom: 0.5rem;
}

.inquiry-form {
	max-width: 640px;
	margin-top: 2rem;
}

.inquiry-form .field-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.inquiry-form .field {
	margin-bottom: 1.25rem;
}

/* ----- FAQ ----- */

.faq-list {
	max-width: var(--max-text);
	margin-inline: auto;
	padding-block: 1rem 4rem;
}

details {
	border-bottom: 1px solid var(--color-mist);
}

details summary {
	padding-block: 1.25rem;
	font-weight: 500;
	cursor: pointer;
	list-style: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 0.95rem;
}

details summary::-webkit-details-marker {
	display: none;
}

details summary::after {
	content: '+';
	font-size: 1.25rem;
	font-weight: 300;
	color: var(--color-sage);
	flex-shrink: 0;
	transition: transform var(--transition);
}

details[open] summary::after {
	transform: rotate(45deg);
}

details .faq-answer {
	padding-bottom: 1.25rem;
	font-size: 0.9rem;
	line-height: 1.8;
	opacity: 0.85;
}

/* ----- Contact ----- */

.contact-form-wrap {
	max-width: 640px;
	margin-inline: auto;
	padding-bottom: 5rem;
}

.contact-form .field {
	margin-bottom: 1.25rem;
}

.contact-links {
	margin-top: 2.5rem;
	padding-top: 2rem;
	border-top: 1px solid var(--color-mist);
	display: flex;
	align-items: center;
	gap: 1.5rem;
	font-size: 0.9rem;
}

.contact-social {
	display: flex;
	gap: 1rem;
}

.contact-social a {
	display: flex;
	align-items: center;
	color: var(--color-charcoal);
	transition: color var(--transition);
}

.contact-social a:hover {
	color: var(--color-sage);
}

.contact-social svg {
	width: 20px;
	height: 20px;
}

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

.not-found {
	padding-block: 8rem;
	text-align: center;
}

.not-found__headline {
	font-family: var(--font-display);
	font-size: clamp(3rem, 8vw, 5.5rem);
	font-weight: 400;
	margin-bottom: 1rem;
}

.not-found__body {
	font-size: 1rem;
	opacity: 0.75;
	max-width: 420px;
	margin-inline: auto;
	margin-bottom: 2.5rem;
}

.not-found__actions {
	display: flex;
	gap: 1rem;
	justify-content: center;
}

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

.search-header {
	padding-block: 3rem;
	border-bottom: 1px solid var(--color-mist);
	margin-bottom: 3rem;
}

.search-results-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
	padding-bottom: 4rem;
}

.no-results {
	padding-block: 5rem;
	text-align: center;
}

.no-results p {
	opacity: 0.75;
	margin-bottom: 2rem;
}

/* ----- WooCommerce Global Overrides ----- */

.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
	background-color: var(--color-sage) !important;
	color: #ffffff !important;
	border: none !important;
	border-radius: var(--radius-btn) !important;
	font-family: var(--font-body) !important;
	font-size: 0.8rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.04em !important;
	text-transform: uppercase !important;
	padding: 0.75rem 1.5rem !important;
	box-shadow: none !important;
	transition: background-color var(--transition) !important;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
	background-color: var(--color-mist) !important;
	color: #ffffff !important;
}

.woocommerce span.price,
.woocommerce .price {
	color: var(--color-charcoal);
	font-weight: 500;
}

.woocommerce span.onsale {
	background-color: var(--color-sage);
	color: #ffffff;
	border-radius: var(--radius-btn);
}

.woocommerce .woocommerce-breadcrumb {
	display: none;
}

.woocommerce-loop-product__title {
	font-family: var(--font-body) !important;
	font-weight: 500 !important;
}

/* Pagination */
.woocommerce nav.woocommerce-pagination {
	text-align: center;
	padding-block: 2rem 4rem;
}

.woocommerce nav.woocommerce-pagination ul {
	display: inline-flex;
	gap: 0.5rem;
	list-style: none;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--color-mist);
	color: var(--color-charcoal);
	font-size: 0.875rem;
	text-decoration: none;
	transition: all var(--transition);
}

.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
	background-color: var(--color-sage);
	color: #ffffff;
	border-color: var(--color-sage);
}

/* ----- Legal Pages ----- */

.legal-content {
	max-width: var(--max-text);
	margin-inline: auto;
	padding-block: 3rem 6rem;
}

.legal-content h2 {
	font-size: 1.2rem;
	font-weight: 600;
	margin-top: 2.5rem;
	margin-bottom: 0.75rem;
}

.legal-content h3 {
	font-size: 1rem;
	font-weight: 600;
	margin-top: 1.5rem;
	margin-bottom: 0.5rem;
}

.legal-content p,
.legal-content li {
	font-size: 0.9rem;
	line-height: 1.85;
}

.legal-content ul,
.legal-content ol {
	list-style: disc;
	padding-left: 1.5rem;
	margin-bottom: 1rem;
}

.legal-content ol {
	list-style: decimal;
}

.client-todo {
	background-color: #FFF8E1;
	border-left: 3px solid #F5A623;
	padding: 0.5rem 0.875rem;
	font-size: 0.85rem;
	color: #8B6400;
	margin-block: 0.5rem;
	font-style: italic;
}

/* ----- My Account ----- */

.my-account-layout {
	display: grid;
	grid-template-columns: 200px 1fr;
	gap: 3rem;
	padding-block: 4rem;
}

.account-nav a {
	display: block;
	padding-block: 0.6rem;
	font-size: 0.875rem;
	color: var(--color-charcoal);
	border-bottom: 1px solid var(--color-mist);
	text-decoration: none;
}

.account-nav a:hover,
.account-nav a.is-active {
	color: var(--color-sage);
}

/* ----- Utility classes ----- */

.text-center { text-align: center; }
.text-sage   { color: var(--color-sage); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }

/* =========================================================
   Responsive
   ========================================================= */

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

	.professionals-callout__text {
		padding: 3rem;
	}

	.single-product-layout {
		grid-template-columns: 1fr 1fr;
		gap: 2.5rem;
	}

	.cart-layout {
		grid-template-columns: 1fr;
	}

	.checkout-layout {
		grid-template-columns: 1fr;
	}
}

@media (max-width: 768px) {
	.site-header__tagline {
		display: none;
	}

	.site-header__logo {
		max-height: 38px;
	}

	.site-header__menu {
		display: none;
	}

	.hamburger {
		display: flex;
	}

	.collections-grid {
		grid-template-columns: 1fr;
	}

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

	.values-grid,
	.use-cases-grid {
		grid-template-columns: 1fr;
		gap: 2rem;
	}

	.site-footer__grid {
		grid-template-columns: 1fr;
		gap: 2.5rem;
	}

	.professionals-callout {
		grid-template-columns: 1fr;
	}

	.professionals-callout__bg {
		min-height: 200px;
		order: -1;
	}

	.professionals-callout__text {
		padding: 2.5rem 1.5rem;
	}

	.single-product-layout {
		grid-template-columns: 1fr;
	}

	.search-results-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.my-account-layout {
		grid-template-columns: 1fr;
	}

	.inquiry-form .field-row {
		grid-template-columns: 1fr;
	}

	.checkout-grid {
		grid-template-columns: 1fr;
	}

	.email-capture__form {
		flex-direction: column;
	}

	.not-found__actions {
		flex-direction: column;
		align-items: center;
	}
}

@media (max-width: 480px) {
	.products-grid {
		grid-template-columns: 1fr;
	}

	.search-results-grid {
		grid-template-columns: 1fr;
	}

	.hero {
		padding-block: 4rem 3rem;
	}
}
