/*
 Theme Name:   5 Star Equine GeneratePress Child
 Description:  5 Star Equine GeneratePress child theme
 Author:       Jesse Hodges
 Author URI:   https://www.twoloonsoftware.com/
 Template:     generatepress
 Version:      1.0
*/


:root {
	--5s-vertical-space: 50px;
	--5s-vertical-space-small: 30px;

	/* Brand colors */
	--fs-red: #A21E21;
	--fs-gold: #C19A63;
	--fs-border: #dedede;
}

@media screen and (min-width: 768px) {
	:root {
		--5s-vertical-space: 100px;
		--5s-vertical-space-small: 50px;
	}
}

/* ---------------------------------------------------------------------------
   Generic theme utilities (shared across page templates)
   --------------------------------------------------------------------------- */

/* GeneratePress no-sidebar layout: article shrinks to its content inside the
   flex content area. Keep it full width so centered page content lays out
   against the full container, not its own intrinsic width. */
body.no-sidebar #content > article {
	flex: 1 1 100%;
	width: 100%;
}

/* Reinforce the HTML5 [hidden] attribute (some legacy CSS uses
   display:flex/inline-flex which would otherwise win the cascade). */
[hidden] {
	display: none !important;
}

/* Form chrome reset for fieldsets/legends used as semantic radio/checkbox
   groups. Apply by adding the `fs-fieldset` class so we don't fight other
   plugins' fieldset styling. */
.fs-fieldset {
	border: 0;
	padding: 0;
	margin: 0 0 10px;
	min-width: 0;
}

.fs-fieldset > legend {
	float: none;
	padding: 0;
	margin-bottom: 10px;
	font-weight: 600;
	width: 100%;
}

/* Visible keyboard focus ring in brand red. Add to any focusable element
   whose default focus style is missing or stripped by a parent component. */
.fs-focus-ring:focus-visible {
	outline: 2px solid var(--fs-red);
	outline-offset: 2px;
}

/* Generic text/search input. */
.fs-input {
	padding: 10px 14px;
	border: 1px solid var(--fs-border);
	background: #fff;
	font: inherit;
	min-width: 0;
}

.fs-input:focus-visible {
	outline: 2px solid var(--fs-red);
	outline-offset: 2px;
}

/* Generic bordered card surface. */
.fs-card {
	padding: 20px;
	border: 1px solid var(--fs-border);
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

/* Responsive auto-fill card grid. Override --fs-card-min on the container
   to change the minimum card width (default 280px). */
.fs-cards-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 24px;
	grid-template-columns: repeat( auto-fill, minmax( var( --fs-card-min, 280px ), 1fr ) );
}

p{
	margin-bottom:0;
}

p + p, p + a.s-button{
	margin-top:1em;
}

.home-image-mask-large-left{
	mask-image: linear-gradient(to left, rgba(0, 0, 0, 1.0) calc(100% - 200px), transparent 100%);
}

/* ----------------------------------------------------------------------------
 * WooCommerce Product Categories block — styled to match the legacy
 * `.bapf_sfilter.filter-prod-cat` category nav from the old 5starequine theme.
 *
 * Block markup (as of WC 8+):
 *   ul.wc-block-product-categories-list.wc-block-product-categories-list--depth-0
 *     > li.wc-block-product-categories-list-item
 *         > a > span.wc-block-product-categories-list-item__name
 *         > ul.wc-block-product-categories-list--depth-1 (subcats)
 * -------------------------------------------------------------------------- */

.wc-block-product-categories-list,
.wc-block-product-categories-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.wc-block-product-categories-list a {
	color: inherit;
	text-decoration: none;
	transition: color 0.2s ease-in-out;
}

.wc-block-product-categories-list a:hover,
.wc-block-product-categories-list a:focus,
.wc-block-product-categories-list-item.is-current > a {
	color: var(--fs-red);
}

/* Top-level items: bold, with the brand star bullet. */
.wc-block-product-categories-list--depth-0 > .wc-block-product-categories-list-item {
	font-weight: 600;
	margin-top: 30px;
}

.wc-block-product-categories-list--depth-0 > .wc-block-product-categories-list-item:first-child {
	margin-top: 0;
}

.wc-block-product-categories-list--depth-0 > .wc-block-product-categories-list-item > a {
	display: block;
	position: relative;
	padding-left: 20px;
}

.wc-block-product-categories-list--depth-0 > .wc-block-product-categories-list-item > a::before {
	content: "";
	position: absolute;
	top: 0.45em;
	left: 0;
	width: 9px;
	height: 9px;
	background: url( "assets/images/icon-star.svg" ) center center no-repeat;
	background-size: contain;
}

/* Sub-categories: indented, normal weight, tighter rhythm. */
.wc-block-product-categories-list--depth-0 .wc-block-product-categories-list {
	margin-top: 15px;
	margin-left: 20px;
}

.wc-block-product-categories-list--depth-0 .wc-block-product-categories-list .wc-block-product-categories-list-item {
	font-weight: 400;
	margin-top: 10px;
}

.wc-block-product-categories-list--depth-0 .wc-block-product-categories-list .wc-block-product-categories-list-item:first-child {
	margin-top: 0;
}

/* Drop the count parenthetical to match the old nav, if it's enabled. */
.wc-block-product-categories-list-item-count {
	color: #777;
	font-weight: 400;
	margin-left: 4px;
}
/* ----------------------------------------------------------------------------
 * Page Builder sections (template-sections.php)
 * Self-contained modern CSS for the ACF flexible-content section partials.
 * -------------------------------------------------------------------------- */

.fs-section {
	margin: 0 auto;
	padding: var(--5s-vertical-space) 24px;
	box-sizing: border-box;
}

.fs-section--no-pad-top    { padding-top: 0; }
.fs-section--no-pad-bottom { padding-bottom: 0; }

.fs-section__inner {
	max-width: 1200px;
	margin: 0 auto;
}

/* Section titles: red, with the underlaid tan brand star. */
.fs-section__title,
.fs-title-star {
	position: relative;
	display: inline-block;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 700;
	line-height: 1.2;
	color: var(--fs-red);
	margin: 0 0 24px;
	z-index: 0;
}

.fs-section__title::before,
.fs-title-star::before {
	content: "";
	position: absolute;
	top: -0.2em;
	left: -0.5em;
	width: 1.6em;
	height: 1.5em;
	background: url("assets/images/icon-star-title.svg") center / contain no-repeat;
	z-index: -1;
	pointer-events: none;
}

.fs-section__body > * + * { margin-top: 1em; }
.fs-section__body p      { margin: 0; }

/* CTA button. */
.fs-button {
	display: inline-block;
	background: var(--fs-red);
	color: #fff;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 12px 24px;
	border-radius: 2px;
	transition: background 0.2s ease;
}

.fs-button:hover,
.fs-button:focus-visible {
	background: #7d1719;
	color: #fff;
}

/* ---- Hero --------------------------------------------------------------- */

.fs-section--hero {
	position: relative;
	min-height: 520px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	overflow: hidden;
	padding: 96px 24px;
	margin: 0;
	max-width: none;
}

.fs-section--hero__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}

.fs-section--hero::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.15), rgba(0,0,0,0.25));
	z-index: 1;
}

/* Giant translucent brand star, centered on the hero. */
.fs-section--hero::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: min(110vh, 95vw);
	height: min(110vh, 95vw);
	transform: translate(-50%, -50%);
	background: url("assets/images/icon-star.svg") center / contain no-repeat;
	opacity: 0.65;
	z-index: 2;
	pointer-events: none;
}

.fs-section--hero__inner {
	position: relative;
	z-index: 3;
	max-width: 480px;
	text-align: center;
}

.fs-section--hero__title {
	font-size: clamp(36px, 5vw, 56px);
	font-weight: 700;
	line-height: 1.1;
	color: #fff;
	margin: 0 0 16px;
}

.fs-section--hero__text {
	font-size: clamp(16px, 1.4vw, 20px);
	line-height: 1.5;
}

.fs-section--hero__text--left {
	text-align: left;
}

/* ---- Text & Image ------------------------------------------------------- */

.fs-section--text-image__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
}

@media (min-width: 768px) {
	.fs-section--text-image__grid {
		grid-template-columns: 1fr 1fr;
		gap: 48px;
	}
	.fs-section--text-image--reverse .fs-section--text-image__media {
		order: 2;
	}
}

.fs-section--text-image__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.fs-section--text-image__video-link {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 4px;
}

.fs-section--text-image__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.5);
	background: rgba(0,0,0,0.15);
	transition: background 0.2s ease;
}

.fs-section--text-image__video-link:hover .fs-section--text-image__play {
	background: rgba(0,0,0,0.3);
}

/* ---- Image & Quote ------------------------------------------------------ */

.fs-section--image-quote__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: center;
}

@media (min-width: 768px) {
	.fs-section--image-quote__grid {
		grid-template-columns: 2fr 3fr;
		gap: 48px;
	}
}

.fs-section--image-quote__media img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.fs-section--image-quote__quote {
	font-size: clamp(20px, 1.8vw, 26px);
	font-style: italic;
	line-height: 1.45;
	color: #222;
	margin: 0;
	padding: 0;
	border: 0;
}

.fs-section--image-quote__mark {
	color: var(--fs-red);
	font-style: normal;
	font-weight: 700;
}

.fs-section--image-quote__signature {
	display: block;
	max-width: 280px;
	height: auto;
	margin: 16px 0 0;
}

.fs-section--image-quote__attribution {
	margin: 8px 0 0;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--fs-red);
}

/* ---- Team Grid ---------------------------------------------------------- */

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

@media (min-width: 600px) { .fs-team-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px) { .fs-team-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.fs-team-grid__item { margin: 0; }

.fs-team-card {
	position: relative;
	display: block;
	width: 100%;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
	overflow: hidden;
	border-radius: 4px;
	aspect-ratio: 1 / 1;
}

.fs-team-card__photo {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.fs-team-card:hover .fs-team-card__photo,
.fs-team-card:focus-visible .fs-team-card__photo {
	transform: scale(1.04);
}

.fs-team-card__overlay {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	gap: 4px;
	padding: 16px;
	color: #fff;
	background: linear-gradient(180deg, rgba(0,0,0,0) 30%, rgba(0,0,0,0.75) 100%);
	opacity: 0;
	transition: opacity 0.25s ease;
	text-align: left;
}

.fs-team-card:hover .fs-team-card__overlay,
.fs-team-card:focus-visible .fs-team-card__overlay {
	opacity: 1;
}

.fs-team-card__name {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.2;
}

.fs-team-card__job {
	font-size: 12px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--fs-gold);
}

.fs-team-card__cta {
	margin-top: 6px;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

/* ---- Production list (flat) -------------------------------------------- */

.fs-section--team__production {
	margin-top: 64px;
}

.fs-section--team__production-title {
	font-size: clamp(20px, 1.8vw, 26px);
	font-weight: 700;
	color: #222;
	margin: 0 0 16px;
}

.fs-production-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 12px 32px;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.fs-production-list li { margin: 0; }

/* ---- Team Dropdowns (Riders) ------------------------------------------- */

.fs-team-dropdowns {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fs-team-dropdowns__group {
	border: 1px solid var(--fs-border);
	border-radius: 4px;
}

.fs-team-dropdowns__summary {
	list-style: none;
	cursor: pointer;
	padding: 16px 20px;
	font-size: clamp(18px, 1.5vw, 22px);
	font-weight: 700;
	color: #222;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.fs-team-dropdowns__summary::-webkit-details-marker { display: none; }

.fs-team-dropdowns__chevron {
	width: 12px;
	height: 12px;
	border-right: 2px solid var(--fs-red);
	border-bottom: 2px solid var(--fs-red);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}

.fs-team-dropdowns__group[open] .fs-team-dropdowns__chevron {
	transform: rotate(-135deg);
}

.fs-team-dropdowns__group[open] .fs-team-dropdowns__summary {
	border-bottom: 1px solid var(--fs-border);
}

.fs-team-dropdowns__group > .fs-team-grid {
	padding: 20px;
}

/* ---- Team Bio Dialog --------------------------------------------------- */

.fs-team-dialog {
	width: min(900px, 92vw);
	max-height: min(85vh, 800px);
	border: 0;
	border-radius: 6px;
	padding: 0;
	background: #fff;
	color: inherit;
	box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.fs-team-dialog::backdrop {
	background: rgba(0,0,0,0.55);
}

.fs-team-dialog__close-form {
	margin: 0;
	display: flex;
	justify-content: flex-end;
	padding: 8px 12px 0 0;
}

.fs-team-dialog__close {
	background: transparent;
	border: 0;
	font-size: 28px;
	line-height: 1;
	color: #555;
	cursor: pointer;
	padding: 4px 10px;
}

.fs-team-dialog__close:hover { color: var(--fs-red); }

.fs-team-dialog__body {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	padding: 0 32px 32px;
}

@media (min-width: 700px) {
	.fs-team-dialog__body {
		grid-template-columns: 240px 1fr;
		align-items: start;
	}
}

.fs-team-dialog__photo {
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.fs-team-dialog__name {
	font-size: clamp(22px, 2vw, 30px);
	font-weight: 700;
	color: var(--fs-red);
	margin: 0 0 4px;
}

.fs-team-dialog__job {
	margin: 0 0 16px;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--fs-gold);
}

.fs-team-dialog__bio > * + * { margin-top: 1em; }

/* ---- Features grid ----------------------------------------------------- */

.fs-section--features__title {
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 700;
	color: var(--fs-red);
	text-align: center;
	margin: 0 0 48px;
}

.fs-features-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 32px 48px;
	grid-template-columns: 1fr;
}

@media (min-width: 600px) { .fs-features-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .fs-features-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.fs-feature {
	display: grid;
	grid-template-columns: 64px 1fr;
	gap: 18px;
	align-items: start;
}

.fs-feature__icon img {
	display: block;
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.fs-feature__title {
	font-size: 16px;
	font-weight: 700;
	color: #555;
	margin: 0 0 6px;
}

.fs-feature__text {
	font-size: 14px;
	line-height: 1.5;
	color: #555;
}

.fs-feature__text p { margin: 0; }

/* ---- CTA ribbon -------------------------------------------------------- */

.fs-section--cta-ribbon {
	background: #b8b8b8;
	color: #fff;
	padding: 24px;
}

.fs-section--cta-ribbon__inner {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	gap: 24px;
	align-items: center;
	justify-content: center;
}

.fs-section--cta-ribbon__text {
	font-size: clamp(18px, 1.6vw, 22px);
	font-weight: 700;
	color: #fff;
	margin: 0;
}

.fs-section--cta-ribbon__button {
	flex: 0 0 auto;
}

/* ---- Testimonials grid ------------------------------------------------- */

.fs-section--testimonials__intro {
	max-width: 720px;
	margin: 0 0 32px;
	text-align: left;
	color: #555;
}

.fs-testimonials-grid {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 24px;
	grid-template-columns: 1fr;
}

@media (min-width: 600px) { .fs-testimonials-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .fs-testimonials-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.fs-testimonial {
	position: relative;
	padding: 24px;
	border: 1px solid var(--fs-border);
	border-radius: 4px;
	background: #fff;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.fs-testimonial__quote {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.4;
	color: #222;
	margin: 0;
	padding: 0;
	border: 0;
}

.fs-testimonial__mark {
	color: var(--fs-red);
	font-weight: 700;
}

.fs-testimonial__name {
	color: var(--fs-red);
	font-weight: 700;
	margin: 0;
}

.fs-testimonial__photo img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 4px;
}

.fs-testimonial__star {
	display: block;
	width: 22px;
	height: 22px;
	margin-top: auto;
	background: url("assets/images/icon-star-gold.svg") center / contain no-repeat;
}

.fs-testimonial--logo {
	display: flex;
	align-items: center;
	justify-content: center;
	border-style: dashed;
	background: transparent;
}

.fs-testimonial__logo-star {
	display: block;
	width: 80%;
	aspect-ratio: 1 / 1;
	background: url("assets/images/logo-star.svg") center / contain no-repeat;
}

/* ---- Video testimonials ------------------------------------------------ */

.fs-section--video-testimonials__intro {
	margin: 0 0 32px;
	color: #555;
}

.fs-section--videos-two__intro {
	margin: 0 0 32px;
	color: #555;
}

.fs-video-testimonials {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 32px;
	grid-template-columns: 1fr;
}

@media (min-width: 700px) { .fs-video-testimonials { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.fs-section--videos-two__cta {
	margin: 24px 0 0;
	text-align: center;
}

.fs-section--videos-two__cta a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 18px;
	border: 1px solid var(--fs-red);
	border-radius: 999px;
	color: var(--fs-red);
	font-weight: 700;
	text-decoration: none;
	transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.fs-section--videos-two__cta a:hover,
.fs-section--videos-two__cta a:focus-visible {
	background: var(--fs-red);
	color: #fff;
}

.fs-video-testimonial__link {
	display: grid;
	grid-template-columns: 1fr;
	gap: 12px;
	color: inherit;
	text-decoration: none;
}

.fs-video-testimonial__media {
	position: relative;
	overflow: hidden;
	border-radius: 4px;
	aspect-ratio: 16 / 9;
}

.fs-video-testimonial__media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.fs-video-testimonial__link:hover .fs-video-testimonial__media img,
.fs-video-testimonial__link:focus-visible .fs-video-testimonial__media img {
	transform: scale(1.04);
}

.fs-video-testimonial__play {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 64px;
	color: #fff;
	text-shadow: 0 2px 8px rgba(0,0,0,0.5);
	background: rgba(0,0,0,0.15);
	transition: background 0.2s ease;
}

.fs-video-testimonial__link:hover .fs-video-testimonial__play,
.fs-video-testimonial__link:focus-visible .fs-video-testimonial__play {
	background: rgba(0,0,0,0.3);
}

.fs-video-testimonial__title {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
	color: var(--fs-red);
}

.fs-video-testimonial__text {
	font-size: 14px;
	line-height: 1.5;
	color: #555;
}

.fs-video-testimonial__text p { margin: 0; }

.fs-video-testimonial__cta {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--fs-red);
}

/* ---- Testimonial form -------------------------------------------------- */

.fs-section--testimonial-form__intro {
	max-width: 720px;
	margin: 0 auto 24px;
	color: #555;
}

.fs-section--testimonial-form__form {
	max-width: 720px;
	margin: 0 auto;
}

/* ---- Form controls (global) -------------------------------------------- */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="password"],
input[type="date"],
input[type="datetime-local"],
input[type="month"],
input[type="time"],
input[type="week"],
select,
textarea,
.gform_wrapper input:not([type="submit"]):not([type="button"]):not([type="checkbox"]):not([type="radio"]),
.gform_wrapper select,
.gform_wrapper textarea {
	border: 1px solid var(--fs-border);
	background: #fff;
	padding: 10px 14px;
	font: inherit;
	border-radius: 2px;
	box-sizing: border-box;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
	outline: 2px solid var(--fs-red);
	outline-offset: 1px;
	border-color: var(--fs-red);
}

/* ---- Hero Title (simple page title) ----------------------------------- */
.fs-section--hero-title {
	padding-top: 60px;
	padding-bottom: 20px;
}
.fs-section--hero-title__title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3rem);
	letter-spacing: 0.02em;
}

.fs-section--hero-title + .fs-section{
	padding-top: 0;
}

/* ---- Guides (accordion) ----------------------------------------------- */
.fs-guides {
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.fs-guides__item {
	border: 1px solid var(--fs-border);
	border-radius: 4px;
	background: #fff;
}
.fs-guides__summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 18px 22px;
	font-weight: 600;
	color: var(--fs-red);
	font-size: 1.15rem;
}
.fs-guides__summary::-webkit-details-marker { display: none; }
.fs-guides__title { flex: 1; }
.fs-guides__chevron {
	width: 12px;
	height: 12px;
	border-right: 2px solid var(--fs-red);
	border-bottom: 2px solid var(--fs-red);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}
.fs-guides__item[open] .fs-guides__chevron {
	transform: rotate(-135deg);
}
.fs-guides__body {
	padding: 0 22px 22px;
	color: #333;
	line-height: 1.7;
}
.fs-guides__body > *:first-child { margin-top: 0; }
.fs-guides__body img { max-width: 100%; height: auto; }

/* ---- Videos Two Columns ----------------------------------------------- */
.fs-videos-two {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 768px) {
	.fs-videos-two { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
.fs-video-two__link {
	display: block;
	text-decoration: none;
}
.fs-video-two__media {
	position: relative;
	display: block;
	aspect-ratio: 16 / 9;
	overflow: hidden;
	border-radius: 4px;
	background: #000;
}
.fs-video-two__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.3s ease;
}
.fs-video-two__link:hover .fs-video-two__media img,
.fs-video-two__link:focus-visible .fs-video-two__media img {
	transform: scale(1.04);
}
.fs-video-two__play {
	position: absolute;
	inset: 0;
	display: grid;
	place-items: center;
	color: #fff;
	font-size: 56px;
	text-shadow: 0 2px 12px rgba(0,0,0,0.6);
	pointer-events: none;
}

/* ---- Video Dialog (YouTube modal) ------------------------------------- */
.fs-video-dialog {
	width: min(960px, 92vw);
	max-width: none;
	padding: 0;
	border: 0;
	border-radius: 6px;
	background: #000;
	overflow: visible;
}
.fs-video-dialog::backdrop {
	background: rgba(0, 0, 0, 0.75);
}
.fs-video-dialog__close-form {
	margin: 0;
	position: absolute;
	top: -14px;
	right: -14px;
	z-index: 2;
}
.fs-video-dialog .fs-video-dialog__close {
	width: 36px;
	height: 36px;
	min-width: 0;
	padding: 0;
	border-radius: 50%;
	border: 0;
	background: #fff;
	color: #000;
	font-size: 24px;
	line-height: 1;
	display: grid;
	place-items: center;
	cursor: pointer;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.fs-video-dialog .fs-video-dialog__close:hover,
.fs-video-dialog .fs-video-dialog__close:focus-visible {
	background: var(--fs-red);
	color: #fff;
	outline: none;
}
.fs-video-dialog__frame {
	position: relative;
	aspect-ratio: 16 / 9;
	width: 100%;
	background: #000;
	overflow: hidden;
	border-radius: 6px;
}
.fs-video-dialog__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
	display: block;
}

/* ---- Warranty -------------------------------------------------------- */
.fs-section--warranty .fs-section__inner {
	max-width: 900px;
}
.fs-warranty {
	text-align: center;
}
.fs-warranty__divider {
	display: flex;
	align-items: center;
	gap: 24px;
	margin-bottom: 24px;
}
.fs-warranty__line {
	flex: 1;
	height: 1px;
	background: var(--fs-border);
}
.fs-warranty__logo {
	max-height: 80px;
	width: auto;
	display: block;
}
.fs-warranty__title {
	font-family: larken, serif;
	font-size: clamp(1.25rem, 2.4vw, 1.75rem);
	color: var(--fs-red);
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}
.fs-warranty__text {
	color: #333;
	line-height: 1.7;
	font-size: 1.05rem;
}
.fs-warranty__text > *:first-child { margin-top: 0; }
.fs-warranty__text > *:last-child  { margin-bottom: 0; }

/* ---- FAQs ------------------------------------------------------------- */
.fs-faq-category + .fs-faq-category {
	margin-top: 48px;
}
.fs-faq-category__title {
	margin-bottom: 24px;
}
.fs-faqs {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.fs-faqs__item {
	border: 1px solid var(--fs-border);
	border-radius: 4px;
	background: #fff;
}
.fs-faqs__summary {
	list-style: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	gap: 16px;
	padding: 16px 20px;
	font-weight: 600;
	color: var(--fs-red);
	font-size: 1.05rem;
}
.fs-faqs__summary::-webkit-details-marker { display: none; }
.fs-faqs__question { flex: 1; }
.fs-faqs__chevron {
	width: 10px;
	height: 10px;
	border-right: 2px solid var(--fs-red);
	border-bottom: 2px solid var(--fs-red);
	transform: rotate(45deg);
	transition: transform 0.2s ease;
}
.fs-faqs__item[open] .fs-faqs__chevron {
	transform: rotate(-135deg);
}
.fs-faqs__answer {
	padding: 0 20px 20px;
	color: #333;
	line-height: 1.7;
}
.fs-faqs__answer > *:first-child { margin-top: 0; }
.fs-faqs__answer img { max-width: 100%; height: auto; }

/* ===== Contact Form section ===== */
.fs-section--contact .fs-section__inner { max-width: 1200px; }
.fs-contact {
	display: grid;
	grid-template-columns: 1fr;
	gap: 32px;
	align-items: start;
}
@media (min-width: 900px) {
	.fs-contact {
		grid-template-columns: minmax(0, 1fr) 320px;
		gap: 48px;
	}
}
.fs-contact__title { margin-bottom: 16px; }
.fs-contact__intro {
	color: #333;
	line-height: 1.6;
	margin-bottom: 28px;
	max-width: 65ch;
}
.fs-contact__form .gform_wrapper { margin-top: 0; }

/* Sidebar */
.fs-contact__sidebar {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 24px;
}
.fs-contact-info {
	background: var(--fs-red);
	color: #fff;
	padding: 28px 24px;
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 22px;
}
.fs-contact-info__item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	color: #fff;
	text-decoration: none;
}
a.fs-contact-info__item:hover,
a.fs-contact-info__item:focus { color: #fff; text-decoration: none; }
a.fs-contact-info__item:hover .fs-contact-info__value { text-decoration: underline; }
.fs-contact-info__icon {
	flex: 0 0 auto;
	display: grid;
	place-items: center;
	width: 32px;
	height: 32px;
	color: #fff;
}
.fs-contact-info__icon svg { display: block; }
.fs-contact-info__body { display: flex; flex-direction: column; gap: 2px; }
.fs-contact-info__label {
	font-size: 0.85rem;
	text-transform: capitalize;
	opacity: 0.95;
}
.fs-contact-info__value {
	font-weight: 700;
	line-height: 1.35;
}
.fs-contact__logo {
	display: block;
	max-width: 220px;
	width: 100%;
	height: auto;
}

/* ===== Hero (narrow) ===== */
.fs-section--hero-narrow {
	position: relative;
	overflow: hidden;
	min-height: 350px;
	display: grid;
	place-items: center;
	color: #fff;
	margin: 0;
	padding: 0;
}
.fs-section--hero-narrow__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
}
.fs-section--hero-narrow::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.25);
	z-index: 1;
}
.fs-section--hero-narrow__inner {
	position: relative;
	z-index: 2;
	display: grid;
	place-items: center;
	width: 100%;
	padding: 60px 20px;
}
.fs-section--hero-narrow__star {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: min(720px, 95%);
	height: auto;
	opacity: 0.85;
	pointer-events: none;
}
.fs-section--hero-narrow__text {
	position: relative;
	max-width: 640px;
	text-align: center;
}
.fs-section--hero-narrow__title {
	margin: 0 0 12px;
	font-size: clamp(2rem, 5vw, 3.5rem);
	color: #fff;
	font-weight: 700;
	line-height: 1.1;
}
.fs-section--hero-narrow__body { color: #fff; line-height: 1.55; }
.fs-section--hero-narrow__body p { margin: 0; }
.fs-section--hero-narrow__body p + p { margin-top: 8px; }

/* ===== Coupons + Gift Card ===== */
.fs-section--coupons .fs-section__inner { max-width: 1200px; }
.fs-coupons {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
}
@media (min-width: 600px) {
	.fs-coupons { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
	.fs-coupons { grid-template-columns: repeat(3, 1fr); }
}
.fs-coupon-card {
	background: var(--fs-red);
	color: #fff;
	padding: 28px 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 10px;
}
.fs-coupon-card__amount {
	margin: 0;
	color: #fff;
	font-size: clamp(1.6rem, 3vw, 2rem);
	line-height: 1.1;
	font-weight: 700;
}
.fs-coupon-card__desc { line-height: 1.45; }
.fs-coupon-card__desc > *:first-child { margin-top: 0; }
.fs-coupon-card__desc > *:last-child  { margin-bottom: 0; }
.fs-coupon-card__code {
	margin: 6px 0 0;
	font-weight: 600;
}
.fs-coupon-card__code span { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; }
.fs-coupon-card__date {
	margin: 0;
	font-size: 0.9rem;
	opacity: 0.95;
}
.fs-coupon-card__logo {
	margin-top: auto;
	max-width: 80px;
	height: auto;
}

.fs-gift-card {
	background: #fff;
	border: 1px solid var(--fs-border);
	padding: 24px;
	text-align: center;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
}
.fs-gift-card__link { display: block; }
.fs-gift-card__image { max-width: 100%; height: auto; }
.fs-gift-card__text { line-height: 1.5; }
.fs-gift-card__text > *:first-child { margin-top: 0; }
.fs-gift-card__text > *:last-child  { margin-bottom: 0; }

/* ===== Award Pad Program ===== */
.fs-section--award-pad .fs-section__inner { max-width: 1100px; }
.fs-award-pad__intro {
	color: #333;
	line-height: 1.6;
	margin-bottom: 24px;
	max-width: 70ch;
}
.fs-award-pad__form { margin-top: 8px; }

/* ===== Shop By (two large image cards) ===== */
.fs-section--shop-by { padding: 0; }
.fs-section--shop-by.fs-section--no-pad-top    { padding-top: 0; }
.fs-section--shop-by.fs-section--no-pad-bottom { padding-bottom: 0; }
.fs-shop-by {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0;
	width: 100%;
}
@media (min-width: 768px) {
	.fs-shop-by { grid-template-columns: 1fr 1fr; }
}
.fs-shop-card {
	position: relative;
	overflow: hidden;
	min-height: 70vh;
	color: #fff;
	isolation: isolate;
}
.fs-shop-card__bg {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	transition: transform 0.6s ease;
}
.fs-shop-card__overlay {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 60%;
	background: linear-gradient(0deg, var(--fs-red) 0%, rgba(255, 255, 255, 0) 100%);
	z-index: 1;
	pointer-events: none;
}
.fs-shop-card__body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 2;
	padding: 28px 32px;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.fs-shop-card--right .fs-shop-card__body { text-align: right; align-items: flex-end; }
.fs-shop-card__title {
	margin: 0;
	color: #fff;
	font-size: clamp(2rem, 4vw, 3.25rem);
	line-height: 1.05;
	font-weight: 700;
	font-family: "larken", Georgia, serif;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35em;
	align-items: baseline;
}
.fs-shop-card--right .fs-shop-card__title { justify-content: flex-end; }
.fs-shop-card__title-2 { font-style: italic; font-weight: 400; }
.fs-shop-card__text {
	margin: 0;
	color: #fff;
	max-width: 50ch;
	line-height: 1.5;
}
.fs-shop-card__chevron {
	display: inline-block;
	color: #fff;
	margin-top: 6px;
	transition: transform 0.25s ease;
}
.fs-shop-card__chevron svg { display: block; }
.fs-shop-card__link {
	position: absolute;
	inset: 0;
	z-index: 3;
	text-indent: -9999em;
	overflow: hidden;
	white-space: nowrap;
}
.fs-shop-card__link:focus-visible {
	outline: 3px solid #fff;
	outline-offset: -6px;
}
.fs-shop-card:hover .fs-shop-card__bg { transform: scale(1.04); }
.fs-shop-card:hover .fs-shop-card__chevron { transform: translateY(-3px); }

/* ===== Shop Categories ===== */
.fs-section--shop-cats .fs-section__inner { max-width: 1320px; }
.fs-shop-cats__intro {
	color: #333;
	line-height: 1.6;
	max-width: 80ch;
	margin-bottom: 24px;
}
.fs-shop-cats__intro > *:first-child { margin-top: 0; }
.fs-shop-cats__intro > *:last-child  { margin-bottom: 0; }

.fs-shop-cats__divider {
	display: flex;
	align-items: center;
	gap: 18px;
	margin: 12px 0 32px;
}
.fs-shop-cats__rule {
	flex: 1;
	height: 2px;
	background: var(--fs-red);
	display: block;
}
.fs-shop-cats__cta {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--fs-gold);
	text-transform: uppercase;
	letter-spacing: 0.05em;
	font-weight: 700;
	text-decoration: none;
	white-space: nowrap;
}
.fs-shop-cats__cta:hover { color: var(--fs-red); }
.fs-shop-cats__cta svg  { display: block; }

.fs-shop-cats__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
}
@media (min-width: 600px) { .fs-shop-cats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .fs-shop-cats__grid { grid-template-columns: repeat(3, 1fr); } }

.fs-shop-cat {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 3;
	color: #fff;
	isolation: isolate;
}
.fs-shop-cat__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 0;
	transition: transform 0.5s ease;
}
.fs-shop-cat__overlay {
	position: absolute;
	inset: 0;
	background: rgba(162, 30, 33, 0.55);
	z-index: 1;
	transition: background 0.25s ease;
}
.fs-shop-cat__body {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 6px;
	width: 100%;
	height: 100%;
	padding: 16px;
	text-align: center;
}
.fs-shop-cat__title {
	margin: 0;
	color: #fff;
	font-size: clamp(1.25rem, 2vw, 1.6rem);
	font-weight: 700;
	line-height: 1.2;
}
.fs-shop-cat__cta {
	margin: 0;
	color: #fff;
	font-size: 0.9rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	opacity: 0;
	transform: translateY(4px);
	transition: opacity 0.25s ease, transform 0.25s ease;
}
.fs-shop-cat:hover .fs-shop-cat__cta,
.fs-shop-cat:focus-within .fs-shop-cat__cta {
	opacity: 1;
	transform: translateY(0);
}
.fs-shop-cat__link {
	position: absolute;
	inset: 0;
	z-index: 3;
	text-indent: -9999em;
	overflow: hidden;
	white-space: nowrap;
}
.fs-shop-cat__link:focus-visible { outline: 3px solid #fff; outline-offset: -6px; }
.fs-shop-cat:hover .fs-shop-cat__image  { transform: scale(1.05); }
.fs-shop-cat:hover .fs-shop-cat__overlay { background: rgba(162, 30, 33, 0.4); }

/* ===== Product Reviews (Yotpo wrapper) ===== */
.fs-product-reviews {
	margin: 48px 0;
	padding: 32px 24px;
	background: #f7f5f2;
	border-top: 3px solid var(--fs-red);
}
.fs-product-reviews__title {
	margin: 0 0 24px;
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	color: #222;
}
.fs-product-reviews .yotpo {
	background: transparent;
}

/* ===== Single Product: review bottomline (Yotpo summary stars) ===== */
.woocommerce div.product .summary.entry-summary > .yotpo.bottomLine {
	display: block;
	margin: 16px 0 24px;
	padding: 12px 16px;
	background: #f7f5f2;
	border-left: 3px solid var(--fs-red);
	border-radius: 2px;
}
.woocommerce div.product .summary.entry-summary > .yotpo.bottomLine .standalone-bottomline {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	width: 100%;
}
.woocommerce div.product .summary.entry-summary > .yotpo.bottomLine .yotpo-bottomline {
	float: none !important;
	display: flex;
	align-items: center;
	gap: 12px;
	flex: 1;
}
.woocommerce div.product .summary.entry-summary > .yotpo.bottomLine a.write-review-btn-hidden {
	margin-left: auto;
}

/* ===== Product loop tile (approx. legacy site styling) ===== */
.woocommerce ul.products li.product {
	padding: 0 7px;
	text-align: left;
	margin-bottom: 24px;
}
.woocommerce ul.products li.product .wc-product-image,
.woocommerce ul.products li.product .pord-image-wrap {
	border: 1px solid var(--fs-border, #dedede);
	background: #fff;
	padding: 12px;
	margin-bottom: 16px;
	display: block;
}
.woocommerce ul.products li.product .wc-product-image img,
.woocommerce ul.products li.product .pord-image-wrap img,
.woocommerce ul.products li.product img.attachment-woocommerce_thumbnail {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}
.woocommerce ul.products li.product h2.woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-LoopProduct-link h2.woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	font-family: 'Barlow', sans-serif;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	color: #000;
	text-align: left;
	margin: 0 0 4px;
	padding: 0;
}
.woocommerce ul.products li.product .price {
	display: block;
	color: #000;
	font-size: 13px;
	font-weight: 400;
	text-align: left;
	margin: 0 0 8px;
}
.woocommerce ul.products li.product .price .woocommerce-Price-amount {
	font-size: inherit;
}
.woocommerce ul.products li.product .price ins,
.woocommerce ul.products li.product .price del {
	background: transparent;
}
/* Hide the standard add-to-cart button on the loop; use the inline red
   "Customize" text below it for our tile (matches the legacy site). */
.woocommerce ul.products li.product .button.add_to_cart_button,
.woocommerce ul.products li.product .button.product_type_simple,
.woocommerce ul.products li.product .button.product_type_variable {
	display: none;
}
.woocommerce ul.products li.product .customize_product_text {
	display: block;
	text-align: left;
	background: transparent;
	color: var(--fs-red);
	font-weight: 600;
	font-size: 14px;
	letter-spacing: 0;
	text-transform: none;
	text-decoration: none;
	padding: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
}
.woocommerce ul.products li.product a:hover .customize_product_text {
	text-decoration: underline;
}
