/* ==========================================================================
   Wildflower Cannabis Co. — theme styles
   Brand: Sage Haze #F0F2E7 · Deep Grass #014312 · Mid Grass #66805A
          Light Grass #99AF88 · Green Tea #CDD8B9 · Blazed Red #FF6028
          Light Up Orange #FFC27A
   Type:  Gyst (headers) · Figtree (body) · Barlow Semi Condensed (nav/buttons)
   Editable remotely via MCP: tendtech/write-theme-file assets/css/wildflower.css
   ========================================================================== */

:root {
	--wf-sage: #F0F2E7;
	--wf-deep: #014312;
	--wf-mid: #66805A;
	--wf-light: #99AF88;
	--wf-tea: #CDD8B9;
	--wf-red: #FF6028;
	--wf-orange: #FFC27A;
	--wf-radius: 16px;
	--wf-radius-sm: 10px;
	--wf-shadow: 0 6px 24px rgba(1, 67, 18, 0.10);
	--wf-header-h: 76px;

	--wa-color-brand-fill-loud: var(--wf-deep);
	--wa-color-brand-fill-normal: var(--wf-tea);
	--wa-color-brand-fill-quiet: var(--wf-sage);
	--wa-color-brand-on-loud: var(--wf-sage);
	--wa-color-brand-on-normal: var(--wf-deep);
	--wa-color-brand-on-quiet: var(--wf-deep);
	--wa-color-brand-border-loud: var(--wf-deep);
	--wa-color-brand-border-normal: var(--wf-mid);
	--wa-color-brand-border-quiet: var(--wf-light);
	--wa-border-radius-pill: 999px;
}

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

/* Full-bleed sections break out to true viewport width. */
.wf-hero,
section[class*="wf-band"] {
	width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
}
@media (prefers-reduced-motion: reduce) {
	html { scroll-behavior: auto; }
	*, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body { -webkit-font-smoothing: antialiased; }

/* Pages sit flush under the navbar divider — remove WP's default 24px top
   margin on <main> (the sage body background was showing through as a gap). */
main.wp-block-group { margin-top: 0 !important; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.wf-btn {
	display: inline-flex;
	align-items: center;
	gap: 0.5em;
	font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
	font-weight: 600;
	font-size: 1rem;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	text-decoration: none;
	border-radius: 999px;
	padding: 0.8rem 1.75rem;
	line-height: 1;
	border: 2px solid transparent;
	cursor: pointer;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.wf-btn:hover { transform: translateY(-1px); }
.wf-btn-solid { background: var(--wf-deep); color: var(--wf-sage); }
.wf-btn-solid:hover { background: var(--wf-mid); color: var(--wf-sage); }
.wf-btn-light { background: var(--wf-sage); color: var(--wf-deep); }
.wf-btn-light:hover { background: var(--wf-tea); color: var(--wf-deep); }
.wf-btn-accent { background: var(--wf-red); color: #fff; }
.wf-btn-accent:hover { background: #e0501d; color: #fff; }
.wf-btn-outline { background: transparent; color: var(--wf-deep); border-color: var(--wf-deep); }
.wf-btn-outline:hover { background: var(--wf-deep); color: var(--wf-sage); }

.wp-block-button.is-style-outline .wp-block-button__link {
	background: transparent;
	color: var(--wf-deep);
	border: 2px solid var(--wf-deep);
}
.wp-block-button.is-style-outline .wp-block-button__link:hover {
	background: var(--wf-deep);
	color: var(--wf-sage);
}

/* --------------------------------------------------------------------------
   Announcement bar
   -------------------------------------------------------------------------- */
.wf-topbar { background: var(--wf-red); color: #fff; }
.wf-topbar-inner {
	max-width: 1280px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	padding: 0.55rem clamp(1rem, 4vw, 2rem);
	font-size: 0.95rem;
}
.wf-topbar p { margin: 0; }
.wf-topbar a { color: #fff; font-weight: 700; text-underline-offset: 3px; }
.wf-topbar-close { background: none; border: 0; color: #fff; font-size: 1rem; cursor: pointer; padding: 0.25rem 0.5rem; opacity: 0.85; }
.wf-topbar-close:hover { opacity: 1; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.wf-header {
	position: sticky;
	top: 0;
	z-index: 90;
	background: var(--wf-sage);
	border-bottom: 1px solid var(--wf-tea);
	transition: box-shadow 0.25s ease;
}
.wf-header.is-scrolled { box-shadow: var(--wf-shadow); }
.wf-header-inner {
	max-width: 1280px;
	margin: 0 auto;
	min-height: var(--wf-header-h);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 0.5rem clamp(1rem, 4vw, 2rem);
}
.wf-brand { display: inline-flex; align-items: center; }
.wf-brand img { display: block; height: 48px; width: auto; }

.wf-nav ul { display: flex; align-items: center; gap: clamp(1rem, 2vw, 2rem); list-style: none; margin: 0; padding: 0; }
.wf-nav a {
	font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
	font-weight: 600;
	font-size: 1.02rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--wf-deep);
	padding: 0.5rem 0;
	border-bottom: 2px solid transparent;
	transition: border-color 0.2s ease, color 0.2s ease;
}
.wf-nav a:hover,
.wf-nav a[aria-current="page"] { border-bottom-color: var(--wf-red); }

.wf-header-actions { display: flex; align-items: center; gap: 0.75rem; }
.wf-nav-toggle { display: none; background: none; border: 0; color: var(--wf-deep); font-size: 1.5rem; cursor: pointer; padding: 0.4rem 0.6rem; }

@media (max-width: 1023px) {
	.wf-nav { display: none; }
	.wf-nav-toggle { display: inline-flex; }
	.wf-header-shop { display: none; }
	.wf-brand img { height: 40px; }
}

.wf-drawer::part(dialog) { background: var(--wf-sage); }
.wf-drawer-nav { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.25rem; }
.wf-drawer-nav a {
	display: flex;
	align-items: center;
	gap: 0.9rem;
	font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
	font-weight: 600;
	font-size: 1.2rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--wf-deep);
	padding: 0.8rem 0.5rem;
	border-radius: var(--wf-radius-sm);
}
.wf-drawer-nav a:hover { background: var(--wf-tea); }
.wf-drawer-nav i { width: 1.4rem; text-align: center; color: var(--wf-mid); }
.wf-drawer-foot { margin-top: 1.5rem; display: grid; gap: 1rem; justify-items: start; }
.wf-drawer-phone a { color: var(--wf-deep); text-decoration: none; font-weight: 600; }

/* --------------------------------------------------------------------------
   Social icons
   -------------------------------------------------------------------------- */
.wf-social { display: flex; gap: 0.4rem; }
.wf-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.4rem;
	height: 2.4rem;
	border-radius: 50%;
	color: var(--wf-deep);
	background: var(--wf-tea);
	font-size: 1.05rem;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.wf-social a:hover { background: var(--wf-red); color: #fff; transform: translateY(-2px); }

/* --------------------------------------------------------------------------
   Cards & content helpers
   -------------------------------------------------------------------------- */
.wf-card {
	background: #fff;
	border: 1px solid var(--wf-tea);
	border-radius: var(--wf-radius);
	overflow: hidden;
	height: 100%;
	display: flex;
	flex-direction: column;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wf-card:hover { transform: translateY(-4px); box-shadow: var(--wf-shadow); }
.wf-card > * { padding-left: 1.25rem; padding-right: 1.25rem; }
.wf-card > .wp-block-post-featured-image,
.wf-card > figure { padding: 0; margin: 0; }
.wf-card .wp-block-post-title { margin-top: 1rem; margin-bottom: 0.5rem; }
.wf-card .wp-block-post-title a { text-decoration: none; }
.wf-card .wp-block-post-title a:hover { color: var(--wf-mid); }
.wf-card > :last-child { padding-bottom: 1.5rem; }

.wf-card .wp-block-post-excerpt { display: flex; flex-direction: column; flex-grow: 1; margin-top: 0; }
.wf-card .wp-block-post-excerpt__excerpt { margin: 0; }
.wf-card .wp-block-post-excerpt__more-text { margin: auto 0 0; padding-top: 0.9rem; }
.wf-card .wp-block-post-excerpt__more-link {
	font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
	font-weight: 600;
	font-size: 0.95rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--wf-mid);
}
.wf-card .wp-block-post-excerpt__more-link:hover { color: var(--wf-red); }

.wf-eyebrow {
	font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
	font-weight: 600;
	font-size: 0.85rem;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wf-mid);
}
.wf-eyebrow a { color: var(--wf-mid); text-decoration: none; }
.wf-eyebrow a:hover { color: var(--wf-red); }

.wf-post-meta { color: var(--wf-mid); font-size: 0.95rem; }
.wf-post-cta { margin-top: var(--wp--preset--spacing--60, 4rem); }

.wf-page-hero {
	background-image:
		linear-gradient(rgba(1, 67, 18, 0.88), rgba(1, 67, 18, 0.88)),
		url("../img/flower2.jpg");
	background-size: cover;
	background-position: center;
}

/* --------------------------------------------------------------------------
   Hero slider
   -------------------------------------------------------------------------- */
.wf-hero { position: relative; }
.wf-hero wa-carousel { --aspect-ratio: auto; --wa-color-neutral-0: var(--wf-sage); }
.wf-hero wa-carousel::part(base) { position: relative; grid-template-columns: 1fr; grid-template-areas: 'slides' 'pagination'; }
.wf-hero wa-carousel::part(navigation-button) {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 5;
	color: var(--wf-sage);
	font-size: 1.4rem;
	background: rgba(1, 67, 18, 0.35);
	border-radius: 50%;
	padding: 0.5rem 0.75rem;
}
.wf-hero wa-carousel::part(navigation-button-previous) { left: 14px; }
.wf-hero wa-carousel::part(navigation-button-next) { right: 14px; }
.wf-hero wa-carousel-item { padding: 0; }
.wf-hero-slide { width: 100%; }
.wf-hero wa-carousel::part(pagination) { position: absolute; bottom: 1.1rem; left: 50%; transform: translateX(-50%); z-index: 5; }
.wf-hero wa-carousel::part(pagination-item) { background-color: rgba(240, 242, 231, 0.45); }
.wf-hero wa-carousel::part(pagination-item-active) { background-color: var(--wf-sage); }
.wf-hero-slide {
	position: relative;
	display: grid;
	place-items: center;
	height: clamp(480px, 62vh, 660px);
	padding: clamp(2rem, 6vw, 5rem) clamp(1rem, 5vw, 3rem);
	background-size: cover;
	background-position: center;
	color: var(--wf-sage);
	text-align: center;
}
.wf-hero-slide::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(1, 67, 18, 0.62), rgba(1, 67, 18, 0.62)); }
.wf-hero-slide > * { position: relative; z-index: 1; }
.wf-hero-slide h1, .wf-hero-slide h2 { color: var(--wf-sage); }
.wf-hero-slide .wf-eyebrow { color: var(--wf-orange); }

/* --------------------------------------------------------------------------
   Location & info cards
   -------------------------------------------------------------------------- */
.wf-loc-card {
	background: #fff;
	border: 1px solid var(--wf-tea);
	border-radius: var(--wf-radius);
	padding: 1.75rem;
	height: 100%;
	display: flex;
	flex-direction: column;
}
.wf-loc-card h3 { margin-top: 0; }
.wf-loc-card > img:first-child { align-self: center; }
.wf-loc-card[style*="text-align:center"] > i,
.wf-loc-card[style*="text-align:center"] > img { align-self: center; }

.wf-loc-card > .wf-loc-links { margin-top: auto !important; padding-top: 1.25rem; }
.wf-loc-card > .wf-btn,
.wf-loc-card > p:last-child > .wf-btn:only-child { margin-top: auto; }
.wf-loc-card > .wf-btn { align-self: center; }
.wf-loc-card > .wf-btn ~ .wf-btn { margin-top: 0.5rem; }
.wf-loc-card > .wf-social:last-child { margin-top: auto; justify-content: center; padding-top: 1rem; }

.wf-loc-links { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 1rem; }
.wf-loc-links a {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--wf-deep);
	background: var(--wf-sage);
	border: 1px solid var(--wf-tea);
	border-radius: 999px;
	padding: 0.4rem 0.9rem;
	text-decoration: none;
	transition: background-color 0.2s ease;
}
.wf-loc-links a:hover { background: var(--wf-tea); }

.wf-hours { list-style: none; margin: 0.75rem 0 0; padding: 0; font-size: 0.98rem; }
.wf-hours li { display: flex; justify-content: space-between; gap: 1rem; padding: 0.2rem 0; border-bottom: 1px dashed var(--wf-tea); }

/* --------------------------------------------------------------------------
   Amenities + payment lists
   -------------------------------------------------------------------------- */
.wf-amenities { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; margin: 1.75rem 0; }
.wf-amenity {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.45rem;
	text-align: center;
	background: #fff;
	border: 1px solid var(--wf-tea);
	border-radius: 12px;
	padding: 1.2rem 0.85rem;
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--wf-deep);
}
.wf-amenity i { font-size: 1.6rem; color: var(--wf-mid); }
.wf-amenity-note { color: var(--wf-mid); font-size: 0.8rem; font-weight: 400; margin: 0; line-height: 1.35; }
.wf-amenity.is-soon { border-style: dashed; }
.wf-amenity.is-soon i { color: var(--wf-light); }
.wf-badge-soon {
	display: inline-block;
	font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wf-red);
	background: rgba(255, 96, 40, 0.1);
	border-radius: 999px;
	padding: 0.15rem 0.6rem;
}
.wf-badge-yes {
	display: inline-block;
	font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--wf-mid);
	background: var(--wf-sage);
	border-radius: 999px;
	padding: 0.15rem 0.6rem;
}

.wf-pay-list { display: grid; gap: 1.15rem; margin: 1.5rem 0; }
.wf-pay-item { display: flex; gap: 0.9rem; align-items: flex-start; }
.wf-pay-item > i { color: var(--wf-mid); font-size: 1.4rem; width: 1.9rem; text-align: center; margin-top: 0.15rem; flex-shrink: 0; }
.wf-pay-item h3, .wf-pay-item h4 { margin: 0 0 0.2rem; font-size: 1.15rem; }
.wf-pay-item p { margin: 0; color: var(--wf-mid); font-size: 1rem; line-height: 1.5; }
.wf-band-tea .wf-pay-item p { color: var(--wf-deep); }
.wf-band-tea .wf-pay-item > i { color: var(--wf-deep); }

/* Location "Visit Us" card: space out the Hours / Ways to Pay / Find Us On subheads */
.wf-loc-card:has(> h2) h3 { margin-top: 1.5rem; }

/* Discounts: 3 across on desktop so the longer 4th (Medical) card sits under them */
.wf-discount-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
@media (min-width: 900px) { .wf-discount-grid { grid-template-columns: repeat(3, 1fr); } }

/* Grouped amenity sub-sections (Payment Methods vs Store Access) */
.wf-amenity-group + .wf-amenity-group { margin-top: 2rem; }
.wf-amenity-group-title {
	font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	font-size: 1rem;
	color: var(--wf-deep);
	margin: 0;
	display: flex;
	align-items: center;
	gap: 0.5rem;
}
.wf-amenity-group .wf-amenities { margin-top: 0.9rem; }

/* --------------------------------------------------------------------------
   FAQ accordions
   -------------------------------------------------------------------------- */
wa-details { margin-bottom: 0.65rem; }
wa-details::part(base) { background: #fff; border: 1px solid var(--wf-tea); border-radius: 12px; }
wa-details::part(header) { font-weight: 600; font-size: 1.02rem; }
.wf-band-white wa-details::part(base) { background: var(--wf-sage); }

/* --------------------------------------------------------------------------
   Carrot store page
   -------------------------------------------------------------------------- */
.wf-store-band { background: #fff; padding: 0.6rem clamp(1rem, 3vw, 2rem) clamp(2.5rem, 4vw, 3.5rem); }
.wf-store-band > .wf-store-inner { max-width: 1360px; margin: 0 auto; }
#carrot-store { min-height: 72vh; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.wf-footer { background: var(--wf-deep); color: var(--wf-sage); margin-top: 0; }
.wf-footer a { color: var(--wf-sage); }
.wf-footer a:hover { color: var(--wf-orange); }
.wf-footer-inner { max-width: 1280px; margin: 0 auto; padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem) 1.5rem; }
.wf-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 0.8fr 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); }
@media (max-width: 900px) { .wf-footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .wf-footer-grid { grid-template-columns: 1fr; } }

.wf-footer-brand p { font-size: 0.98rem; color: var(--wf-tea); margin: 1rem 0; }
.wf-footer .wf-social a { background: rgba(240, 242, 231, 0.12); color: var(--wf-sage); }
.wf-footer .wf-social a:hover { background: var(--wf-red); color: #fff; }

.wf-footer-heading {
	font-family: "Barlow Semi Condensed", "Arial Narrow", sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--wf-light);
	margin: 0 0 1rem;
}
.wf-footer-heading-app { margin-top: 1.75rem; }
.wf-footer-loc { font-style: normal; font-size: 0.98rem; margin-bottom: 1rem; color: var(--wf-tea); }
.wf-footer-loc a { text-decoration: none; }
.wf-footer-phone a { text-decoration: none; font-weight: 600; }
.wf-footer-links { list-style: none; margin: 0; padding: 0; }
.wf-footer-links li { padding: 0.25rem 0; }
.wf-footer-links a { text-decoration: none; font-size: 0.98rem; }
.wf-footer .wf-btn-light { color: var(--wf-deep); }
.wf-footer .wf-btn-light:hover { color: var(--wf-deep); background: var(--wf-tea); }

.wf-app-links { display: grid; gap: 0.5rem; max-width: 230px; }
.wf-app-links a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0.6rem;
	width: 100%;
	border: 1px solid rgba(240, 242, 231, 0.35);
	border-radius: var(--wf-radius-sm);
	padding: 0.55rem 1rem;
	text-decoration: none;
	font-size: 0.95rem;
	font-weight: 600;
}
.wf-app-links a:hover { border-color: var(--wf-orange); }

.wf-footer-legal {
	border-top: 1px solid rgba(240, 242, 231, 0.18);
	margin-top: clamp(2rem, 5vw, 3rem);
	padding-top: 1.25rem;
	font-size: 0.85rem;
	color: var(--wf-light);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 0.5rem 2rem;
}
.wf-footer-legal p { margin: 0; }
.wf-footer-legal a { color: var(--wf-light); }

/* --------------------------------------------------------------------------
   Age gate
   -------------------------------------------------------------------------- */
.wf-agegate {
	position: fixed;
	inset: 0;
	z-index: 999;
	display: grid;
	place-items: center;
	padding: 1rem;
	background: rgba(1, 67, 18, 0.82);
	backdrop-filter: blur(6px);
}
.wf-agegate-card {
	background: var(--wf-sage);
	border-radius: var(--wf-radius);
	max-width: 440px;
	width: 100%;
	padding: 2.5rem 2rem;
	text-align: center;
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}
.wf-agegate-card img { height: 72px; width: auto; margin-bottom: 1.25rem; }
.wf-agegate-card h2 { font-family: "Gyst", Georgia, serif; font-size: 1.7rem; margin: 0 0 0.5rem; color: var(--wf-deep); }
.wf-agegate-card p { margin: 0 0 1.5rem; color: var(--wf-mid); font-size: 0.98rem; }
.wf-agegate-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }
.wf-agegate-legal { margin-top: 1.25rem !important; font-size: 0.8rem !important; }
body.wf-agegate-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   Utilities
   -------------------------------------------------------------------------- */
.wf-band-deep { background: var(--wf-deep); color: var(--wf-sage); }
.wf-band-deep h1, .wf-band-deep h2, .wf-band-deep h3 { color: var(--wf-sage); }
.wf-band-tea { background: var(--wf-tea); }
.wf-band-white { background: #fff; }
.wf-texture {
	background-image:
		linear-gradient(rgba(1, 67, 18, 0.55), rgba(1, 67, 18, 0.55)),
		url("../img/smoke1.jpg");
	background-size: cover;
	background-position: center;
	color: var(--wf-sage);
}

.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	overflow: hidden;
	position: absolute !important;
	word-wrap: normal !important;
}
