.button,
.text-link,
.filter-chip {
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	padding: 0.95rem 1.3rem;
	border: 1px solid transparent;
	border-radius: 999px;
	font-weight: 700;
}

.button:hover {
	transform: translateY(-1px);
}

.button--primary {
	background: var(--color-primary);
	color: #111;
}

.button--primary:hover {
	background: var(--color-primary-hover);
}

.button--secondary {
	border-color: rgba(209, 125, 67, 0.4);
	background: rgba(209, 125, 67, 0.12);
	color: var(--color-text);
}

.button--ghost {
	border-color: var(--color-border);
	background: transparent;
}

.text-link {
	font-weight: 700;
	color: var(--color-primary);
}

.text-link:hover {
	color: var(--color-primary-hover);
}

.hero-actions,
.card-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.content-card,
.content-panel,
.process-card,
.benefit-card,
.cta-banner,
.stat-card,
.hero-panel,
.empty-state {
	padding: 1.5rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	box-shadow: var(--shadow-sm);
}

.content-card:hover,
.content-panel:hover,
.process-card:hover,
.benefit-card:hover,
.stat-card:hover {
	background: var(--color-surface-hover);
}

.content-card--feature {
	min-height: 100%;
}

.content-card--empty {
	border-style: dashed;
}

.card-media {
	display: block;
	margin: -1.5rem -1.5rem 1.25rem;
	overflow: hidden;
	border-radius: calc(var(--radius-md) - 2px) calc(var(--radius-md) - 2px) 0 0;
}

.card-media img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.card-title {
	font-size: 1.45rem;
}

.hero-panel--large {
	display: grid;
	gap: 0.85rem;
	min-height: 280px;
	align-content: end;
	background: linear-gradient(160deg, rgba(209, 125, 67, 0.15), rgba(255, 255, 255, 0.04));
}

.hero-media {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	box-shadow: var(--shadow-md);
}

.hero-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(10, 12, 16, 0.05), rgba(10, 12, 16, 0.5));
}

.hero-media__image {
	width: 100%;
	height: 100%;
	min-height: 340px;
	object-fit: cover;
}

.hero-stack,
.hero-metrics,
.product-price-grid,
.filter-chip-list,
.product-card__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

.hero-metrics {
	list-style: none;
	padding: 0;
}

.hero-metrics li,
.product-price-grid > div {
	flex: 1 1 150px;
	padding: 1rem 1.1rem;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: rgba(255, 255, 255, 0.03);
}

.hero-metrics strong,
.product-price-grid strong {
	display: block;
	font-family: var(--font-heading);
	font-size: 1.25rem;
}

.process-grid,
.benefit-grid,
.product-spec-list {
	display: grid;
	gap: 1rem;
}

.benefit-grid,
.product-spec-list {
	list-style: none;
	padding: 0;
}

.process-card strong {
	display: inline-flex;
	margin-bottom: 1rem;
	font-family: var(--font-heading);
	font-size: 1.25rem;
	color: var(--color-primary);
}

.faq-list {
	display: grid;
	gap: 0.9rem;
}

.faq-item {
	border: 1px solid var(--color-border);
	border-radius: var(--radius-md);
	background: var(--color-surface);
	overflow: hidden;
}

.faq-item__title {
	margin: 0;
}

.faq-trigger {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1.2rem 1.3rem;
	border: 0;
	background: transparent;
	color: var(--color-text);
	text-align: left;
}

.faq-trigger::after {
	content: "+";
	font-size: 1.3rem;
	color: var(--color-primary);
}

.faq-trigger[aria-expanded="true"]::after {
	content: "−";
}

.faq-panel {
	padding: 0 1.3rem 1.25rem;
	color: var(--color-text-muted);
}

.cta-banner {
	display: grid;
	gap: 1.5rem;
	background: linear-gradient(140deg, rgba(209, 125, 67, 0.18), rgba(255, 255, 255, 0.03));
}

.featured-media {
	overflow: hidden;
	border-radius: var(--radius-md);
}

.filter-chip {
	display: inline-flex;
	padding: 0.65rem 1rem;
	border: 1px solid var(--color-border);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.03);
}

.filter-chip:hover {
	border-color: rgba(209, 125, 67, 0.4);
}

.price-pill,
.meta-pill {
	display: inline-flex;
	padding: 0.4rem 0.75rem;
	border-radius: 999px;
	background: rgba(209, 125, 67, 0.12);
	color: var(--color-text);
	font-size: 0.9rem;
}

.product-gallery {
	display: grid;
	gap: 1rem;
}

.product-gallery__stage {
	overflow: hidden;
	border-radius: var(--radius-lg);
	border: 1px solid var(--color-border);
	background: rgba(255, 255, 255, 0.04);
}

.product-gallery__figure img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
}

.product-gallery__thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
	gap: 0.75rem;
}

.product-gallery__thumb {
	padding: 0;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-sm);
	background: transparent;
	overflow: hidden;
}

.product-gallery__thumb.is-active {
	border-color: var(--color-primary);
}

.product-gallery__thumb img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
}

.spec-table {
	display: grid;
	gap: 0.75rem;
}

.spec-table div {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.2rem;
	padding-bottom: 0.75rem;
	border-bottom: 1px solid var(--color-border);
}

.spec-table dt {
	font-weight: 700;
	color: var(--color-text);
}

.spec-table dd {
	margin: 0;
	color: var(--color-text-muted);
}
