/* ==========================================================================
   Trinity Pharms theme
   Measurements are taken from the original Square Online site at 1440px and 390px.
   ========================================================================== */

:root {
	--gold: #dfc55b;
	--black: #000;
	--brown: #463939;
	--white: #fff;
	--text: #000;
	--muted: #707070;
	--line: #d9d9d9;
	--field-border: #949494;
	--field-text: #1b1b1b;
	--soft: #f1f1f1;
	--danger: #d92b2b;
	--required: #a82826;

	--font-head: "Domine", Georgia, serif;
	--font-body: "PT Serif", Georgia, serif;
	--font-ui: "PT Sans", "Helvetica Neue", Arial, sans-serif;

	--container: 1000px;
	--gutter: 20px;
}

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

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

html {
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: var(--white);
	color: var(--text);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.3;
	-webkit-font-smoothing: antialiased;
}

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

a {
	color: inherit;
}

h1,
h2,
h3,
h4 {
	font-family: var(--font-head);
	font-weight: 400;
	line-height: 1.1;
	letter-spacing: -0.01em;
	margin: 0 0 0.5em;
}

p {
	margin: 0 0 1em;
}

button,
input,
select,
textarea {
	font: inherit;
	color: inherit;
}

.screen-reader-text {
	position: absolute !important;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed !important;
	top: 8px;
	left: 8px;
	z-index: 1000;
	width: auto;
	height: auto;
	clip: auto;
	padding: 12px 16px;
	background: var(--gold);
	color: var(--black);
	font-family: var(--font-ui);
	font-weight: 700;
}

:focus-visible {
	outline: 2px solid var(--gold);
	outline-offset: 2px;
}

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

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

.btn,
.button,
.woocommerce .button,
.wp-block-button__link,
.wp-element-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	min-height: 48px;
	padding: 0 24px;
	border: 0;
	border-radius: 0;
	background: var(--gold);
	color: var(--black);
	font-family: var(--font-ui);
	font-size: 16px;
	font-weight: 700;
	letter-spacing: 0.01em;
	line-height: 1.1;
	text-decoration: none;
	cursor: pointer;
	transition: opacity 0.15s ease;
}

.btn:hover,
.button:hover,
.wp-block-button__link:hover {
	opacity: 0.85;
}

.btn--sm {
	min-height: 40px;
	padding: 0 16px;
	font-size: 14px;
}

.btn--lg {
	min-height: 48px;
	padding: 0 24px;
	font-size: 16px;
}

.btn--primary {
	background: var(--gold);
	color: var(--black);
}

.btn--dark {
	background: var(--black);
	color: var(--white);
}

.btn--outline {
	background: transparent;
	color: var(--black);
	box-shadow: inset 0 0 0 2px var(--black);
}

.btn--outline-light {
	background: transparent;
	color: var(--black);
	box-shadow: inset 0 0 0 1px var(--black);
}

.icon-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 26px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--white);
	cursor: pointer;
	text-decoration: none;
}

.icon-btn svg {
	width: 24px;
	height: 24px;
}

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

.site-header {
	position: relative;
	z-index: 50;
	background: var(--black);
	color: var(--white);
}

.site-header__bar {
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	padding-top: 16px;
}

.menu-toggle {
	display: none;
}

.site-header__logo {
	grid-column: 2;
	display: block;
	width: 143px;
}

.site-header__logo .site-logo__img {
	width: 143px;
	height: 140px;
	object-fit: contain;
}

.site-header__actions {
	grid-column: 3;
	justify-self: end;
	display: flex;
	align-items: center;
	gap: 10px;
	margin-right: -14px;
}

.site-header__shop {
	margin-right: 0;
}

.cart-link {
	position: relative;
	width: 36px;
	padding: 1px 6px;
}

.cart-link__count {
	position: absolute;
	top: -6px;
	right: -2px;
	min-width: 17px;
	height: 17px;
	padding: 0 4px;
	border-radius: 9px;
	background: var(--gold);
	color: var(--black);
	font-family: var(--font-ui);
	font-size: 11px;
	font-weight: 700;
	line-height: 17px;
	text-align: center;
}

.cart-link__count.is-empty {
	display: none;
}

/* Primary navigation (desktop) */
.primary-nav {
	position: relative; /* mega menu panels span the full header width */
	padding: 16px 0 0;
}

.primary-menu {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu > li {
	display: flex;
	align-items: flex-start;
	padding-bottom: 16px; /* keeps hover alive between the link and the panel */
}

.primary-menu a {
	display: block;
	padding: 4px 0;
	color: var(--white);
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	text-decoration: none;
	border-bottom: 2px solid transparent;
}

.primary-menu > li > a:hover,
.primary-menu > li:hover > a,
.primary-menu > li:focus-within > a {
	border-bottom-color: currentColor;
}

.submenu-toggle {
	display: none;
}

/* Mega menu panel, as on the original site: full-width black panel with a centered 1040px grid. */
.primary-menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	z-index: 60;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: start;
	gap: 32px;
	margin: 0;
	padding: 48px max(64px, calc((100% - 1040px) / 2)) 40px;
	list-style: none;
	background: var(--black);
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.15s ease, visibility 0.15s ease;
}

.primary-menu .sub-menu::before {
	content: "";
	position: absolute;
	top: 8px;
	left: 0;
	right: 0;
	height: 1px;
	background: #333;
}

.primary-menu .sub-menu.is-4col {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.primary-menu > li:hover > .sub-menu,
.primary-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
}

/* Columns built by theme.js: each stacks independently with a 32px gap. */
.primary-menu .mega-col,
.primary-menu .mega-col > ul {
	display: flex;
	flex-direction: column;
	gap: 32px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.primary-menu .sub-menu a {
	padding: 0;
	border: 0;
	color: var(--white);
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: uppercase;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus-visible {
	opacity: 0.75;
}

/* Search drawer */
.site-search {
	padding: 16px 0 24px;
	background: var(--black);
}

.site-search__form {
	display: flex;
	gap: 8px;
}

.site-search__input {
	flex: 1;
	min-width: 0;
	height: 48px;
	padding: 0 16px;
	border: 1px solid var(--white);
	background: var(--black);
	color: var(--white);
}

/* Mobile navigation */
.mobile-nav {
	position: fixed;
	inset: 0;
	z-index: 200;
	background: rgba(0, 0, 0, 0.5);
}

.mobile-nav[hidden] {
	display: none;
}

.mobile-nav__panel {
	width: min(340px, 86vw);
	height: 100%;
	overflow-y: auto;
	padding: 20px 24px 40px;
	background: var(--black);
	color: var(--white);
}

.mobile-nav__close {
	margin-bottom: 16px;
}

.mobile-menu,
.mobile-menu .sub-menu {
	margin: 0;
	padding: 0;
	list-style: none;
}

.mobile-menu > li {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.mobile-menu > li > a {
	flex: 1;
	padding: 14px 0;
	color: var(--white);
	font-family: var(--font-ui);
	font-size: 16px;
	font-weight: 700;
	text-transform: uppercase;
	text-decoration: none;
}

.mobile-menu .submenu-toggle {
	display: inline-flex;
	width: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: none;
	color: var(--white);
	cursor: pointer;
}

.mobile-menu .submenu-toggle svg {
	width: 20px;
	height: 20px;
	transition: transform 0.15s ease;
}

.mobile-menu .submenu-toggle[aria-expanded="true"] svg {
	transform: rotate(180deg);
}

.mobile-menu .sub-menu {
	display: none;
	flex-basis: 100%;
	padding-bottom: 12px;
}

.mobile-menu .is-open > .sub-menu {
	display: block;
}

.mobile-menu .sub-menu a {
	display: block;
	padding: 8px 0 8px 12px;
	color: var(--white);
	font-size: 14px;
	text-decoration: none;
}

/* --------------------------------------------------------------------------
   Sections
   -------------------------------------------------------------------------- */

.section--gold {
	background: var(--gold);
	color: var(--black);
}

.section--black {
	background: var(--black);
	color: var(--white);
}

.section--brown {
	background: var(--brown);
	color: var(--white);
}

.section-head--split {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 16px;
}

.section-title {
	margin: 0;
	font-size: 25px;
	line-height: 1.1;
}

.section-subtitle {
	margin: 17px 0 0;
	font-size: 16px;
	line-height: 1.3;
}

.section-actions {
	display: flex;
	justify-content: center;
}

.split {
	display: grid;
	grid-template-columns: 490px minmax(0, 407px);
	justify-content: space-between;
	align-items: center;
	gap: 40px;
}

.split__img {
	width: 100%;
	height: auto;
}

/* Hero */
.home-hero {
	height: 405px;
	padding-top: 56px;
	background: var(--black) var(--hero-bg) center / cover no-repeat;
}

.home-hero__inset {
	width: 577px;
	max-width: 100%;
	height: 277px;
	object-fit: cover;
}

/* Instagram */
.home-instagram {
	padding: 49px 0 48px;
}

.home-instagram__handle {
	padding-top: 4px;
	font-family: var(--font-head);
	font-size: 14px;
	text-decoration: none;
}

.home-instagram__grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 8px;
	margin: 15px 0 40px;
	padding: 0;
	list-style: none;
}

.home-instagram__grid a,
.home-instagram__grid img {
	display: block;
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.home-instagram__feed {
	margin: 38px 0 22px;
}

/* Statement text and image */
.home-text-image {
	padding: 91px 0 48px;
}

.home-text-image .split {
	align-items: start;
}

.home-text-image .split__media {
	margin-top: 50px;
}

.statement {
	font-family: var(--font-head);
	font-size: 31.37px;
	font-weight: 700;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.statement p {
	margin: 0 0 34px;
}

.home-text-image .btn {
	margin-top: 34px;
}

.home-text-image .split__img {
	aspect-ratio: 1;
	object-fit: cover;
}

/* Featured products */
.home-featured {
	padding: 31px 0 28px;
	overflow: hidden;
}

.carousel-nav {
	display: flex;
	gap: 16px;
	margin: -5px 20px 0 0;
}

.carousel-nav__btn {
	display: inline-flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: none;
	color: var(--black);
	cursor: pointer;
}

.carousel-nav__btn svg {
	width: 24px;
	height: 24px;
}

.carousel-nav__btn:disabled {
	opacity: 0.3;
	cursor: default;
}

.featured-track {
	display: grid;
	grid-auto-flow: column;
	grid-auto-columns: 230px;
	gap: 29px;
	margin: 15px 0 0;
	padding: 0;
	list-style: none;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
}

.featured-track::-webkit-scrollbar {
	display: none;
}

.featured-card {
	position: relative; /* contains WooCommerce's absolutely positioned screen-reader price text */
	scroll-snap-align: start;
}

.featured-card__image img {
	width: 230px;
	height: 230px;
	object-fit: contain;
	background: var(--white);
}

.featured-card__title {
	margin: 16px 0 0;
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.3;
	letter-spacing: 0;
}

.featured-card__title a {
	text-decoration: none;
}

.featured-card__price {
	margin: 0 0 12px;
	font-weight: 700;
	line-height: 1.3;
}

/* Stories */
.home-story--who {
	padding: 48px 0;
}

.home-story--promise {
	padding: 49px 0;
}

.home-story--who .split__img {
	aspect-ratio: 4 / 3;
	object-fit: cover;
	object-position: 50% 20%;
}

.home-story--promise .split__img {
	aspect-ratio: 3 / 4;
	object-fit: cover;
}

.eyebrow {
	margin: 0 0 16px;
	font-size: 14px;
}

.story-title {
	margin: 0 0 16px;
	font-size: 31.37px;
	line-height: 1.1;
}

.story-text {
	font-family: var(--font-head);
	font-size: 16px;
	line-height: 1.1;
	letter-spacing: -0.01em;
}

.story-text--lg {
	font-size: 20px;
}

.story-text p {
	margin: 0 0 1.1em;
}

.story-text p:last-child {
	margin-bottom: 0;
}

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

.site-footer {
	position: relative;
	padding: 24px 0 62px;
	background: var(--black) var(--footer-bg) center / cover no-repeat;
	color: var(--white);
	text-align: center;
}

.site-footer::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}

.site-footer__inner {
	position: relative;
}

.site-footer__logo {
	display: inline-block;
}

.site-footer__logo .site-logo__img {
	width: 74px;
	height: 72px;
	object-fit: contain;
}

.site-footer__signup {
	margin: 16px auto 0;
}

.signup-form {
	display: flex;
	justify-content: center;
	max-width: 491px;
	margin: 0 auto;
}

.signup-form__input {
	flex: 1;
	min-width: 0;
	height: 48px;
	padding: 0 16px;
	border: 0;
	border-radius: 0;
	background: var(--black);
	color: var(--white);
	font-family: var(--font-body);
	font-size: 16px;
}

.signup-form__input::placeholder {
	color: #bdbdbd;
}

.signup-form__button {
	flex: none;
	padding: 0 7px;
	white-space: nowrap;
}

.signup-form__hp {
	position: absolute;
	left: -9999px;
}

.signup-form__message {
	margin: 12px 0 0;
	font-size: 14px;
}

.social-links {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin: 101px 0 18px;
	padding: 0;
	list-style: none;
}

.social-links__link {
	display: inline-flex;
	width: 24px;
	height: 24px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	color: var(--white);
}

.social-links__link svg {
	width: 18px;
	height: 18px;
}

.social-links__link--email {
	background: var(--black);
	box-shadow: 0 0 0 1px var(--white);
}

.social-links__link--facebook {
	background: #3b5998;
}

.social-links__link--instagram {
	background: #e4405f;
}

.footer-notices {
	font-size: 16px;
	line-height: 1.3;
}

.footer-notices ul {
	margin: 0;
	padding: 0 0 0 40px;
	list-style-position: inside;
}

.footer-notices p {
	margin: 0;
}

.footer-notices a {
	color: inherit;
}

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

.page-content {
	padding: 48px 0 72px;
}

.page-header {
	margin-bottom: 19px;
	text-align: center;
}

.page-title {
	margin: 0;
	font-size: 25px;
}

.entry-content {
	font-size: 16px;
	line-height: 1.3;
}

.entry-content > * + * {
	margin-top: 1em;
}

.entry-content a {
	text-decoration: underline;
}

.entry-content h2 {
	font-size: 25px;
	margin-top: 1.5em;
}

.entry-content h3 {
	font-size: 20px;
	margin-top: 1.4em;
}

/* Text pages (FAQ, Legal Stuff): centered 660px column with no paragraph spacing, as on the original site. */
.page-content--text .entry-content {
	max-width: 660px;
	margin: 0 auto;
	text-align: center;
}

.page-content--text .entry-content > * + * {
	margin-top: 0;
}

.page-content--text .entry-content p {
	margin: 0;
}

.page-content--text .entry-content a {
	text-decoration: underline;
}

.post-list__item {
	padding: 24px 0;
	border-bottom: 1px solid var(--line);
}

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */

.select {
	position: relative;
	display: inline-block;
}

.select select,
.woocommerce-ordering select {
	height: 48px;
	padding: 0 44px 0 16px;
	border: 1px solid var(--field-border);
	border-radius: 4px;
	background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%231b1b1b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 14px center / 20px no-repeat;
	color: var(--field-text);
	font-family: var(--font-body);
	font-size: 16px;
	appearance: none;
	cursor: pointer;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="search"],
textarea {
	max-width: 100%;
	border-radius: 4px;
}

/* --------------------------------------------------------------------------
   Shop / category
   -------------------------------------------------------------------------- */

.shop-layout {
	display: grid;
	grid-template-columns: 224px minmax(0, 1fr);
	gap: 48px;
	padding: 40px 0 72px;
}

.shop-sidebar__mobile-toggle {
	display: none;
}

.shop-sidebar__mobile > summary {
	list-style: none;
}

.shop-sidebar__mobile > summary::-webkit-details-marker {
	display: none;
}

.shop-cats__title {
	margin: 0;
	line-height: 1.3;
}

.shop-cats ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.shop-cats a {
	display: block;
	line-height: 1.3;
	text-decoration: none;
}

.shop-cats a:hover {
	text-decoration: underline;
}

.shop-cats a.is-current {
	font-weight: 700;
}

.shop-filters {
	margin-top: 24px;
}

.filter {
	border-top: 1px solid var(--line);
}

.filter:last-of-type {
	border-bottom: 1px solid var(--line);
}

.filter__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 0;
	font-size: 14px;
	font-weight: 700;
	line-height: 21px;
	list-style: none;
	cursor: pointer;
}

.filter__title::-webkit-details-marker {
	display: none;
}

.filter__title::after {
	content: "";
	border: 5px solid transparent;
	border-top: 7px solid var(--black);
	border-bottom: 0;
	transition: transform 0.15s ease;
}

.filter[open] .filter__title::after {
	transform: rotate(180deg);
}

.filter__body {
	padding: 0 0 20px;
	font-size: 14px;
}

.filter__price {
	display: flex;
	align-items: center;
	gap: 8px;
}

.filter__price input {
	width: 100%;
	height: 40px;
	padding: 0 10px;
	border: 1px solid var(--field-border);
}

.check {
	display: flex;
	align-items: center;
	gap: 8px;
	cursor: pointer;
}

.shop-filters__actions {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-top: 16px;
}

.shop-filters__clear {
	font-size: 14px;
}

.shop-filters.is-auto .shop-filters__apply {
	display: none;
}

.woocommerce-products-header__title.page-title,
.shop-layout__main .page-title {
	margin: 0 0 8px;
	font-size: 25px;
	line-height: 1.1;
	text-align: left;
}

.shop-toolbar {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 16px;
}

.shop-toolbar__count {
	margin: 0 auto 0 0;
	color: var(--muted);
	font-size: 16px;
}

.shop-toolbar__form {
	margin: 0;
}

.shop-toolbar__form select {
	width: 144px;
}

.woocommerce-ordering {
	margin: 0;
}

.woocommerce-ordering select {
	width: 182px;
}

ul.products {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 24px 29px;
	margin: 0;
	padding: 0;
	list-style: none;
}

ul.products::before,
ul.products::after {
	display: none !important;
}

ul.products li.product {
	width: auto !important;
	float: none !important;
	margin: 0 !important;
	padding: 0;
	text-align: left;
}

ul.products li.product a {
	text-decoration: none;
}

ul.products li.product img {
	width: 100%;
	aspect-ratio: 1;
	margin: 0 0 8px !important;
	object-fit: contain;
}

ul.products li.product .product-card__title,
ul.products li.product .woocommerce-loop-product__title {
	margin: 0;
	padding: 0 !important;
	font-family: var(--font-body);
	font-size: 14px !important;
	font-weight: 400;
	line-height: 1.3;
	letter-spacing: 0;
}

ul.products li.product .price {
	display: block;
	margin: 4px 0 0 !important;
	color: var(--black) !important;
	font-size: 14px !important;
	line-height: 1.3;
}

ul.products li.product .price del {
	color: var(--muted);
}

ul.products li.product .price ins {
	text-decoration: none;
}

.stock-label--out {
	display: block;
	margin-top: 2px;
	color: var(--danger);
	font-family: var(--font-ui);
	font-size: 12px;
	font-weight: 700;
}

nav.woocommerce-pagination {
	margin-top: 48px;
}

nav.woocommerce-pagination ul {
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 8px;
	margin: 0 !important;
	padding: 0;
	border: 0 !important;
	list-style: none;
}

nav.woocommerce-pagination ul li {
	border: 0 !important;
}

nav.woocommerce-pagination ul li a,
nav.woocommerce-pagination ul li span {
	display: inline-flex !important;
	min-width: 28px;
	height: 28px;
	align-items: center;
	justify-content: center;
	padding: 0 6px !important;
	border-radius: 2px;
	color: var(--black);
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 700;
	text-decoration: none;
}

nav.woocommerce-pagination ul li span.current {
	background: var(--black) !important;
	color: var(--white) !important;
}

nav.woocommerce-pagination svg {
	width: 16px;
	height: 16px;
}

.woocommerce-info,
.woocommerce-message,
.woocommerce-error {
	border-top-color: var(--gold) !important;
}

/* --------------------------------------------------------------------------
   Single product
   -------------------------------------------------------------------------- */

.product-page {
	padding: 34px 0 72px;
}

.breadcrumb,
.woocommerce .woocommerce-breadcrumb.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 0 12px;
	margin: 0 0 42px;
	color: var(--muted);
	font-family: var(--font-ui);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.25;
}

.woocommerce .breadcrumb a,
.breadcrumb a {
	color: var(--black);
	text-decoration: none;
}

.breadcrumb a:hover {
	text-decoration: underline;
}

.breadcrumb > :last-child {
	color: var(--muted);
}

.single-product div.product {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 302px;
	gap: 48px;
	align-items: start;
}

.single-product div.product .woocommerce-product-gallery {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
	opacity: 1 !important;
}

.woocommerce-product-gallery__image img {
	width: auto !important;
	max-width: 100%;
	max-height: 580px;
	margin: 0 auto;
	object-fit: contain;
}

.woocommerce-product-gallery .flex-control-thumbs {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.woocommerce-product-gallery .flex-control-thumbs li {
	width: 64px;
}

.woocommerce-product-gallery .flex-control-thumbs img {
	opacity: 0.6;
	cursor: pointer;
}

.woocommerce-product-gallery .flex-control-thumbs img.flex-active {
	opacity: 1;
}

.woocommerce-product-gallery__trigger {
	display: none;
}

.single-product div.product .summary {
	width: 100% !important;
	float: none !important;
	margin: 0 !important;
}

.product_title {
	margin: 0 0 12px;
	font-size: 31.37px;
	line-height: 1.1;
}

.summary .price {
	margin: 0 0 16px;
	color: var(--black) !important;
	font-family: var(--font-body);
	font-size: 20px !important;
	line-height: 1.3;
}

.summary .price ins {
	text-decoration: none;
}

.summary .stock {
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 700;
}

.summary .stock.out-of-stock {
	color: var(--danger);
}

.summary form.cart {
	margin: 0 0 40px;
}

.summary form.cart:not(.variations_form),
.woocommerce-variation-add-to-cart {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 24px;
}

.quantity {
	display: inline-flex;
	align-items: center;
	gap: 4px;
}

.quantity .qty {
	width: 33px;
	height: 32px;
	padding: 0;
	border: 0;
	background: none;
	color: var(--field-text);
	font-family: var(--font-ui);
	font-size: 16px;
	font-weight: 700;
	text-align: center;
	-moz-appearance: textfield;
}

.quantity .qty::-webkit-inner-spin-button,
.quantity .qty::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

.qty-btn {
	display: inline-flex;
	width: 32px;
	height: 32px;
	align-items: center;
	justify-content: center;
	padding: 0;
	border: 0;
	background: var(--soft);
	color: var(--field-text);
	cursor: pointer;
}

.qty-btn svg {
	width: 14px;
	height: 14px;
}

.single_add_to_cart_button {
	min-width: 202px;
	min-height: 64px !important;
	padding: 0 32px !important;
	background: var(--gold) !important;
	color: var(--black) !important;
	font-family: var(--font-ui) !important;
	font-size: 16px !important;
	font-weight: 700 !important;
	border-radius: 0 !important;
}

.single_add_to_cart_button.disabled {
	opacity: 0.5 !important;
}

table.variations {
	width: 100%;
	margin: 0 0 20px;
	border-collapse: collapse;
}

table.variations th,
table.variations td {
	display: block;
	padding: 0;
	text-align: left;
}

table.variations th label {
	display: block;
	margin-bottom: 8px;
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 700;
}

table.variations td {
	padding-bottom: 16px;
}

table.variations select {
	width: 100%;
	height: 48px;
	padding: 0 44px 0 16px;
	border: 1px solid var(--field-border);
	border-radius: 4px;
	background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='m6 9 6 6 6-6' fill='none' stroke='%231b1b1b' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") right 14px center / 20px no-repeat;
	font-family: var(--font-body);
	font-size: 16px;
	appearance: none;
}

.reset_variations {
	display: inline-block;
	margin-top: 8px;
	font-size: 14px;
}

.woocommerce-variation-price {
	margin-bottom: 8px;
}

.add-to-cart-price {
	margin-left: 8px;
	font-weight: 700;
}

.fulfillment {
	width: 100%;
	margin: 0;
}

.fulfillment__title {
	margin: 0 0 12px;
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 700;
}

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

.fulfillment__option {
	display: flex;
	flex-direction: column;
	gap: 4px;
	padding: 12px 0 16px;
	font-size: 14px;
	line-height: 1.5;
}

.fulfillment__option + .fulfillment__option {
	border-top: 1px solid var(--line);
}

.fulfillment__name {
	font-weight: 400;
}

.fulfillment__note {
	margin: 4px 0 0;
	color: var(--muted);
	font-size: 12px;
}

.product-accordions {
	border-top: 1px solid var(--line);
}

.accordion {
	border-bottom: 1px solid var(--line);
}

.accordion__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 16px 0;
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 700;
	line-height: 1.1;
	list-style: none;
	cursor: pointer;
}

.accordion__title::-webkit-details-marker {
	display: none;
}

.accordion__title::after {
	content: "";
	width: 8px;
	height: 8px;
	margin-right: 4px;
	border-right: 2px solid var(--black);
	border-bottom: 2px solid var(--black);
	transform: rotate(45deg) translateY(-3px);
	transition: transform 0.15s ease;
}

.accordion[open] .accordion__title::after {
	transform: rotate(-135deg) translateY(-3px);
}

.accordion__body {
	padding: 0 0 20px;
	font-size: 14px;
	line-height: 1.3;
}

.accordion__body p {
	margin: 0 0 1em;
}

/* --------------------------------------------------------------------------
   Cart, checkout, account (block and classic)
   -------------------------------------------------------------------------- */

.page-content--wide {
	width: min(1100px, 100% - 2 * var(--gutter));
}

.wc-block-components-button:not(.is-link),
.wc-block-cart__submit-button,
.wc-block-components-checkout-place-order-button {
	border-radius: 0 !important;
	background: var(--gold) !important;
	color: var(--black) !important;
	font-family: var(--font-ui) !important;
	font-weight: 700 !important;
}

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

.woocommerce-account .woocommerce-MyAccount-navigation a {
	display: block;
	padding: 8px 0;
	font-family: var(--font-ui);
	font-weight: 700;
	text-decoration: none;
}

/* --------------------------------------------------------------------------
   Get Connected
   -------------------------------------------------------------------------- */

.location {
	position: relative;
	padding: 64px 0 58px;
	background: var(--black) var(--location-bg) center / cover no-repeat;
	color: var(--white);
}

.location::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.35);
}

.location .container {
	position: relative;
}

.location__map iframe {
	display: block;
	width: 100%;
	height: 350px;
	border: 0;
}

.location__info {
	display: grid;
	grid-template-columns: 339px 338px 1fr;
	margin-top: 51px;
}

.location__title {
	margin: 0;
	font-size: 25px;
}

.location__address {
	color: var(--gold);
	line-height: 1.3;
}

.location__address p {
	margin: 0 0 20px;
}

.location__address a {
	color: inherit;
	text-decoration: none;
}

.location__address .location__directions {
	color: #3374ff;
}

.location__hours {
	border-collapse: collapse;
}

.location__hours th,
.location__hours td {
	padding: 3px 0;
	font-weight: 400;
	line-height: 20.8px;
	text-align: left;
	vertical-align: top;
}

.location__hours th {
	padding-right: 24px;
}

.location__extra {
	margin-top: 40px;
}

/* --------------------------------------------------------------------------
   Test Results and Contact pages
   -------------------------------------------------------------------------- */

.coa-page,
.contact-page {
	max-width: 1000px;
}

.coa-page__intro {
	max-width: 640px;
	margin: 0 auto 32px;
	text-align: center;
}

.coa-search {
	max-width: 640px;
	margin: 0 auto;
}

.coa-search__input,
.contact-form input,
.contact-form textarea {
	width: 100%;
	padding: 12px 16px;
	border: 1px solid var(--field-border);
	border-radius: 4px;
	background: var(--white);
	color: var(--field-text);
	font-family: var(--font-body);
	font-size: 16px;
}

.coa-search__input {
	height: 48px;
}

.coa-count {
	margin: 16px 0 24px;
	color: var(--muted);
	text-align: center;
}

.coa-list {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 0 40px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.coa-list__link {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	padding: 14px 0;
	border-bottom: 1px solid var(--line);
	text-decoration: none;
}

.coa-list__link:hover .coa-list__title {
	text-decoration: underline;
}

.coa-list__action {
	flex: none;
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
}

.coa-empty {
	text-align: center;
}

.contact-page__intro {
	max-width: 640px;
	margin: 0 auto 32px;
	text-align: center;
}

.contact-page__grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr);
	gap: 64px;
	margin-top: 16px;
}

.contact-info__block {
	margin-bottom: 28px;
}

.contact-info__title,
.contact-form-wrap__title {
	margin: 0 0 8px;
	font-size: 20px;
}

.contact-info p {
	margin: 0;
	line-height: 1.5;
}

.contact-form-wrap__title {
	margin-bottom: 20px;
}

.contact-form .field {
	margin: 0 0 16px;
}

.contact-form label {
	display: block;
	margin-bottom: 6px;
	font-family: var(--font-ui);
	font-size: 14px;
	font-weight: 700;
}

.contact-form input {
	height: 48px;
}

.notice {
	margin: 0 0 20px;
	padding: 12px 16px;
	border-left: 4px solid var(--gold);
	background: var(--soft);
}

.notice--error {
	border-left-color: var(--danger);
}

/* --------------------------------------------------------------------------
   Age gate
   -------------------------------------------------------------------------- */

.age-gate {
	display: none;
}

.tp-age-pending .age-gate {
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	background: #e3e3e3 var(--age-gate-bg) center / cover no-repeat;
	overflow-y: auto;
}

.tp-age-pending body {
	overflow: hidden;
}

.age-gate__inner {
	max-width: 400px;
	color: var(--white);
	text-align: center;
	text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.age-gate__title {
	margin: 0 0 32px;
	font-size: 42px;
	font-weight: 700;
	line-height: 1.12;
	letter-spacing: 0;
}

.age-gate__text {
	font-size: 12px;
	line-height: 1.6;
}

.age-gate__text p {
	margin: 0;
}

.age-gate__actions {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 24px;
	text-shadow: none;
}

.age-gate__actions .btn {
	min-height: 32px;
	border-radius: 2px;
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 400;
}

.age-gate__no {
	background: rgba(255, 255, 255, 0.85);
}

.age-gate__denied {
	margin-top: 24px;
	font-size: 16px;
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 1080px) {
	.split {
		grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
	}
}

@media (max-width: 899px) {
	.site-header__bar {
		display: flex;
		align-items: center;
		padding: 16px 0;
	}

	.menu-toggle {
		display: inline-flex;
		margin-right: auto;
	}

	.site-header__logo,
	.site-header__logo .site-logo__img {
		width: 61px;
		height: 60px;
	}

	.site-header__actions {
		gap: 10px;
		margin-right: -6px;
	}

	.primary-nav {
		display: none;
	}

	.shop-layout {
		grid-template-columns: 1fr;
		gap: 24px;
		padding-top: 24px;
	}

	.shop-sidebar__mobile-toggle {
		display: inline-flex;
		width: 100%;
	}

	.shop-sidebar__content {
		padding-top: 20px;
	}

	.single-product div.product {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.shop-toolbar {
		flex-wrap: wrap;
		gap: 12px;
	}

	.shop-toolbar__count {
		flex-basis: 100%;
	}
}

@media (max-width: 767px) {
	.home-hero {
		height: 346px;
		padding-top: 32px;
	}

	.home-hero__inset {
		width: 100%;
		height: 168px;
	}

	.section-head--split {
		display: block;
	}

	.section-title {
		font-size: 21.47px;
	}

	.home-instagram {
		padding: 31px 0 31px;
	}

	.home-instagram__handle {
		display: block;
		padding-top: 0;
		font-size: 16px;
	}

	.home-instagram__grid {
		grid-template-columns: repeat(3, 1fr);
		margin: 14px 0 40px;
	}

	.split {
		grid-template-columns: 1fr;
		gap: 72px;
	}

	.home-text-image {
		padding: 32px 0;
	}

	.home-text-image .split__media {
		margin-top: 0;
	}

	.home-text-image .btn {
		width: 100%;
	}

	.home-story--who,
	.home-story--promise {
		padding: 32px 0;
	}

	.home-story .split {
		gap: 32px;
	}

	.statement {
		font-size: 24.89px;
	}

	.story-title {
		font-size: 24.89px;
	}

	.story-text--lg {
		font-size: 17.8px;
	}

	.statement p {
		margin-bottom: 27px;
	}

	.home-text-image .btn {
		margin-top: 34px;
	}

	.home-featured {
		padding: 8px 0 9px;
	}

	.home-featured .container {
		position: relative;
	}

	/* Single round "next" arrow floating over the cards, as on the original mobile layout. */
	.home-featured .carousel-nav {
		position: absolute;
		top: 158px;
		right: -10px;
		z-index: 2;
		margin: 0;
	}

	.home-featured [data-carousel-prev] {
		display: none;
	}

	.home-featured [data-carousel-next] {
		border-radius: 50%;
		background: var(--gold);
		box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25);
	}

	.home-featured [data-carousel-next] svg {
		width: 18px;
		height: 18px;
	}

	.home-featured [data-carousel-next]:disabled {
		display: none;
	}

	.featured-track {
		grid-auto-columns: 180px;
		gap: 8px;
	}

	.featured-card__image img {
		width: 180px;
		height: 180px;
	}

	.signup-form {
		max-width: none;
	}

	.signup-form__button {
		padding: 0 12px;
	}

	.site-footer__logo .site-logo__img {
		width: 44px;
		height: 43px;
	}

	.social-links {
		margin-top: 40px;
	}

	.footer-notices ul {
		padding-left: 20px;
	}

	ul.products {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 20px 16px;
	}

	.location {
		padding: 32px 0 40px;
	}

	.location__map iframe {
		height: 260px;
	}

	.location__info {
		grid-template-columns: 1fr;
		gap: 24px;
		margin-top: 32px;
	}

	.coa-list,
	.contact-page__grid {
		grid-template-columns: 1fr;
		gap: 0;
	}

	.contact-form-wrap {
		margin-top: 16px;
	}

	.age-gate__title {
		font-size: 34px;
	}
}
