/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */

.announcement-bar {
	background-color: #000000;
	color: #ffffff;
}

.announcement-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-sm);
	min-height: 40px;
}

.announcement-bar__prev,
.announcement-bar__next {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--spacing-xs);
	background: none;
	border: none;
	cursor: pointer;
	color: #ffffff;
	flex-shrink: 0;
}

.announcement-bar__prev img,
.announcement-bar__next img {
	filter: brightness(0) invert(1);
}

.announcement-bar__track {
	flex: 1;
	text-align: center;
	overflow: hidden;
}

.announcement-bar__message {
	margin: 0;
	font-size: var(--font-size-sm);
	font-weight: 500;
	color: #ffffff;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
	position: sticky;
	top: 0;
	z-index: 100;
	background-color: var(--color-background);
}

.header__main {
	position: relative;
	background-color: #ffffff;
	border-bottom: 1px solid var(--color-border);
}

.header__inner {
	display: flex;
	align-items: center;
	gap: var(--spacing-md);
	min-height: var(--header-height);
}

.header__toolbar {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
	flex-shrink: 0;
	margin-left: auto;
}

.header__brand {
	display: flex;
	align-items: center;
	flex-shrink: 0;
}

.header__logo {
	display: block;
	max-height: 56px;
	width: auto;
}

.header__menu-toggle {
	display: none;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	padding: var(--spacing-xs);
	background: none;
	border: none;
	cursor: pointer;
	margin-left: auto;
	z-index: 20;
}

.header__menu-toggle-bar {
	display: block;
	width: 22px;
	height: 2px;
	background-color: var(--color-text);
	transition: transform 0.28s ease, opacity 0.28s ease;
}

.header__menu-toggle--active .header__menu-toggle-bar:nth-child(1) {
	transform: translateY(7px) rotate(45deg);
}

.header__menu-toggle--active .header__menu-toggle-bar:nth-child(2) {
	opacity: 0;
}

.header__menu-toggle--active .header__menu-toggle-bar:nth-child(3) {
	transform: translateY(-7px) rotate(-45deg);
}

.header__nav {
	flex: 1;
	display: flex;
	align-items: center;
	min-width: 0;
}

.header__menu {
	display: flex;
	align-items: center;
	gap: 1.75rem;
}

.header__menu > li {
	position: relative;
}

.header__menu > li > a {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	font-size: var(--font-size-base);
	font-weight: 600;
	color: var(--color-text);
	padding: var(--spacing-xs) 0;
	white-space: nowrap;
}

.header__menu > li > a:hover,
.header__menu > .current-menu-item > a,
.header__menu > .current-menu-ancestor > a {
	color: var(--color-text);
	opacity: 0.7;
}

.header__menu > .menu-item-has-children > a::after {
	content: "";
	display: inline-block;
	width: 0;
	height: 0;
	margin-top: 2px;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 5px solid currentColor;
}

.header__menu .sub-menu {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 180px;
	padding: var(--spacing-xs) 0;
	background-color: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
	z-index: 10;
}

.header__menu > li:hover > .sub-menu,
.header__menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.header__menu .sub-menu a {
	display: block;
	padding: 0.5rem 1rem;
	font-size: var(--font-size-sm);
	font-weight: 500;
	color: var(--color-text);
}

.header__menu .sub-menu a:hover {
	background-color: var(--color-surface);
}

.header__vehicle-btn {
	display: inline-flex;
	align-items: center;
	gap: var(--spacing-sm);
	padding: 0.65rem 1.25rem;
	background-color: #000000;
	color: #ffffff;
	border-radius: 999px;
	font-size: var(--font-size-sm);
	font-weight: 700;
	white-space: nowrap;
	flex-shrink: 0;
	transition: opacity var(--transition);
}

.header__vehicle-btn:hover {
	color: #ffffff;
	opacity: 0.85;
}

.header__vehicle-btn.header__vehicle-btn--mobile {
	display: none;
}

.header__vehicle-btn-icon {
	filter: brightness(0) invert(1);
	flex-shrink: 0;
}

.header__actions {
	display: flex;
	align-items: center;
	gap: 1.25rem;
	flex-shrink: 0;
}

.header__icon {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--spacing-xs);
	background: none;
	border: none;
	cursor: pointer;
	color: var(--color-text);
}

.header__icon img {
	display: block;
}

.header__icon:hover {
	opacity: 0.7;
}

.header__cart-count {
	position: absolute;
	top: 0;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 1rem;
	height: 1rem;
	padding: 0 0.2rem;
	font-size: 0.625rem;
	font-weight: 700;
	line-height: 1;
	background-color: #000000;
	color: #ffffff;
	border-radius: 50%;
	transform: translate(25%, -25%);
}

.header__search {
	display: none;
	padding: var(--spacing-sm) 0;
	background-color: var(--color-surface);
	border-bottom: 1px solid var(--color-border);
}

.header__search--open {
	display: block;
}

.header__search-form {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
}

.header__search-input {
	flex: 1;
	padding: 0.75rem 1rem;
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	background-color: #ffffff;
}

.header__search-input:focus {
	outline: none;
	border-color: #000000;
}

.header__search-submit {
	flex-shrink: 0;
}

@media (max-width: 1100px) {
	.header__vehicle-btn--desktop .header__vehicle-btn-text {
		display: none;
	}

	.header__vehicle-btn--desktop {
		padding: 0.65rem;
		border-radius: 50%;
	}

	.header__menu {
		gap: 1rem;
	}
}

@media (max-width: 900px) {
	body.menu-open {
		overflow: hidden;
	}

	.announcement-bar__inner {
		min-height: 32px;
		gap: 0.25rem;
	}

	.announcement-bar__prev,
	.announcement-bar__next {
		display: none;
	}

	.announcement-bar__message {
		font-size: 0.6875rem;
		white-space: normal;
		line-height: 1.3;
		padding: 0.25rem 0;
	}

	.header__inner {
		display: grid;
		grid-template-columns: minmax(0, 1fr) auto;
		align-items: center;
		gap: 0.5rem;
		min-height: 52px;
		padding-block: 0.35rem;
	}

	.header__logo {
		max-height: 36px;
	}

	.header__brand {
		min-width: 0;
	}

	.header__toolbar {
		display: flex;
		align-items: center;
		gap: 0;
		margin-left: 0;
	}

	.header__vehicle-btn.header__vehicle-btn--desktop {
		display: none;
	}

	.header__vehicle-btn.header__vehicle-btn--mobile {
		display: inline-flex;
		margin: var(--spacing-sm) var(--container-padding) var(--spacing-md);
		width: calc(100% - (var(--container-padding) * 2));
		justify-content: center;
	}

	.header__menu-toggle {
		display: flex;
		margin-left: 0.15rem;
		padding: 0.4rem;
	}

	.header__actions {
		display: flex;
		align-items: center;
		gap: 0;
	}

	.header__icon {
		padding: 0.4rem;
	}

	.header__icon img {
		width: 18px;
		height: 18px;
	}

	.header__nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		z-index: 120;
		flex: none;
		width: 100%;
		max-height: 0;
		overflow: hidden;
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
		background-color: #ffffff;
		border-bottom: 1px solid var(--color-border);
		box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
		transition: max-height 0.35s ease, opacity 0.28s ease, visibility 0.28s ease;
	}

	.header__nav--open {
		max-height: 80vh;
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		overflow-y: auto;
	}

	.header__menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: var(--spacing-sm) var(--container-padding) 0;
	}

	.header__menu > li {
		width: 100%;
		border-bottom: 1px solid var(--color-border);
	}

	.header__menu > li:last-child {
		border-bottom: none;
	}

	.header__menu > li > a {
		display: flex;
		width: 100%;
		padding: 0.85rem 0;
	}

	.header__menu .sub-menu {
		position: static;
		opacity: 1;
		visibility: visible;
		transform: none;
		box-shadow: none;
		border: none;
		padding: 0 0 var(--spacing-xs) var(--spacing-sm);
	}
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
	margin-top: auto;
	color: #111827;
}

.footer__main {
	padding: clamp(2.5rem, 5vw, 4rem) 0;
	background-color: #f3f4f6;
}

.footer__main .container {
	padding-top: 0;
	padding-bottom: 0;
}

.footer__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
}

@media (min-width: 640px) {
	.footer__grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (min-width: 1024px) {
	.footer__grid {
		grid-template-columns: minmax(240px, 1.35fr) repeat(4, minmax(0, 1fr));
		gap: 1.5rem;
	}
}

.footer__newsletter {
	padding-right: 0;
	border-right: none;
}

@media (min-width: 1024px) {
	.footer__newsletter {
		padding-right: 1.5rem;
		border-right: 1px solid #e5e7eb;
	}
}

@media (min-width: 640px) and (max-width: 1023px) {
	.footer__newsletter {
		grid-column: 1 / -1;
	}
}

.footer__logo-link {
	display: inline-flex;
	margin-bottom: 1.25rem;
}

.footer__logo {
	display: block;
	max-height: 48px;
	width: auto;
}

.footer__newsletter-title,
.footer__heading {
	margin: 0 0 0.75rem;
	font-family: var(--font-family-heading);
	font-size: 1.125rem;
	font-weight: 600;
	color: #111827;
}

.footer__heading {
	margin-bottom: 1rem;
	font-size: 1rem;
}

.footer__newsletter-text {
	margin: 0 0 1.25rem;
	max-width: 22rem;
	font-family: var(--font-family-base);
	font-size: 0.875rem;
	line-height: 1.7;
	color: #6b7280;
}

.footer__newsletter-form {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	max-width: 22rem;
	margin-bottom: 1.25rem;
	border-bottom: 1px solid #d1d5db;
}

.footer__newsletter-input {
	flex: 1;
	width: 100%;
	padding: 0.75rem 0;
	font-family: var(--font-family-base);
	font-size: 0.875rem;
	color: #111827;
	background: transparent;
	border: none;
}

.footer__newsletter-input::placeholder {
	color: #9ca3af;
}

.footer__newsletter-input:focus {
	outline: none;
}

.footer__newsletter-submit {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	padding: 0;
	font-size: 1.125rem;
	color: #111827;
	background: transparent;
	border: none;
	cursor: pointer;
}

.footer__social {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__social-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.25rem;
	height: 2.25rem;
	font-size: 0.6875rem;
	font-weight: 700;
	color: #111827;
	text-decoration: none;
	background-color: #ffffff;
	border-radius: 50%;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	transition: background-color 0.2s ease, color 0.2s ease;
}

.footer__social-link:hover {
	color: #ffffff;
	background-color: #111827;
}

.footer__menu {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__menu a {
	font-family: var(--font-family-base);
	font-size: 0.875rem;
	color: #4b5563;
	text-decoration: none;
	transition: color 0.2s ease;
}

.footer__menu a:hover {
	color: #d71920;
}

.footer__contact-list {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer__contact-item {
	display: flex;
	align-items: flex-start;
	gap: 0.65rem;
	font-family: var(--font-family-base);
	font-size: 0.875rem;
	line-height: 1.55;
	color: #4b5563;
}

.footer__contact-item a {
	color: inherit;
	text-decoration: none;
}

.footer__contact-item a:hover {
	color: #d71920;
}

.footer__contact-icon {
	flex-shrink: 0;
	width: 1rem;
	height: 1rem;
	margin-top: 0.15rem;
	background-color: #111827;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

.footer__contact-icon--location {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2C8.13 2 5 5.13 5 9c0 5.25 7 13 7 13s7-7.75 7-13c0-3.87-3.13-7-7-7zm0 9.5A2.5 2.5 0 1 1 12 6a2.5 2.5 0 0 1 0 5.5z'/%3E%3C/svg%3E");
}

.footer__contact-icon--phone {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M6.6 10.8c1.5 2.8 3.9 5.1 6.8 6.8l2.3-2.3c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M6.6 10.8c1.5 2.8 3.9 5.1 6.8 6.8l2.3-2.3c.3-.3.7-.4 1-.2 1.1.4 2.3.6 3.5.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.2.2 2.4.6 3.5.1.3 0 .7-.2 1L6.6 10.8z'/%3E%3C/svg%3E");
}

.footer__contact-icon--email {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M20 4H4c-1.1 0-2 .9-2 2v12c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4-8 5L4 8V6l8 5 8-5v2z'/%3E%3C/svg%3E");
}

.footer__contact-icon--hours {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 11H8v-2h4V6h2v7z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20zm1 11H8v-2h4V6h2v7z'/%3E%3C/svg%3E");
}

.footer__bottom {
	position: relative;
	padding: 1rem 0 1.35rem;
	background-color: #111827;
	color: #ffffff;
}

.footer__bottom .container {
	position: relative;
}

.footer__bottom-inner {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1rem;
	text-align: center;
}

@media (min-width: 768px) {
	.footer__bottom-inner {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
		padding-right: 4rem;
		text-align: left;
	}
}

.footer__copyright {
	margin: 0;
	font-family: var(--font-family-base);
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.72);
}

.footer__payment-note {
	margin: 0;
	font-family: var(--font-family-base);
	font-size: 0.8125rem;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.88);
}

.footer__top {
	position: absolute;
	top: -1.25rem;
	right: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	padding: 0;
	font-size: 1.125rem;
	color: #111827;
	background-color: #f5c518;
	border: none;
	border-radius: 50%;
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
	cursor: pointer;
	transition: transform 0.2s ease;
}

.footer__top:hover {
	transform: translateY(-2px);
}

@media (min-width: 768px) {
	.footer__top {
		right: 0;
	}
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero__frame {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	min-height: 480px;
	display: flex;
	align-items: center;
}

.hero__media {
	position: absolute;
	inset: 0;
	z-index: 0;
}

.hero__video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		90deg,
		rgba(0, 0, 0, 0.75) 0%,
		rgba(0, 0, 0, 0.55) 45%,
		rgba(0, 0, 0, 0.25) 100%
	);
	z-index: 1;
}

.hero__content {
	position: relative;
	z-index: 2;
	max-width: 640px;
	padding: 3.5rem 3rem;
	color: #ffffff;
}

.hero__eyebrow {
	margin: 0 0 var(--spacing-md);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.85);
}

.hero__title {
	margin: 0 0 var(--spacing-md);
	font-size: clamp(1.75rem, 3vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	color: #ffffff;
}

.hero__title .text-highlight {
	display: block;
	margin-top: 0.25rem;
	color: var(--color-accent);
}

.hero__text {
	margin: 0 0 var(--spacing-lg);
	font-size: var(--font-size-base);
	line-height: 1.7;
	color: rgba(255, 255, 255, 0.88);
}

.hero__actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: var(--spacing-md);
}

.hero__actions .btn--accent {
	background-color: var(--color-accent);
	color: #ffffff;
}

.hero__actions .btn--accent:hover {
	background-color: #111111;
	color: #ffffff;
}

.hero__trust {
	display: flex;
	align-items: center;
	gap: var(--spacing-sm);
}

.hero__avatars {
	display: flex;
	align-items: center;
}

.hero__avatar {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	border: 2px solid rgba(0, 0, 0, 0.3);
	margin-left: -10px;
	object-fit: cover;
}

.hero__avatar:first-child {
	margin-left: 0;
}

.hero__trust-text {
	font-size: var(--font-size-sm);
	font-weight: 500;
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
	.hero__frame {
		min-height: 420px;
	}

	.hero__content {
		padding: 2.5rem 1.5rem;
		max-width: 100%;
	}

	.hero__overlay {
		background: linear-gradient(
			180deg,
			rgba(0, 0, 0, 0.35) 0%,
			rgba(0, 0, 0, 0.7) 55%,
			rgba(0, 0, 0, 0.85) 100%
		);
	}

	.hero__actions {
		flex-direction: column;
		align-items: flex-start;
	}

	.hero__trust-text {
		white-space: normal;
	}
}

/* ==========================================================================
   PAGE CONTENT
   ========================================================================== */

.page-content {
	padding-top: var(--spacing-lg);
	padding-bottom: var(--spacing-lg);
}

.page-content__title {
	font-size: var(--font-size-2xl);
	margin-bottom: var(--spacing-md);
}

.page-content__body {
	color: var(--color-text);
}

.page-content__body h2,
.page-content__body h3 {
	margin-top: var(--spacing-md);
}

.page-content__body ul,
.page-content__body ol {
	margin-bottom: var(--spacing-sm);
	padding-left: var(--spacing-md);
	list-style: disc;
}

.page-content__body ol {
	list-style: decimal;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--spacing-xs);
	padding: 0.75rem 1.5rem;
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	font-weight: 600;
	line-height: 1;
	border: 2px solid transparent;
	border-radius: var(--border-radius);
	cursor: pointer;
	transition: background-color var(--transition), color var(--transition), border-color var(--transition);
	text-decoration: none;
}

.btn--primary {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.btn--primary:hover {
	background-color: var(--color-accent);
	color: var(--color-white);
}

.btn--secondary {
	background-color: transparent;
	color: var(--color-primary);
	border-color: var(--color-primary);
}

.btn--secondary:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
}

.btn--accent {
	background-color: var(--color-accent);
	color: #ffffff;
}

.btn--accent:hover {
	background-color: #111111;
	color: #ffffff;
}

.btn--pill {
	background-color: #111111;
	color: #ffffff;
	border-radius: 999px;
	padding: 0.85rem 1.75rem;
	font-weight: 700;
}

.btn--pill:hover {
	background-color: var(--color-accent);
	color: #ffffff;
}

.btn--light {
	background-color: #ffffff;
	color: #111111;
}

.btn--light:hover {
	background-color: var(--color-accent);
	color: #ffffff;
}

/* ==========================================================================
   SECTION HEAD (shared)
   ========================================================================== */

.section-head {
	max-width: 42rem;
}

.section-head--center {
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}

.section-head__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.section-head__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 3vw, 2.25rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--color-text);
}

.section-head__text {
	margin: 0;
	font-size: var(--font-size-lg);
	line-height: 1.7;
	color: var(--color-text-muted);
}

/* ==========================================================================
   FORMS
   ========================================================================== */

.form__group {
	margin-bottom: var(--spacing-md);
}

.form__label {
	display: block;
	font-size: var(--font-size-sm);
	font-weight: 600;
	margin-bottom: var(--spacing-xs);
	color: var(--color-text);
}

.form__input,
.form__textarea,
.form__select {
	display: block;
	width: 100%;
	padding: 0.75rem 1rem;
	font-family: var(--font-family-base);
	font-size: var(--font-size-base);
	color: var(--color-text);
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: var(--border-radius);
	transition: border-color var(--transition);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
	outline: none;
	border-color: var(--color-accent);
}

.form__textarea {
	min-height: 150px;
	resize: vertical;
}

/* ==========================================================================
   FEATURE GRID
   ========================================================================== */

.feature-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-md);
}

@media (min-width: 768px) {
	.feature-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.feature-grid__item {
	padding: var(--spacing-md);
	background-color: var(--color-surface);
	border-radius: var(--border-radius);
}

.feature-grid__title {
	font-size: var(--font-size-lg);
	margin-bottom: var(--spacing-xs);
}

.feature-grid__text {
	font-size: var(--font-size-sm);
	color: var(--color-text-muted);
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-bar {
	overflow: hidden;
	background-color: #000000;
	color: #ffffff;
}

.trust-bar__track {
	display: flex;
	align-items: center;
	gap: 3rem;
	width: max-content;
	padding: 0.75rem 0;
	animation: trust-bar-scroll 28s linear infinite;
}

.trust-bar__item {
	position: relative;
	flex-shrink: 0;
	padding-left: 1.5rem;
	font-size: 0.8125rem;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
}

.trust-bar__item::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background-color: var(--color-accent);
	transform: translateY(-50%);
}

@keyframes trust-bar-scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(-50%);
	}
}

/* ==========================================================================
   PRODUCT SLIDER (home)
   ========================================================================== */

.product-slider-section__header {
	margin-bottom: var(--spacing-lg);
}

.product-slider-section__title {
	margin: 0;
	font-size: var(--font-size-2xl);
	font-weight: 700;
	color: var(--color-text);
}

.product-slider-section__subtitle {
	margin: 0.5rem 0 0;
	max-width: 36rem;
	font-size: var(--font-size-lg);
	line-height: 1.6;
	color: var(--color-text-muted);
}

.product-slider-section__footer {
	display: flex;
	justify-content: center;
	margin-top: var(--spacing-lg);
}

.product-slider {
	position: relative;
}

.product-slider__viewport {
	overflow: hidden;
}

.product-slider__track.product-grid--slider {
	display: flex;
	flex-wrap: nowrap;
	grid-template-columns: none;
	gap: 1.25rem;
	margin: 0;
	padding: 0.25rem 0;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	scroll-behavior: smooth;
	scrollbar-width: none;
	-ms-overflow-style: none;
}

.product-slider__track.product-grid--slider::-webkit-scrollbar {
	display: none;
}

.product-slider__track.product-grid--slider > li.product-card,
.product-slider__track.product-grid--slider > li.product {
	flex: 0 0 calc(100% - 2rem);
	scroll-snap-align: start;
}

@media (min-width: 640px) {
	.product-slider__track.product-grid--slider > li.product-card,
	.product-slider__track.product-grid--slider > li.product {
		flex: 0 0 calc(50% - 0.625rem);
	}
}

@media (min-width: 900px) {
	.product-slider__track.product-grid--slider > li.product-card,
	.product-slider__track.product-grid--slider > li.product {
		flex: 0 0 calc(25% - 0.9375rem);
	}
}

.product-slider__nav {
	position: absolute;
	top: 38%;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1.125rem;
	color: var(--color-text);
	background-color: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
	cursor: pointer;
	transition: background-color var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
}

.product-slider__nav:hover:not(:disabled) {
	color: #ffffff;
	background-color: #111111;
	border-color: #111111;
}

.product-slider__nav:disabled {
	opacity: 0.35;
	cursor: default;
}

.product-slider__nav--prev {
	left: 0.25rem;
}

.product-slider__nav--next {
	right: 0.25rem;
}

@media (max-width: 767px) {
	.product-slider__nav {
		display: none;
	}
}

/* ==========================================================================
   PRODUCT GRID & CARDS (home, shop, related, cross-sells)
   ========================================================================== */

.product-grid,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-md);
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 640px) {
	.product-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (min-width: 900px) {
	.product-grid,
	.woocommerce ul.products {
		grid-template-columns: repeat(4, 1fr);
		gap: 1.5rem;
	}
}

.product-grid > li.product-card,
.woocommerce ul.products > li.product {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 0;
	overflow: hidden;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 20px;
	transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
	list-style: none;
}

.product-grid > li.product-card:hover,
.woocommerce ul.products > li.product:hover {
	transform: translateY(-3px);
	border-color: rgba(0, 0, 0, 0.12);
	box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.product-card__media {
	position: relative;
	display: block;
	margin: 0;
	aspect-ratio: 1 / 1;
	background-color: #f4f4f4;
}

.product-card__badges {
	position: absolute;
	top: 0.75rem;
	left: 0.75rem;
	z-index: 2;
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.product-card__badge {
	display: inline-flex;
	padding: 0.25rem 0.6rem;
	font-size: 0.6875rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-text);
	background-color: #ffffff;
	border-radius: 999px;
}

.product-card__sale {
	position: absolute;
	top: 0.75rem;
	right: 0.75rem;
	z-index: 2;
	padding: 0.25rem 0.6rem;
	font-size: 0.6875rem;
	font-weight: 700;
	color: #ffffff;
	background-color: var(--color-accent);
	border-radius: 999px;
}

.product-card__image-link {
	display: block;
	width: 100%;
	height: 100%;
}

.product-card__image {
	display: block;
	width: 100%;
	height: 100%;
	max-height: none;
	object-fit: contain;
}

.product-card__body {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.5rem;
	margin-top: auto;
	padding: 1rem 1.25rem 1.25rem;
}

.product-card__title {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 700;
	line-height: 1.35;
}

.product-card__title a {
	color: var(--color-text);
}

.product-card__title a:hover {
	color: var(--color-accent);
}

.product-card__rating {
	display: flex;
	gap: 0.1rem;
}

.product-card__star {
	position: relative;
	display: inline-block;
	width: 0.9rem;
	height: 0.9rem;
	font-size: 0;
}

.product-card__star::before {
	content: "\2605";
	font-size: 0.85rem;
	color: #d8d8d8;
}

.product-card__star--full::before {
	color: #f4b400;
}

.product-card__star--half::before {
	color: #d8d8d8;
}

.product-card__star--half::after {
	content: "\2605";
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	overflow: hidden;
	font-size: 0.85rem;
	color: #f4b400;
}

.product-card__price,
.product-card__price .price {
	margin: 0;
	font-size: 0.9375rem;
	font-weight: 600;
	color: var(--color-accent);
}

.product-card__price del {
	color: var(--color-text-muted);
	font-weight: 400;
}

.product-card__price ins {
	text-decoration: none;
	color: var(--color-accent);
	font-weight: 600;
}

.product-card__cta {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100%;
	min-height: 2.75rem;
	margin-top: 0.35rem;
	padding: 0.5rem 0.5rem 0.5rem 1rem;
	background-color: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	text-decoration: none;
	box-sizing: border-box;
	transition: border-color var(--transition), background-color var(--transition);
}

.product-card__cta:hover {
	border-color: #000000;
	background-color: #000000;
}

.product-card__cta:hover .product-card__cta-text {
	color: #ffffff;
}

.product-card__cta-text {
	flex: 1;
	min-width: 0;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.3;
	color: var(--color-text);
}

.product-card__cta-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	margin: 0;
	padding: 0;
	line-height: 0;
	background-color: var(--color-accent);
	border-radius: 50%;
}

.product-card__cta-icon img {
	display: block;
	width: 12px;
	height: 12px;
	margin: 0;
	padding: 0;
	float: none;
	filter: brightness(0) invert(1);
}

/* ==========================================================================
   VEHICLE GRID
   ========================================================================== */

.vehicle-grid__title {
	margin: 0 0 0.5rem;
	font-size: var(--font-size-2xl);
	font-weight: 700;
	color: var(--color-text);
}

.vehicle-grid__text {
	margin: 0;
	max-width: 36rem;
	color: var(--color-text-muted);
}

.vehicle-grid__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-md);
}

@media (min-width: 768px) {
	.vehicle-grid__list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.vehicle-card {
	position: relative;
	display: block;
	min-height: 280px;
	border-radius: 28px;
	overflow: hidden;
	text-decoration: none;
}

.vehicle-card__image {
	width: 100%;
	height: 100%;
	min-height: 280px;
	object-fit: cover;
	transition: transform 0.45s ease;
}

.vehicle-card__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.72) 100%);
}

.vehicle-card__name {
	position: absolute;
	left: 1.5rem;
	bottom: 1.5rem;
	font-size: 1.5rem;
	font-weight: 700;
	color: #ffffff;
}

.vehicle-card:hover .vehicle-card__image {
	transform: scale(1.05);
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */

.reviews__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.reviews__title {
	margin: 0;
	font-size: var(--font-size-2xl);
	font-weight: 700;
	color: var(--color-text);
}

.reviews__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-md);
}

@media (min-width: 900px) {
	.reviews__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.reviews--spotlight {
	background-color: var(--color-surface);
}

.reviews--ugc {
	background-color: var(--color-surface);
}

.reviews__grid--ugc {
	display: grid;
	grid-template-columns: 1fr;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.reviews__grid--ugc {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

.ugc-review {
	display: flex;
	flex-direction: column;
	gap: 0.85rem;
	height: 100%;
	padding: 1.5rem;
	background-color: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: 8px;
}

.ugc-review__header {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 0.75rem;
}

.ugc-review__author {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	min-width: 0;
}

.ugc-review__avatar {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	object-fit: cover;
}

.ugc-review__identity {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.ugc-review__name {
	font-size: 0.9375rem;
	font-weight: 700;
	color: var(--color-text);
}

.ugc-review__location {
	font-size: 0.75rem;
	color: var(--color-text-muted);
}

.ugc-review__badge {
	flex-shrink: 0;
	padding: 0.2rem 0.5rem;
	font-size: 0.625rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-accent);
	background-color: rgba(215, 25, 32, 0.08);
	border-radius: 4px;
}

.ugc-review .review-card__stars {
	margin: 0;
}

.ugc-review__quote {
	margin: 0;
	padding: 0;
	border: none;
}

.ugc-review__quote p {
	margin: 0;
	font-size: 0.9375rem;
	line-height: 1.7;
	color: var(--color-text);
}

.ugc-review__quote p::before {
	content: "\201C";
	margin-right: 0.1rem;
	color: var(--color-accent);
	font-weight: 700;
}

.ugc-review__product {
	margin: 0;
	padding-top: 0.85rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--color-text-muted);
	border-top: 1px solid var(--color-border);
}

.review-card {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	height: 100%;
	padding: 1.5rem;
	background-color: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: 8px;
	box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
}

.review-card__stars {
	display: flex;
	gap: 0.1rem;
}

.review-card__star {
	position: relative;
	display: inline-block;
	width: 1rem;
	height: 1rem;
	font-size: 0;
}

.review-card__star::before {
	content: "\2605";
	font-size: 0.95rem;
	color: #d8d8d8;
}

.review-card__star--full::before {
	color: #f4b400;
}

.review-card__text {
	margin: 0;
	flex: 1;
	font-size: var(--font-size-base);
	line-height: 1.7;
	color: var(--color-text);
}

.review-card__meta {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
}

.review-card__name {
	font-size: var(--font-size-sm);
	color: var(--color-text);
}

.review-card__product {
	font-size: 0.8125rem;
	color: var(--color-text-muted);
}

/* ==========================================================================
   FAQ
   ========================================================================== */

.faq {
	background-color: #ffffff;
}

.faq__header {
	max-width: 42rem;
	margin: 0 auto 2.5rem;
	text-align: center;
}

.faq__eyebrow {
	margin: 0 0 0.65rem;
	font-family: var(--font-family-base);
	font-size: 0.9375rem;
	font-weight: 400;
	letter-spacing: normal;
	text-transform: none;
	color: #6b7280;
}

.faq__title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: clamp(1.75rem, 4vw, 2.35rem);
	font-weight: 600;
	line-height: 1.25;
	color: #111827;
}

.faq__list {
	display: flex;
	flex-direction: column;
	max-width: 720px;
	margin: 0 auto;
}

.faq__item {
	border-top: 1px solid #e8e8e8;
}

.faq__item:last-child {
	border-bottom: 1px solid #e8e8e8;
}

.faq__question {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	padding: 1.35rem 0;
	font-family: var(--font-family-heading);
	font-size: 1rem;
	font-weight: 500;
	line-height: 1.45;
	color: #1f2937;
	cursor: pointer;
	list-style: none;
	transition: color 0.2s ease;
}

.faq__question:hover {
	color: #111827;
}

.faq__question::-webkit-details-marker {
	display: none;
}

.faq__question > span:first-child {
	flex: 1;
	min-width: 0;
}

.faq__toggle {
	position: relative;
	flex-shrink: 0;
	width: 0.875rem;
	height: 0.875rem;
}

.faq__toggle::before,
.faq__toggle::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 0.75rem;
	height: 1px;
	background-color: #374151;
	transform: translate(-50%, -50%);
	transition: opacity 0.2s ease, transform 0.2s ease;
}

.faq__toggle::after {
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq__item[open] .faq__toggle::after {
	opacity: 0;
	transform: translate(-50%, -50%) rotate(90deg);
}

.faq__answer {
	padding: 0 2rem 1.35rem 0;
}

.faq__answer p {
	margin: 0;
	max-width: 38rem;
	font-family: var(--font-family-base);
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.8;
	color: #6b7280;
}

/* ==========================================================================
   PAGE HERO (ABOUT / CONTACT)
   ========================================================================== */

.breadcrumb {
	margin: 0 0 1rem;
}

.breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.15rem 0;
	margin: 0;
	padding: 0;
	list-style: none;
	font-family: var(--font-family-base);
	font-size: 0.8125rem;
}

.breadcrumb__item {
	display: inline-flex;
	align-items: center;
}

.breadcrumb__link {
	color: var(--color-text-muted);
	text-decoration: none;
	transition: color 0.2s ease;
}

.breadcrumb__link:hover {
	color: var(--color-accent);
}

.breadcrumb__sep {
	margin: 0 0.5rem;
	color: var(--color-border);
}

.breadcrumb__current {
	color: var(--color-text);
	font-weight: 600;
}

.page-hero__eyebrow {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.page-hero__title {
	margin: 0 0 1rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1.15;
	color: var(--color-text);
}

.page-hero__text {
	margin: 0;
	max-width: 40rem;
	font-size: var(--font-size-lg);
	line-height: 1.6;
	color: var(--color-text-muted);
}

/* ==========================================================================
   PAGE VALUES (ABOUT)
   ========================================================================== */

.page-values__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-md);
}

@media (min-width: 768px) {
	.page-values__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.page-values__item {
	padding: 1.5rem;
	background-color: var(--color-surface);
	border-radius: 24px;
}

.page-values__title {
	margin: 0 0 0.5rem;
	font-size: 1.1rem;
	font-weight: 700;
	color: var(--color-text);
}

.page-values__text {
	margin: 0;
	font-size: var(--font-size-sm);
	line-height: 1.6;
	color: var(--color-text-muted);
}

/* ==========================================================================
   ABOUT STATS
   ========================================================================== */

.about-stats__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

@media (min-width: 768px) {
	.about-stats__grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

.about-stats__item {
	padding: 1.25rem 1rem;
	text-align: center;
	background-color: #000000;
	border-radius: 16px;
	color: #ffffff;
}

.about-stats__value {
	margin: 0 0 0.35rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	line-height: 1;
	color: #ffffff;
}

.about-stats__label {
	margin: 0;
	font-size: 0.8125rem;
	color: rgba(255, 255, 255, 0.65);
}

.section-heading {
	margin: 0 0 var(--spacing-md);
	font-size: var(--font-size-xl);
	font-weight: 700;
	color: var(--color-text);
}

.page-values__index {
	display: block;
	margin-bottom: 0.75rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	color: var(--color-accent);
}

/* ==========================================================================
   CONTACT LAYOUT
   ========================================================================== */

.contact-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-lg);
}

@media (min-width: 900px) {
	.contact-layout {
		grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr);
		align-items: start;
	}
}

.form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-md);
}

@media (min-width: 640px) {
	.form__row {
		grid-template-columns: repeat(2, 1fr);
	}
}

.contact-cards {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.contact-card {
	padding: 1.25rem;
	background-color: var(--color-surface);
	border: 1px solid var(--color-border);
	border-radius: 16px;
}

.contact-card__label {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.contact-card__value {
	margin: 0;
	font-size: var(--font-size-base);
	font-weight: 600;
	color: var(--color-text);
	text-decoration: none;
}

a.contact-card__value:hover {
	color: var(--color-accent);
}

/* ==========================================================================
   LEGAL PAGES
   ========================================================================== */

.page-hero--legal {
	border-bottom: 1px solid var(--color-border);
}

.page-hero__meta {
	margin: 0;
	font-size: var(--font-size-sm);
	color: var(--color-text-muted);
}

.legal-content h2 {
	margin-top: 2rem;
	margin-bottom: 0.75rem;
	font-size: 1.25rem;
}

.legal-content h2:first-child {
	margin-top: 0;
}

.legal-content p,
.legal-content li {
	color: var(--color-text-muted);
	line-height: 1.7;
}

/* ==========================================================================
   STATS BAND
   ========================================================================== */

.stats-band {
	padding: var(--spacing-lg) 0;
	background-color: var(--color-surface);
	border-block: 1px solid var(--color-border);
}

.stats-band__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-md);
	text-align: center;
}

@media (min-width: 768px) {
	.stats-band__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--spacing-lg);
	}
}

.stats-band__value {
	margin: 0 0 0.35rem;
	font-size: clamp(2rem, 4vw, 2.75rem);
	font-weight: 700;
	line-height: 1;
	color: var(--color-text);
}

.stats-band__label {
	margin: 0;
	font-size: var(--font-size-sm);
	font-weight: 600;
	color: var(--color-text-muted);
}

/* ==========================================================================
   EXPERTISE GRID
   ========================================================================== */

.expertise-grid__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-md);
}

@media (min-width: 900px) {
	.expertise-grid__list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.expertise-card {
	display: flex;
	flex-direction: column;
	height: 100%;
	padding: 1.75rem;
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 20px;
	transition: border-color var(--transition), transform var(--transition);
}

.expertise-card:hover {
	border-color: #000000;
	transform: translateY(-2px);
}

.expertise-card__icon {
	display: block;
	width: 3rem;
	height: 3rem;
	margin-bottom: 1.25rem;
	border-radius: 12px;
	background-color: var(--color-surface);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 1.5rem;
}

.expertise-card__icon--exterior {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23e21e2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 17h18M5 17l1-7h12l1 7M7 10l2-4h6l2 4'/%3E%3Ccircle cx='7.5' cy='17' r='1.5'/%3E%3Ccircle cx='16.5' cy='17' r='1.5'/%3E%3C/svg%3E");
}

.expertise-card__icon--protection {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23e21e2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l8 4v6c0 5-3.5 8-8 8s-8-3-8-8V7l8-4z'/%3E%3C/svg%3E");
}

.expertise-card__icon--interior {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='none' stroke='%23e21e2d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='4' width='16' height='16' rx='2'/%3E%3Cpath d='M8 12h8M8 8h8M8 16h5'/%3E%3C/svg%3E");
}

.expertise-card__title {
	margin: 0 0 0.75rem;
	font-size: 1.125rem;
	font-weight: 700;
}

.expertise-card__text {
	flex: 1;
	margin: 0 0 1.25rem;
	font-size: var(--font-size-sm);
	line-height: 1.7;
	color: var(--color-text-muted);
}

.expertise-card__link {
	font-size: var(--font-size-sm);
	font-weight: 700;
	color: var(--color-text);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.expertise-card__link:hover {
	color: var(--color-accent);
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */

.how-it-works {
	background-color: var(--color-surface);
}

.how-it-works__list {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-md);
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 900px) {
	.how-it-works__list {
		grid-template-columns: repeat(3, 1fr);
	}
}

.how-it-works__item {
	padding: 1.75rem;
	background-color: var(--color-background);
	border: 1px solid var(--color-border);
	border-radius: 20px;
}

.how-it-works__step {
	display: inline-block;
	margin-bottom: 1rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	color: var(--color-accent);
}

.how-it-works__title {
	margin: 0 0 0.65rem;
	font-size: 1.125rem;
	font-weight: 700;
}

.how-it-works__text {
	margin: 0;
	font-size: var(--font-size-sm);
	line-height: 1.7;
	color: var(--color-text-muted);
}

/* ==========================================================================
   BRAND STORY
   ========================================================================== */

.brand-story__inner {
	padding: clamp(2rem, 5vw, 3.5rem);
	background: linear-gradient(135deg, #f8f8f8 0%, #ffffff 55%, #f3f3f3 100%);
	border: 1px solid var(--color-border);
	border-radius: 28px;
}

.brand-story__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-lg);
	margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
	.brand-story__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

.brand-story__label {
	margin: 0 0 0.65rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--color-text-muted);
}

.brand-story__text {
	margin: 0;
	font-size: var(--font-size-lg);
	line-height: 1.75;
	color: var(--color-text);
}

/* ==========================================================================
   CTA BANNER
   ========================================================================== */

.cta-banner__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--spacing-md);
	padding: clamp(2rem, 5vw, 3rem);
	border-radius: 8px;
	color: #ffffff;
	background: linear-gradient(135deg, var(--color-accent) 0%, #a10f15 100%);
}

@media (min-width: 768px) {
	.cta-banner__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.cta-banner__title {
	margin: 0 0 0.5rem;
	font-size: clamp(1.5rem, 3vw, 2rem);
	font-weight: 700;
	color: #ffffff;
}

.cta-banner__text {
	margin: 0;
	max-width: 36rem;
	font-size: var(--font-size-lg);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
}

/* ==========================================================================
   HOME PAGE — MOTHERS-INSPIRED SECTIONS
   ========================================================================== */

.main--home {
	--home-section-space: clamp(2.25rem, 5vw, 3.25rem);
	background-color: #ffffff;
}

.main--home > section {
	padding-top: var(--home-section-space);
	padding-bottom: var(--home-section-space);
}

.main--home > section.hero {
	padding-top: clamp(1rem, 3vw, 1.5rem);
}

.main--home > section:last-child {
	padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.featured-offer {
	padding: var(--spacing-md) 0;
	background: linear-gradient(90deg, #111111 0%, #2a2a2a 100%);
	color: #ffffff;
}

.featured-offer__inner {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--spacing-md);
	padding: 1.5rem 0;
}

@media (min-width: 768px) {
	.featured-offer__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.featured-offer__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.72);
}

.featured-offer__title {
	margin: 0 0 0.35rem;
	font-size: clamp(1.35rem, 2.5vw, 1.75rem);
	font-weight: 700;
	color: #ffffff;
}

.featured-offer__text {
	margin: 0;
	max-width: 36rem;
	font-size: var(--font-size-base);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.82);
}

.sales-banner__frame {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	min-height: 420px;
	display: flex;
	align-items: flex-end;
}

.sales-banner__image {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sales-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.55) 55%, rgba(0, 0, 0, 0.25) 100%);
}

.sales-banner__content {
	position: relative;
	z-index: 1;
	max-width: 36rem;
	padding: clamp(1.75rem, 4vw, 3rem);
	color: #ffffff;
}

.sales-banner__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--color-highlight);
}

.sales-banner__title {
	margin: 0 0 0.75rem;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
	line-height: 1.15;
	color: #ffffff;
}

.sales-banner__highlight {
	display: block;
	color: var(--color-highlight);
}

.sales-banner__text {
	margin: 0 0 1.25rem;
	font-size: var(--font-size-lg);
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.88);
}

.sales-banner__perks {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
}

.sales-banner__perk {
	position: relative;
	padding-left: 1.5rem;
	font-size: var(--font-size-sm);
	font-weight: 600;
	color: rgba(255, 255, 255, 0.92);
}

.sales-banner__perk::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.45em;
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background-color: var(--color-accent);
}

.sales-banner__actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 0.75rem;
}

.sales-banner__code {
	margin: 0;
	font-size: var(--font-size-sm);
	color: rgba(255, 255, 255, 0.78);
}

.sales-banner__code strong {
	color: #ffffff;
	letter-spacing: 0.06em;
}

@media (min-width: 768px) {
	.sales-banner__highlight {
		display: inline;
	}

	.sales-banner__actions {
		flex-direction: row;
		align-items: center;
		gap: 1.25rem;
	}
}

.howto-videos {
	background-color: #ffffff;
}

.howto-videos__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--spacing-md);
}

@media (min-width: 768px) {
	.howto-videos__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.video-card {
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
	text-decoration: none;
	color: var(--color-text);
}

.video-card__media {
	position: relative;
	display: block;
	overflow: hidden;
	border-radius: 8px;
}

.video-card__thumb {
	display: block;
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.video-card:hover .video-card__thumb {
	transform: scale(1.04);
}

.video-card__play {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 3.5rem;
	height: 3.5rem;
	border-radius: 50%;
	background-color: var(--color-accent);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	transform: translate(-50%, -50%);
}

.video-card__play::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 54%;
	border-top: 0.55rem solid transparent;
	border-bottom: 0.55rem solid transparent;
	border-left: 0.9rem solid #ffffff;
	transform: translate(-50%, -50%);
}

.video-card__duration {
	position: absolute;
	right: 0.75rem;
	bottom: 0.75rem;
	padding: 0.2rem 0.45rem;
	font-size: 0.75rem;
	font-weight: 700;
	color: #ffffff;
	background-color: rgba(0, 0, 0, 0.72);
	border-radius: 4px;
}

.video-card__title {
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.4;
}

.video-card:hover .video-card__title {
	color: var(--color-accent);
}

.product-slider-section {
	background-color: #ffffff;
}

/* ==========================================================================
   HOME — PAWZY-INSPIRED SECTIONS
   ========================================================================== */

.service-features {
	background-color: #eef2f7;
}

.service-features__list {
	display: flex;
	flex-direction: column;
	gap: 1.35rem;
	margin: 0;
	padding: 1.25rem 1rem;
	list-style: none;
	background-color: #ffffff;
	border-radius: 16px;
}

.service-features__item {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: 0.85rem;
	text-align: left;
}

.service-features__content {
	flex: 1;
	min-width: 0;
}

.service-features__icon {
	flex-shrink: 0;
	width: 1.75rem;
	height: 1.75rem;
	margin-top: 0.1rem;
	background-color: #1e2d3d;
	mask-size: contain;
	mask-repeat: no-repeat;
	mask-position: center;
	-webkit-mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
}

@media (min-width: 768px) {
	.service-features__list {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 1.25rem;
		padding: 0;
		background-color: transparent;
		border-radius: 0;
	}

	.service-features__item {
		flex-direction: column;
		align-items: center;
		gap: 0.75rem;
		text-align: center;
	}

	.service-features__icon {
		width: 2rem;
		height: 2rem;
		margin-top: 0;
	}
}

@media (min-width: 1100px) {
	.service-features__list {
		grid-template-columns: repeat(5, 1fr);
	}
}

.service-features__icon--return {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M9 14 4 9l5-5v3h7v4h-7v3zm8 5H5v-4H3v6h16v-6h-2v4z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M9 14 4 9l5-5v3h7v4h-7v3zm8 5H5v-4H3v6h16v-6h-2v4z'/%3E%3C/svg%3E");
}

.service-features__icon--shipping {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 6h11v9H3V6zm12 2h3l3 4v3h-6V8zM6 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm10 0a2 2 0 1 0 .001-3.999A2 2 0 0 0 16 18z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M3 6h11v9H3V6zm12 2h3l3 4v3h-6V8zM6 18a2 2 0 1 0 0-4 2 2 0 0 0 0 4zm10 0a2 2 0 1 0 .001-3.999A2 2 0 0 0 16 18z'/%3E%3C/svg%3E");
}

.service-features__icon--secure {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3zm0 4.2 5 1.9V11c0 3.5-2.2 7-5 8.1-2.8-1.1-5-4.6-5-8.1V8.1l5-1.9z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2 4 5v6c0 5 3.4 9.7 8 11 4.6-1.3 8-6 8-11V5l-8-3zm0 4.2 5 1.9V11c0 3.5-2.2 7-5 8.1-2.8-1.1-5-4.6-5-8.1V8.1l5-1.9z'/%3E%3C/svg%3E");
}

.service-features__icon--formula {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M10 2h4v2h-1v5.1l-5.5 9.2A3 3 0 0 0 10.2 22h3.6a3 3 0 0 0 2.7-3.7L11 9.1V4h-1V2z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M10 2h4v2h-1v5.1l-5.5 9.2A3 3 0 0 0 10.2 22h3.6a3 3 0 0 0 2.7-3.7L11 9.1V4h-1V2z'/%3E%3C/svg%3E");
}

.service-features__icon--support {
	mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a8 8 0 0 0-8 8v3a3 3 0 0 0 3 3h1v-6H6a6 6 0 1 1 12 0h-2v6h1a3 3 0 0 0 3-3v-3a8 8 0 0 0-8-8z'/%3E%3C/svg%3E");
	-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M12 2a8 8 0 0 0-8 8v3a3 3 0 0 0 3 3h1v-6H6a6 6 0 1 1 12 0h-2v6h1a3 3 0 0 0 3-3v-3a8 8 0 0 0-8-8z'/%3E%3C/svg%3E");
}

.service-features__title {
	margin: 0;
	font-family: var(--font-family-heading);
	font-size: 0.9375rem;
	font-weight: 600;
	line-height: 1.35;
	color: #1e2d3d;
}

.service-features__text {
	margin: 0.25rem 0 0;
	font-family: var(--font-family-base);
	font-size: 0.8125rem;
	line-height: 1.55;
	color: #6b7280;
}

.category-showcase__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2rem;
	margin: 0;
	padding: 0;
	list-style: none;
}

@media (min-width: 768px) {
	.category-showcase__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 1.5rem;
	}
}

.category-showcase {
	overflow: hidden;
}

.category-showcase__card {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-decoration: none;
}

.category-showcase__panel {
	display: block;
	width: 100%;
	height: 220px;
	border-radius: 20px;
	background-color: var(--category-color);
}

.category-showcase__image {
	width: min(96%, 330px);
	margin-top: -160px;
	margin-bottom: 1rem;
	object-fit: contain;
	filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.12));
}

.category-showcase__name {
	font-family: var(--font-family-heading);
	font-size: clamp(1.2rem, 2.2vw, 1.375rem);
	font-weight: 600;
	color: var(--color-text);
}

.deal-countdown {
	background-color: #eef2f7;
}

@media (max-width: 899px) {
	.deal-countdown__inner {
		align-items: flex-start;
		padding: 1.25rem 1rem;
		background-color: #e8eef5;
		border-radius: 16px;
	}

	.deal-countdown__eyebrow {
		font-family: var(--font-family-base);
		font-weight: 500;
		color: #1e2d3d;
	}

	.deal-countdown__title {
		font-family: var(--font-family-heading);
		font-weight: 600;
		line-height: 1.35;
		color: #1e2d3d;
	}

	.deal-countdown__actions {
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		gap: 1.25rem;
	}

	.deal-countdown__timer {
		justify-content: flex-start;
	}

	.deal-countdown__unit {
		align-items: flex-start;
	}

	.deal-countdown__value {
		font-family: var(--font-family-heading);
		font-size: 1.5rem;
	}

	.deal-countdown__label {
		font-family: var(--font-family-base);
		text-transform: none;
	}
}

.deal-countdown__inner {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

@media (min-width: 900px) {
	.deal-countdown__inner {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}
}

.deal-countdown__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

.deal-countdown__title {
	margin: 0;
	font-size: clamp(1.1rem, 2.5vw, 1.5rem);
	font-weight: 700;
}

.deal-countdown__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 1rem;
}

.deal-countdown__timer {
	display: flex;
	align-items: center;
	gap: 0.5rem;
}

.deal-countdown__unit {
	display: flex;
	flex-direction: column;
	align-items: center;
	min-width: 3rem;
}

.deal-countdown__value {
	font-size: 1.25rem;
	font-weight: 700;
	line-height: 1;
}

.deal-countdown__label {
	margin-top: 0.25rem;
	font-size: 0.6875rem;
	color: var(--color-text-muted);
	text-transform: uppercase;
}

.deal-countdown__sep {
	font-size: 1.25rem;
	font-weight: 700;
	color: var(--color-text-muted);
}

.product-showcase__layout {
	display: grid;
	gap: 1.5rem;
}

@media (min-width: 900px) {
	.product-showcase__layout {
		grid-template-columns: 240px minmax(0, 1fr);
		align-items: stretch;
	}
}

.product-showcase__promo {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	min-height: 500px;
	padding: 1.5rem 1.25rem;
	overflow: hidden;
	border-radius: 20px;
	background-color: var(--promo-color, #dbeafe);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.product-showcase__promo::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		180deg,
		rgba(255, 255, 255, 0.9) 0%,
		rgba(255, 255, 255, 0.35) 32%,
		transparent 55%
	);
	pointer-events: none;
}

.product-showcase__promo-copy {
	position: relative;
	z-index: 1;
	max-width: 16rem;
	text-align: left;
}

.product-showcase__eyebrow {
	margin: 0 0 0.35rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: #111111;
}

.product-showcase__title {
	margin: 0 0 1rem;
	font-family: var(--font-family-heading);
	font-size: clamp(1.5rem, 4vw, 1.75rem);
	font-weight: 700;
	line-height: 1.15;
	color: #111111;
}

.product-showcase__promo-btn.btn--pill.btn--accent {
	background-color: var(--color-accent);
	color: #111111;
}

.product-showcase__promo-btn.btn--pill.btn--accent:hover {
	background-color: #111111;
	color: #ffffff;
}

@media (min-width: 900px) {
	.product-showcase__promo {
		align-self: start;
		width: 100%;
		min-height: 500px;
		padding: 1.25rem 1rem;
	}

	.product-showcase__title {
		margin-bottom: 0.85rem;
		font-size: 1.375rem;
	}
}

.product-showcase__carousel {
	display: flex;
	flex-direction: column;
	min-width: 0;
	overflow: hidden;
}

.product-showcase__header {
	margin-bottom: 1rem;
}

.product-showcase__section-title {
	margin: 0;
	font-size: var(--font-size-2xl);
	font-weight: 700;
}

.product-slider--showcase .product-slider__track.product-grid--slider > li.product-card,
.product-slider--showcase .product-slider__track.product-grid--slider > li.product {
	flex: 0 0 calc(85% - 1rem);
}

@media (min-width: 640px) {
	.product-slider--showcase .product-slider__track.product-grid--slider > li.product-card,
	.product-slider--showcase .product-slider__track.product-grid--slider > li.product {
		flex: 0 0 calc(50% - 0.625rem);
	}
}

@media (min-width: 1100px) {
	.product-slider--showcase .product-slider__track.product-grid--slider > li.product-card,
	.product-slider--showcase .product-slider__track.product-grid--slider > li.product {
		flex: 0 0 calc(33.333% - 0.833rem);
	}
}

.product-showcase__controls {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-top: 1rem;
}

.product-showcase__progress {
	flex: 1;
	height: 3px;
	background-color: #e5e7eb;
	border-radius: 999px;
	overflow: hidden;
}

.product-showcase__progress-bar {
	display: block;
	width: 0;
	height: 100%;
	background-color: var(--color-accent);
	border-radius: inherit;
	transition: width 0.2s ease;
}

.product-showcase__nav {
	display: flex;
	gap: 0.5rem;
}

.product-showcase__nav-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
	font-size: 1rem;
	color: var(--color-text);
	background-color: #ffffff;
	border: 1px solid var(--color-border);
	border-radius: 50%;
	cursor: pointer;
	transition: background-color var(--transition), color var(--transition), border-color var(--transition), opacity var(--transition);
}

.product-showcase__nav-btn:hover:not(:disabled) {
	color: #ffffff;
	background-color: #111111;
	border-color: #111111;
}

.product-showcase__nav-btn:disabled {
	opacity: 0.35;
	cursor: default;
}

.before-after {
	background-color: #f8fafc;
	overflow: hidden;
}

.before-after__header {
	margin-bottom: 2rem;
}

.before-after__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

.before-after__title {
	margin: 0;
	font-size: clamp(1.75rem, 4vw, 2.5rem);
	font-weight: 700;
}

.before-after__frame {
	position: relative;
	overflow: hidden;
	border-radius: 16px;
	aspect-ratio: 16 / 7;
	background-color: #dbeafe;
}

.before-after__layer {
	position: absolute;
	inset: 0;
}

.before-after__layer--after {
	z-index: 2;
	clip-path: inset(0 50% 0 0);
}

.before-after__image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.before-after__divider {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	z-index: 3;
	width: 2px;
	background-color: #ffffff;
	transform: translateX(-50%);
	pointer-events: none;
}

.before-after__handle {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 2.5rem;
	height: 3.5rem;
	background-color: #ffffff;
	border-radius: 999px;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
	transform: translate(-50%, -50%);
}

.before-after__range {
	position: absolute;
	inset: 0;
	z-index: 4;
	width: 100%;
	height: 100%;
	margin: 0;
	opacity: 0;
	cursor: ew-resize;
}

.instagram-gallery {
	overflow: hidden;
}

.instagram-gallery__layout {
	display: grid;
	gap: 1.25rem;
}

@media (min-width: 900px) {
	.instagram-gallery__layout {
		grid-template-columns: 260px 1fr;
		align-items: start;
	}
}

.instagram-gallery__eyebrow {
	margin: 0 0 0.5rem;
	font-size: 0.875rem;
	color: var(--color-text-muted);
}

.instagram-gallery__title {
	margin: 0 0 1.25rem;
	font-size: clamp(1.75rem, 4vw, 2.25rem);
	font-weight: 700;
	line-height: 1.15;
}

.instagram-gallery__grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 120px;
	gap: 0.75rem;
}

@media (min-width: 768px) {
	.instagram-gallery__grid {
		grid-template-columns: repeat(4, 1fr);
		grid-auto-rows: 140px;
		gap: 1rem;
	}
}

.instagram-gallery__item {
	overflow: hidden;
	border-radius: 16px;
}

.instagram-gallery__item img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.35s ease;
}

.instagram-gallery__item:hover img {
	transform: scale(1.05);
}

.instagram-gallery__item--tall {
	grid-row: span 2;
}

.instagram-gallery__item--wide {
	grid-column: span 2;
}
