/*!
Theme Name: CineSigns
Theme URI: https://cinesigns.com/
Author: CineSigns
Author URI: https://cinesigns.com/
Description: Custom theme for CineSigns WooCommerce shop. Based on Underscores starter theme.
Version: 1.0.0
Tested up to: 6.7
Requires PHP: 8.1
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: cinesigns
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, woocommerce

Based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Design Tokens (CSS Custom Properties)
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
# Layouts
# Components
	- Header
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
	- Footer
# Plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments
	- Containers

--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Design Tokens (CSS Custom Properties)
--------------------------------------------------------------*/
:root {
	/* === HEADER LAYOUT === */
	--header-logo-area: 150px; /* matches logo width attribute */
	--header-gap: var(--space-10);

	/* === BACKGROUND COLORS === */
	--color-bg-primary: #0a0a0a;
	--color-bg-secondary: #111111;
	--color-bg-tertiary: #1a1a1a;
	--color-bg-elevated: #222222;

	/* === TEXT COLORS === */
	--color-text-primary: #f5f5f7;
	--color-text-secondary: #a1a1a6;
	--color-text-tertiary: #6e6e73;
	--color-text-inverse: #ffffff;

	/* === ACCENT COLORS - Gold/Champagne === */
	--color-accent-gold: #c9a962;
	--color-accent-gold-light: #dcc07b;
	--color-accent-gold-dark: #a68b4b;
	--color-accent-gold-muted: rgba(201, 169, 98, 0.15);

	/* === SEMANTIC COLORS === */
	--color-success: #34c759;
	--color-error: #ff453a;
	--color-warning: #ff9f0a;
	--color-info: #5ac8fa;

	/* === BORDER COLORS === */
	--color-border-subtle: rgba(255, 255, 255, 0.08);
	--color-border-default: rgba(255, 255, 255, 0.12);
	--color-border-strong: rgba(255, 255, 255, 0.2);
	--color-border-gold: var(--color-accent-gold);

	/* === FONT FAMILIES === */
	--font-primary: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Inter", "Segoe UI", system-ui, sans-serif;
	--font-mono: "SF Mono", SFMono-Regular, ui-monospace, "Cascadia Code", "Segoe UI Mono", monospace;

	/* === FONT SIZES === */
	--text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
	--text-sm: clamp(0.8125rem, 0.75rem + 0.3vw, 0.875rem);
	--text-base: clamp(0.9375rem, 0.875rem + 0.3vw, 1rem);
	--text-lg: clamp(1.0625rem, 1rem + 0.3vw, 1.125rem);
	--text-xl: clamp(1.25rem, 1.125rem + 0.5vw, 1.5rem);
	--text-2xl: clamp(1.5rem, 1.25rem + 1vw, 2rem);
	--text-3xl: clamp(2rem, 1.5rem + 2vw, 3rem);
	--text-4xl: clamp(2.5rem, 2rem + 2.5vw, 4rem);

	/* === FONT WEIGHTS === */
	--font-light: 300;
	--font-regular: 400;
	--font-medium: 500;
	--font-semibold: 600;
	--font-bold: 700;

	/* === LINE HEIGHTS === */
	--leading-tight: 1.1;
	--leading-snug: 1.25;
	--leading-normal: 1.5;
	--leading-relaxed: 1.625;

	/* === LETTER SPACING === */
	--tracking-tight: -0.025em;
	--tracking-normal: 0;
	--tracking-wide: 0.05em;
	--tracking-wider: 0.1em;

	/* === SPACING SCALE === */
	--space-1: 0.25rem;
	--space-2: 0.5rem;
	--space-3: 0.75rem;
	--space-4: 1rem;
	--space-5: 1.25rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-10: 2.5rem;
	--space-12: 3rem;
	--space-16: 4rem;
	--space-20: 5rem;
	--space-24: 6rem;

	/* === LAYOUT WIDTHS === */
	--width-content: 75rem;
	--width-narrow: 48rem;
	--width-wide: 87rem;
	--container-padding: var(--space-12);

	/* === BORDER RADIUS === */
	--radius-sm: 0.25rem;
	--radius-md: 0.5rem;
	--radius-lg: 0.75rem;
	--radius-xl: 1rem;
	--radius-2xl: 1.5rem;
	--radius-full: 9999px;

	/* === SHADOWS === */
	--shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
	--shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4), 0 1px 3px rgba(0, 0, 0, 0.3);
	--shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5), 0 4px 6px rgba(0, 0, 0, 0.3);
	--shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.5), 0 8px 10px rgba(0, 0, 0, 0.4);
	--shadow-gold: 0 0 20px rgba(201, 169, 98, 0.15);

	/* === TRANSITIONS === */
	--transition-fast: 150ms ease;
	--transition-base: 250ms ease;
	--transition-slow: 400ms ease;

	/* === Z-INDEX SCALE === */
	--z-dropdown: 100;
	--z-sticky: 200;
	--z-overlay: 300;
	--z-modal: 400;
	--z-toast: 500;
}

/* Mobile: reduce gutters, section padding, and header proportions so layout breathes on small screens */
@media screen and (max-width: 47.9375em) {
	:root {
		--container-padding: var(--space-4);
		--header-logo-area: 120px;
		--header-gap: var(--space-3);
	}

	.custom-logo,
	.site-logo {
		width: auto;
		height: 36px;
		max-width: 120px;
	}

	.section {
		padding-top: var(--space-10);
		padding-bottom: var(--space-10);
	}

	.section--lg {
		padding-top: var(--space-12);
		padding-bottom: var(--space-12);
	}

	.section__header {
		margin-bottom: var(--space-8);
	}
}

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

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

body {
	margin: 0;
}

main {
	display: block;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}

pre {
	font-family: monospace, monospace;
	font-size: 1em;
}

a {
	background-color: transparent;
}

abbr[title] {
	border-bottom: none;
	text-decoration: underline;
	text-decoration: underline dotted;
}

b,
strong {
	font-weight: bolder;
}

code,
kbd,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

img {
	border-style: none;
}

button,
input,
optgroup,
select,
textarea {
	font-family: inherit;
	font-size: 100%;
	line-height: 1.15;
	margin: 0;
}

button,
input {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
	-webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
	border-style: none;
	padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
	outline: 1px dotted ButtonText;
}

fieldset {
	padding: 0.35em 0.75em 0.625em;
}

legend {
	box-sizing: border-box;
	color: inherit;
	display: table;
	max-width: 100%;
	padding: 0;
	white-space: normal;
}

progress {
	vertical-align: baseline;
}

textarea {
	overflow: auto;
}

[type="checkbox"],
[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

[type="search"] {
	-webkit-appearance: textfield;
	outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

::-webkit-file-upload-button {
	-webkit-appearance: button;
	font: inherit;
}

details {
	display: block;
}

summary {
	display: list-item;
}

template {
	display: none;
}

[hidden] {
	display: none;
}

/* Box sizing
--------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

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

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: var(--color-text-primary);
	font-family: var(--font-primary);
	font-size: var(--text-base);
	line-height: var(--leading-normal);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
	color: var(--color-text-primary);
	font-weight: var(--font-semibold);
	letter-spacing: var(--tracking-tight);
	line-height: var(--leading-tight);
	margin: 0 0 var(--space-4);
}

h1 {
	font-size: var(--text-4xl);
	font-weight: var(--font-bold);
}

h2 {
	font-size: var(--text-3xl);
}

h3 {
	font-size: var(--text-2xl);
}

h4 {
	font-size: var(--text-xl);
}

h5 {
	font-size: var(--text-lg);
}

h6 {
	font-size: var(--text-base);
	font-weight: var(--font-semibold);
}

p {
	margin-bottom: var(--space-6);
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 var(--space-6);
	padding-left: var(--space-6);
	border-left: 3px solid var(--color-accent-gold);
	color: var(--color-text-secondary);
	font-style: italic;
}

address {
	margin: 0 0 var(--space-6);
}

pre {
	background: var(--color-bg-secondary);
	border: 1px solid var(--color-border-default);
	border-radius: var(--radius-md);
	font-family: var(--font-mono);
	line-height: 1.6;
	margin-bottom: var(--space-6);
	max-width: 100%;
	overflow: auto;
	padding: var(--space-6);
}

code,
kbd,
tt,
var {
	font-family: var(--font-mono);
	font-size: 0.9em;
	background: var(--color-bg-secondary);
	padding: 0.125em 0.375em;
	border-radius: var(--radius-sm);
}

pre code {
	background: none;
	padding: 0;
}

abbr,
acronym {
	border-bottom: 1px dotted var(--color-text-tertiary);
	cursor: help;
}

mark,
ins {
	background: var(--color-accent-gold-muted);
	color: var(--color-accent-gold-light);
	text-decoration: none;
	padding: 0.125em 0.25em;
}

big {
	font-size: 125%;
}

/* Elements
--------------------------------------------- */
html {
	background: var(--color-bg-primary);
}

body {
	background: transparent;
}

@media screen and (max-width: 47.99em) {
	html,
	body {
		overflow-x: clip;
	}
}

hr {
	background-color: var(--color-border-default);
	border: 0;
	height: 1px;
	margin: var(--space-8) 0;
}

ul,
ol {
	margin: 0 0 var(--space-6) var(--space-8);
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: var(--space-6);
}

dt {
	font-weight: var(--font-semibold);
}

dd {
	margin: 0 var(--space-6) var(--space-6);
}

embed,
iframe,
object {
	max-width: 100%;
}

img {
	height: auto;
	max-width: 100%;
}

figure {
	margin: var(--space-4) 0;
}

table {
	margin: 0 0 var(--space-6);
	width: 100%;
	border-collapse: collapse;
}

th,
td {
	padding: var(--space-3) var(--space-4);
	border-bottom: 1px solid var(--color-border-default);
	text-align: left;
}

th {
	font-weight: var(--font-semibold);
	color: var(--color-text-secondary);
	text-transform: uppercase;
	font-size: var(--text-xs);
	letter-spacing: var(--tracking-wide);
}

/* Links
--------------------------------------------- */
a {
	color: var(--color-accent-gold);
	text-decoration: none;
	transition: color var(--transition-fast);
}

a:visited {
	color: var(--color-accent-gold);
}

a:hover,
a:active {
	color: var(--color-accent-gold-light);
}

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

a:focus:not(:focus-visible) {
	outline: none;
}

/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	background: transparent;
	border: 1px solid var(--color-accent-gold);
	border-radius: var(--radius-md);
	color: var(--color-accent-gold);
	cursor: pointer;
	font-size: var(--text-sm);
	font-weight: var(--font-medium);
	letter-spacing: var(--tracking-wide);
	line-height: 1;
	padding: var(--space-3) var(--space-6);
	text-transform: uppercase;
	transition: all var(--transition-base);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: var(--color-accent-gold);
	color: var(--color-text-inverse);
}

button:focus-visible,
input[type="button"]:focus-visible,
input[type="reset"]:focus-visible,
input[type="submit"]:focus-visible {
	outline: 2px solid var(--color-accent-gold);
	outline-offset: 2px;
}

button:focus:not(:focus-visible),
input[type="button"]:focus:not(:focus-visible),
input[type="reset"]:focus:not(:focus-visible),
input[type="submit"]:focus:not(:focus-visible) {
	outline: none;
}

button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	background: var(--color-accent-gold-dark);
	border-color: var(--color-accent-gold-dark);
}

/* Primary button variant */
.btn-primary,
.btn-primary:visited,
button.btn-primary,
input[type="submit"].btn-primary {
	background: var(--color-accent-gold);
	color: #0a0a0a;
}

.btn-primary:hover,
.btn-primary:visited:hover,
button.btn-primary:hover,
input[type="submit"].btn-primary:hover {
	background: var(--color-accent-gold-light);
	border-color: var(--color-accent-gold-light);
	color: #ffffff;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea,
select {
	background: var(--color-bg-secondary);
	border: 1px solid var(--color-border-default);
	border-radius: var(--radius-md);
	color: var(--color-text-primary);
	padding: var(--space-3) var(--space-4);
	transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
	width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus,
select:focus {
	border-color: var(--color-accent-gold);
	box-shadow: 0 0 0 3px var(--color-accent-gold-muted);
	outline: none;
}

input::placeholder,
textarea::placeholder {
	color: var(--color-text-tertiary);
}

select {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a1a1a6' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right var(--space-4) center;
	padding-right: var(--space-10);
}

textarea {
	min-height: 150px;
	resize: vertical;
}

label {
	display: block;
	color: var(--color-text-secondary);
	font-size: var(--text-sm);
	font-weight: var(--font-medium);
	margin-bottom: var(--space-2);
}

fieldset {
	border: 1px solid var(--color-border-default);
	border-radius: var(--radius-lg);
	padding: var(--space-6);
	margin: 0 0 var(--space-6);
}

legend {
	color: var(--color-text-primary);
	font-weight: var(--font-semibold);
	padding: 0 var(--space-2);
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
.site {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
	padding-top: 80px; /* Space for fixed header */
}

.site-main {
	flex: 1;
}

/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* Header
--------------------------------------------- */
.site-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: var(--z-sticky);
	background: rgba(10, 10, 10, 0.7);
	backdrop-filter: blur(24px) saturate(1.2);
	-webkit-backdrop-filter: blur(24px) saturate(1.2);
	border-bottom: 1px solid rgba(201, 169, 98, 0.08);
	padding: var(--space-4) 0;
}

.site-header__inner {
	display: grid;
	grid-template-columns: var(--header-logo-area) 1fr auto;
	align-items: center;
	gap: var(--header-gap);
	max-width: var(--width-wide);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.site-branding {
	flex-shrink: 0;
}

.site-branding a {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}

.custom-logo {
	height: 40px;
	width: auto;
}

.site-title {
	font-size: var(--text-xl);
	font-weight: var(--font-semibold);
	letter-spacing: var(--tracking-wide);
	margin: 0;
}

.site-title a {
	color: var(--color-text-primary);
}

.site-title a:hover {
	color: var(--color-accent-gold);
}

.site-description {
	color: var(--color-text-tertiary);
	font-size: var(--text-sm);
	margin: 0;
}

.site-header__actions {
	display: flex;
	align-items: center;
	gap: var(--space-4);
}

/* Header Cart */
.header-cart {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	color: var(--color-text-secondary);
	border-radius: var(--radius-sm);
	transition: color var(--transition-base), background var(--transition-base);
}

.header-cart:hover {
	color: var(--color-text-primary);
	background: rgba(201, 169, 98, 0.06);
}

.header-cart svg {
	width: 22px;
	height: 22px;
}

.header-cart__count {
	position: absolute;
	top: 4px;
	right: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	height: 18px;
	padding: 0 5px;
	background: var(--color-accent-gold);
	color: var(--color-text-inverse);
	font-size: 11px;
	font-weight: var(--font-semibold);
	border-radius: var(--radius-full);
}

/* Header region switcher (country + currency) */
.header-region {
	position: relative;
	margin: 0;
}

.header-region__trigger {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	padding: var(--space-2) var(--space-3);
	color: var(--color-text-secondary);
	font-size: var(--text-xs);
	font-weight: var(--font-medium);
	letter-spacing: var(--tracking-wider);
	text-transform: uppercase;
	background: transparent;
	border: 1px solid transparent;
	border-radius: var(--radius-sm);
	cursor: pointer;
	list-style: none;
	transition: color var(--transition-base), background var(--transition-base);
	user-select: none;
}

.header-region__trigger::-webkit-details-marker { display: none; }
.header-region__trigger::marker { content: ""; }

.header-region__trigger:hover {
	color: var(--color-text-primary);
	background: rgba(201, 169, 98, 0.06);
}

.header-region__trigger:focus-visible {
	outline: 2px solid var(--color-accent-gold);
	outline-offset: 2px;
}

.header-region__icon {
	width: 18px;
	height: 18px;
}

.header-region__caret {
	width: 10px;
	height: 6px;
	transition: transform var(--transition-base);
}

.header-region[open] .header-region__caret {
	transform: rotate(180deg);
}

.header-region[open] .header-region__trigger {
	color: var(--color-text-primary);
	background: rgba(201, 169, 98, 0.08);
}

.header-region__panel {
	position: absolute;
	top: calc(100% + 8px);
	right: 0;
	z-index: 100;
	min-width: 280px;
	padding: var(--space-5);
	background: var(--color-bg-primary, #0a0a0a);
	border: 1px solid rgba(201, 169, 98, 0.18);
	border-radius: var(--radius-md, 8px);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
}

.header-region__title {
	margin: 0;
	font-size: var(--text-sm);
	font-weight: var(--font-semibold);
	letter-spacing: var(--tracking-wider);
	text-transform: uppercase;
	color: var(--color-accent-gold);
}

.header-region__field {
	display: flex;
	flex-direction: column;
	gap: var(--space-2);
	min-width: 0;
}

.header-region__field label {
	font-size: var(--text-xs);
	color: var(--color-text-tertiary);
	letter-spacing: var(--tracking-wide);
	text-transform: uppercase;
}

.header-region__field select {
	appearance: none;
	-webkit-appearance: none;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	padding: var(--space-3) calc(var(--space-3) + 16px) var(--space-3) var(--space-3);
	background-color: rgba(255, 255, 255, 0.03);
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='none' stroke='%23999' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1l4 4 4-4'/></svg>");
	background-repeat: no-repeat;
	background-position: right 10px center;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: var(--radius-sm);
	color: var(--color-text-primary);
	font-family: inherit;
	font-size: var(--text-sm);
	cursor: pointer;
	transition: border-color var(--transition-base), background var(--transition-base);
}

.header-region__field select:hover {
	border-color: rgba(201, 169, 98, 0.4);
}

.header-region__field select:focus-visible {
	outline: 2px solid var(--color-accent-gold);
	outline-offset: 2px;
	border-color: var(--color-accent-gold);
}

.header-region__field select option {
	background: var(--color-bg-primary, #0a0a0a);
	color: var(--color-text-primary);
}

.header-region__note {
	margin: 0;
	font-size: var(--text-xs);
	line-height: 1.5;
	color: var(--color-text-tertiary);
}

.header-region__submit {
	margin-top: var(--space-2);
	padding: var(--space-3) var(--space-5);
	background: var(--color-accent-gold);
	color: var(--color-text-inverse);
	font-family: inherit;
	font-size: var(--text-sm);
	font-weight: var(--font-semibold);
	letter-spacing: var(--tracking-wider);
	text-transform: uppercase;
	border: none;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: filter var(--transition-base);
}

.header-region__submit:hover {
	filter: brightness(1.08);
}

.header-region__submit:focus-visible {
	outline: 2px solid var(--color-accent-gold);
	outline-offset: 2px;
}

@media (max-width: 600px) {
	.header-region__panel {
		position: fixed;
		top: calc(80px + 8px);
		left: 8px;
		right: 8px;
		min-width: 0;
		width: auto;
		max-width: none;
	}
}

/* Cart/checkout currency notice */
.cinesigns-currency-notice {
	margin-bottom: var(--space-6);
	padding: var(--space-4) var(--space-5);
	background: rgba(201, 169, 98, 0.08);
	border-left: 3px solid var(--color-accent-gold);
	color: var(--color-text-secondary);
	font-size: var(--text-sm);
	line-height: 1.5;
	border-radius: var(--radius-sm);
}

/* Header language switcher (Polylang) */
.header-lang ul {
	display: flex;
	align-items: center;
	gap: 2px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.header-lang li {
	margin: 0;
}

.header-lang a {
	display: block;
	color: var(--color-text-tertiary);
	font-size: var(--text-xs);
	font-weight: var(--font-medium);
	text-transform: uppercase;
	letter-spacing: var(--tracking-wider);
	padding: var(--space-2) var(--space-2);
	border-radius: var(--radius-sm);
	transition: color var(--transition-base), background var(--transition-base);
}

.header-lang a:hover {
	color: var(--color-text-primary);
	background: rgba(201, 169, 98, 0.06);
}

.header-lang a:focus-visible {
	outline: 2px solid var(--color-accent-gold);
	outline-offset: 2px;
}

.header-lang .current-lang a,
.header-lang li.current-lang a {
	color: var(--color-accent-gold);
}

/* Navigation
--------------------------------------------- */
.main-navigation {
	display: flex;
	justify-content: flex-end;
	justify-self: end;
}

.main-navigation > ul {
	display: none;
}

.main-navigation ul {
	align-items: center;
	gap: var(--space-2);
	list-style: none;
	margin: 0;
	padding: 0;
}

.main-navigation li {
	position: relative;
}

.main-navigation a {
	display: block;
	color: var(--color-text-primary);
	font-size: var(--text-sm);
	font-weight: var(--font-medium);
	text-transform: uppercase;
	letter-spacing: var(--tracking-wider);
	padding: var(--space-2) var(--space-4);
	border-radius: var(--radius-sm);
	transition: color var(--transition-base), background var(--transition-base);
}

.main-navigation a:hover {
	color: var(--color-accent-gold-light);
	background: rgba(201, 169, 98, 0.06);
}

.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
	color: var(--color-accent-gold);
	background: transparent;
}

/* Dropdown menus */
.main-navigation ul ul {
	display: none;
	position: absolute;
	top: calc(100% + var(--space-2));
	left: 0;
	min-width: 220px;
	background: rgba(18, 18, 18, 0.95);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(201, 169, 98, 0.1);
	border-radius: var(--radius-md);
	padding: var(--space-2);
	box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5), 0 0 1px rgba(201, 169, 98, 0.15);
	z-index: var(--z-dropdown);
}

/* Invisible hover bridge — fills the visual gap so the cursor can travel
   from the parent link to the dropdown without losing :hover state */
.main-navigation ul ul::before {
	content: '';
	position: absolute;
	top: -12px;
	left: 0;
	right: 0;
	height: 12px;
}

.main-navigation ul ul li {
	width: 100%;
}

.main-navigation ul ul a {
	padding: var(--space-3) var(--space-4);
	border-radius: var(--radius-sm);
	font-size: var(--text-xs);
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	display: block;
}

/* Sub-sub menus */
.main-navigation ul ul ul {
	left: 100%;
	top: 0;
}

/* Mobile menu toggle */
.menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: transparent;
	border: none;
	color: var(--color-text-primary);
}

.menu-toggle:hover {
	background: rgba(201, 169, 98, 0.06);
	color: var(--color-text-primary);
}

.menu-toggle svg {
	width: 24px;
	height: 24px;
}

/* Mobile navigation: dropdown panel anchored under the header */
.main-navigation.toggled > ul {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: var(--color-bg-primary);
	border-bottom: 1px solid var(--color-border-default);
	padding: var(--space-4) var(--container-padding);
	gap: var(--space-1);
}

.main-navigation.toggled ul ul {
	position: static;
	display: none;
	background: transparent;
	border: none;
	box-shadow: none;
	padding-left: var(--space-4);
}

.main-navigation.toggled ul li.focus > ul {
	display: block;
}

.main-navigation.toggled .menu-item-has-children > a,
.main-navigation.toggled .page_item_has_children > a {
	position: relative;
	padding-right: var(--space-8);
}

.main-navigation.toggled .menu-item-has-children > a::after,
.main-navigation.toggled .page_item_has_children > a::after {
	content: '';
	position: absolute;
	right: var(--space-3);
	top: 50%;
	width: 8px;
	height: 8px;
	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;
	transform: translateY(-75%) rotate(45deg);
	transition: transform var(--transition-fast);
	opacity: 0.6;
}

.main-navigation.toggled li.focus > a::after {
	transform: translateY(-25%) rotate(-135deg);
}

@media screen and (min-width: 48em) {
	.menu-toggle {
		display: none;
	}

	.main-navigation > ul {
		display: flex;
	}

	.main-navigation.toggled > ul {
		position: static;
		flex-direction: row;
		background: transparent;
		border: none;
		padding: 0;
		gap: var(--space-2);
	}
}

@media screen and (max-width: 47.99em) {
	.site-header__inner {
		display: flex;
		gap: var(--space-2);
	}

	.site-branding {
		margin-right: auto;
	}

	.site-header__actions {
		order: 1;
		gap: var(--space-1);
	}

	.main-navigation {
		order: 2;
	}

	.header-search-toggle {
		display: none;
	}

	.header-region {
		order: 1;
	}

	.header-cart {
		order: 2;
	}
}

/* Post/Page Navigation */
.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: var(--space-8) 0;
	padding: var(--space-6) 0;
	border-top: 1px solid var(--color-border-default);
}

.comment-navigation .nav-links,
.posts-navigation .nav-links,
.post-navigation .nav-links {
	display: flex;
	justify-content: space-between;
	gap: var(--space-4);
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	flex: 1;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	flex: 1;
	text-align: end;
}

/* Posts and pages
--------------------------------------------- */
.sticky {
	display: block;
}

.post,
.page {
	margin: 0 0 var(--space-8);
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: var(--space-6) 0 0;
}

.entry-title {
	margin-bottom: var(--space-4);
}

.entry-title a {
	color: var(--color-text-primary);
}

.entry-title a:hover {
	color: var(--color-accent-gold);
}

.entry-meta,
.entry-footer {
	color: var(--color-text-secondary);
	font-size: var(--text-sm);
}

.entry-meta a,
.entry-footer a {
	color: var(--color-text-secondary);
}

.entry-meta a:hover,
.entry-footer a:hover {
	color: var(--color-accent-gold);
}

.page-links {
	clear: both;
	margin: var(--space-6) 0;
}

/* Comments
--------------------------------------------- */
.comments-area {
	margin-top: var(--space-12);
	padding-top: var(--space-8);
	border-top: 1px solid var(--color-border-default);
}

.comments-title {
	margin-bottom: var(--space-8);
}

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

.comment-list .comment {
	margin-bottom: var(--space-6);
	padding: var(--space-6);
	background: var(--color-bg-secondary);
	border-radius: var(--radius-lg);
}

.comment-list .children {
	list-style: none;
	margin: var(--space-6) 0 0 var(--space-6);
	padding: 0;
}

.comment-author {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	margin-bottom: var(--space-3);
}

.comment-author .avatar {
	border-radius: var(--radius-full);
}

.comment-author .fn {
	font-weight: var(--font-semibold);
}

.comment-metadata {
	font-size: var(--text-sm);
	color: var(--color-text-tertiary);
	margin-bottom: var(--space-4);
}

.comment-content a {
	word-wrap: break-word;
}

.reply {
	margin-top: var(--space-4);
}

.reply a {
	font-size: var(--text-sm);
	font-weight: var(--font-medium);
}

.bypostauthor {
	display: block;
}

.comment-respond {
	margin-top: var(--space-8);
}

/* Widgets
--------------------------------------------- */
.widget {
	margin: 0 0 var(--space-8);
}

.widget-title {
	font-size: var(--text-lg);
	margin-bottom: var(--space-4);
}

.widget select {
	max-width: 100%;
}

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

.widget ul li {
	padding: var(--space-2) 0;
	border-bottom: 1px solid var(--color-border-subtle);
}

.widget ul li:last-child {
	border-bottom: none;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: var(--space-6);
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: var(--space-3) 0;
}

.wp-caption-text {
	text-align: center;
	color: var(--color-text-secondary);
	font-size: var(--text-sm);
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: var(--space-6);
	display: grid;
	grid-gap: var(--space-4);
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

.gallery-columns-2 {
	grid-template-columns: repeat(2, 1fr);
}

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
	color: var(--color-text-secondary);
	font-size: var(--text-sm);
	margin-top: var(--space-2);
}

/* Trust Strip — subtle reassurance row above the footer columns */
.site-trust {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--space-4) var(--space-8);
	list-style: none;
	margin: 0 0 var(--space-10);
	padding: 0 0 var(--space-8);
	border-bottom: 1px solid var(--color-border-subtle);
}

.site-trust__item {
	display: inline-flex;
	align-items: center;
	gap: var(--space-2);
	margin: 0;
	color: var(--color-text-secondary);
	font-size: var(--text-xs, 0.75rem);
	letter-spacing: var(--tracking-wider);
	text-transform: uppercase;
	white-space: nowrap;
}

.site-trust__icon {
	flex-shrink: 0;
	color: var(--color-accent-gold);
}

@media screen and (max-width: 47.9375em) {
	.site-trust {
		gap: var(--space-3);
		justify-content: flex-start;
	}

	.site-trust__item {
		flex: 1 1 calc(50% - var(--space-3));
		font-size: 0.6875rem;
		letter-spacing: 0.06em;
		white-space: normal;
	}
}

/* Footer
--------------------------------------------- */
.site-footer {
	background: var(--color-bg-secondary);
	border-top: 1px solid var(--color-border-subtle);
	margin-top: auto;
	padding: var(--space-12) 0 var(--space-8);
	position: relative;
	z-index: 1;
}

.site-footer__inner {
	max-width: var(--width-wide);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.site-footer__main {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-8);
	margin-bottom: var(--space-8);
}

/* Newsletter signup — full-width row between trust strip and footer columns.
   No top border: the trust strip above already has a bottom border. */
.site-newsletter {
	display: grid;
	gap: var(--space-6);
	grid-template-columns: 1fr;
	padding: var(--space-4) 0 var(--space-10);
	margin: 0 0 var(--space-10);
	border-bottom: 1px solid var(--color-border-subtle);
}

@media screen and (min-width: 48em) {
	.site-newsletter {
		grid-template-columns: 1fr 1.1fr;
		gap: var(--space-10);
		align-items: center;
	}
}

.site-newsletter__heading {
	margin: 0 0 var(--space-3);
	font-size: var(--text-2xl);
	font-weight: var(--font-light);
	letter-spacing: -0.01em;
	color: var(--color-text-primary);
}

.site-newsletter__sub {
	margin: 0;
	max-width: 42ch;
	font-size: var(--text-sm);
	line-height: 1.65;
	color: var(--color-text-secondary);
}

.site-newsletter__form {
	width: 100%;
	max-width: 480px;
}

.cinesigns-newsletter-form__row {
	display: flex;
	align-items: stretch;
	gap: 0;
	background: var(--color-bg-tertiary);
	border: 1px solid var(--color-border-default);
	border-radius: var(--radius-md);
	transition: border-color 0.2s ease;
	overflow: hidden;
}

.cinesigns-newsletter-form__row:focus-within {
	border-color: var(--color-accent-gold);
}

.cinesigns-newsletter-form__email {
	flex: 1;
	min-width: 0;
	padding: var(--space-3) var(--space-4);
	background: transparent;
	border: 0;
	color: var(--color-text-primary);
	font-family: inherit;
	font-size: var(--text-sm);
}

.cinesigns-newsletter-form__email:focus {
	outline: none;
}

.cinesigns-newsletter-form__email::placeholder {
	color: var(--color-text-tertiary);
}

.cinesigns-newsletter-form__submit {
	padding: var(--space-3) var(--space-5);
	background: var(--color-accent-gold);
	border: 0;
	color: var(--color-bg-primary);
	font-family: inherit;
	font-size: var(--text-xs);
	font-weight: var(--font-semibold);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.2s ease;
	white-space: nowrap;
}

.cinesigns-newsletter-form__submit:hover {
	background: var(--color-accent-gold-light);
}

.cinesigns-newsletter-form__submit:focus-visible {
	outline: 2px solid var(--color-accent-gold);
	outline-offset: 2px;
}

.cinesigns-newsletter-form__submit:disabled,
.cinesigns-newsletter-form__submit.is-loading {
	opacity: 0.7;
	cursor: wait;
}

.cinesigns-newsletter-form__honeypot {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.cinesigns-newsletter-form__fineprint {
	margin: var(--space-3) 0 0;
	font-size: var(--text-xs);
	line-height: 1.5;
	color: var(--color-text-tertiary);
}

.cinesigns-newsletter-form__fineprint a {
	color: var(--color-text-secondary);
	text-decoration: underline;
	text-decoration-color: rgba(255, 255, 255, 0.2);
}

.cinesigns-newsletter-form__fineprint a:hover {
	color: var(--color-accent-gold);
	text-decoration-color: var(--color-accent-gold);
}

.cinesigns-newsletter-form__feedback {
	margin: var(--space-3) 0 0;
	min-height: 1.4em;
	font-size: var(--text-sm);
	line-height: 1.5;
}

.cinesigns-newsletter-form__feedback.is-success {
	color: var(--color-success);
}

.cinesigns-newsletter-form__feedback.is-error {
	color: var(--color-error);
}

@media screen and (min-width: 48em) {
	.site-footer__main {
		grid-template-columns: 2fr 1fr 1fr 1fr;
	}
}

.site-footer__brand {
	max-width: 300px;
}

.site-footer__original {
	display: block;
	width: clamp(140px, 50%, 180px);
	height: auto;
	margin-top: var(--space-5);
	opacity: 0.85;
}

.site-footer__brand .site-title {
	margin-bottom: var(--space-4);
}

.site-footer__brand p {
	color: var(--color-text-secondary);
	font-size: var(--text-sm);
	margin-bottom: 0;
}

.site-footer__nav h4 {
	color: var(--color-text-primary);
	font-size: var(--text-sm);
	font-weight: var(--font-semibold);
	text-transform: uppercase;
	letter-spacing: var(--tracking-wider);
	margin-bottom: var(--space-4);
}

.site-footer__nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.site-footer__nav li {
	margin-bottom: var(--space-2);
}

.site-footer__nav a {
	color: var(--color-text-secondary);
	font-size: var(--text-sm);
}

.site-footer__nav a:hover {
	color: var(--color-accent-gold);
}

.site-footer__bottom {
	display: flex;
	flex-direction: column;
	gap: var(--space-4);
	padding-top: var(--space-8);
	border-top: 1px solid var(--color-border-subtle);
}

@media screen and (min-width: 48em) {
	.site-footer__bottom {
		flex-direction: row;
		justify-content: space-between;
		align-items: center;
	}
}

.site-footer__legal {
	color: var(--color-text-tertiary);
	font-size: var(--text-sm);
}

.site-footer__legal a {
	color: var(--color-text-tertiary);
}

.site-footer__legal a:hover {
	color: var(--color-accent-gold);
}

.site-footer__lang {
	font-size: var(--text-sm);
}

.site-footer__lang ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2) var(--space-3);
}

.site-footer__lang li {
	margin: 0;
}

.site-footer__lang a {
	color: var(--color-text-tertiary);
	text-transform: uppercase;
	letter-spacing: var(--tracking-wider);
	font-size: var(--text-xs, 0.75rem);
	padding: var(--space-1) var(--space-2);
	border: 1px solid transparent;
	border-radius: var(--radius-sm, 4px);
	transition: color var(--transition-fast), border-color var(--transition-fast);
}

.site-footer__lang a:hover {
	color: var(--color-accent-gold);
}

.site-footer__lang .current-lang a,
.site-footer__lang .lang-item-de.current-lang a,
.site-footer__lang li.current-lang a {
	color: var(--color-text-primary);
	border-color: var(--color-border-subtle);
}

.site-footer__payments {
	display: flex;
	align-items: center;
	gap: var(--space-3);
}

.site-footer__payments img {
	height: 24px;
	width: auto;
	opacity: 0.6;
	transition: opacity var(--transition-fast);
}

/* The simpleicons brand marks have more transparent padding inside their
   24x24 canvas than Klarna and Amazon Pay do — bump them up so visual
   presence matches. */
.site-footer__payments img[src$="visa.svg"],
.site-footer__payments img[src$="mastercard.svg"] {
	height: 40px;
}

.site-footer__payments img[src$="applepay.svg"],
.site-footer__payments img[src$="googlepay.svg"] {
	height: 40px;
}

.site-footer__payments img:hover {
	opacity: 1;
}

/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

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

.screen-reader-text:focus {
	background-color: var(--color-bg-elevated);
	border-radius: var(--radius-md);
	box-shadow: var(--shadow-lg);
	clip: auto !important;
	clip-path: none;
	color: var(--color-accent-gold);
	display: block;
	font-size: var(--text-sm);
	font-weight: var(--font-semibold);
	height: auto;
	left: var(--space-2);
	line-height: normal;
	padding: var(--space-4) var(--space-6);
	text-decoration: none;
	top: var(--space-2);
	width: auto;
	z-index: 100000;
}

#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {
	float: left;
	margin-right: var(--space-6);
	margin-bottom: var(--space-6);
}

.alignright {
	float: right;
	margin-left: var(--space-6);
	margin-bottom: var(--space-6);
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: var(--space-6);
}

/* Containers
--------------------------------------------- */
.container {
	max-width: var(--width-wide);
	margin: 0 auto;
	padding: 0 var(--container-padding);
}

.container--narrow {
	max-width: var(--width-narrow);
}

.container--wide {
	max-width: var(--width-wide);
}

/* Section spacing */
.section {
	padding-top: var(--space-16);
	padding-bottom: var(--space-16);
}

.section--sm {
	padding-top: var(--space-8);
	padding-bottom: var(--space-8);
}

.section--lg {
	padding-top: var(--space-24);
	padding-bottom: var(--space-24);
}

/* Text utilities */
.text-center {
	text-align: center;
}

.text-gold {
	color: var(--color-accent-gold);
}

.text-muted {
	color: var(--color-text-secondary);
}

/* Background utilities */
.bg-secondary {
	background: var(--color-bg-secondary);
}

.bg-tertiary {
	background: var(--color-bg-tertiary);
}

/*--------------------------------------------------------------
# Homepage Components
--------------------------------------------------------------*/

/* Hero Section */
.hero {
	display: flex;
	align-items: center;
	min-height: calc(70vh - 80px);
	padding: var(--space-10) var(--container-padding);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	position: relative;
	overflow: hidden;
	isolation: isolate;
}

@media screen and (min-width: 48em) {
	.hero {
		min-height: max(640px, calc(70vh - 80px));
		padding: var(--space-16) var(--container-padding);
	}
}

.hero__poster {
	position: absolute;
	inset: 0;
	z-index: -1;
}

.hero__poster img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.hero__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	z-index: -1;
}

@media screen and (max-width: 47.99em) {
	.hero__poster img,
	.hero__video {
		object-position: 80% center;
	}
}

.hero::before {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(to right, var(--color-bg-primary) 0%, transparent 25%);
	pointer-events: none;
}

@media screen and (max-width: 47.99em) {
	.hero::before {
		background: linear-gradient(to right, var(--color-bg-primary) 0%, rgba(10, 10, 10, 0.55) 35%, transparent 65%);
	}
}

.hero::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 55%, rgba(10, 10, 10, 0.55) 80%, var(--color-bg-primary) 100%);
	pointer-events: none;
}

.hero > .container {
	width: 100%;
	display: flex;
	justify-content: flex-start;
}

.hero__content {
	position: relative;
	z-index: 1;
	max-width: 500px;
}

.hero__original {
	display: block;
	width: 160px;
	height: auto;
	margin: var(--space-8) 0 0 0;
}

.hero__title {
	font-size: var(--text-4xl);
	font-weight: var(--font-bold);
	line-height: 0.95;
	margin-bottom: var(--space-6);
}

.hero__subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	margin-bottom: var(--space-8);
	line-height: var(--leading-relaxed);
}

.hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-2);
	background: transparent;
	border: 1px solid var(--color-accent-gold);
	border-radius: var(--radius-md);
	color: var(--color-accent-gold);
	cursor: pointer;
	font-size: var(--text-sm);
	font-weight: var(--font-medium);
	letter-spacing: var(--tracking-wide);
	line-height: 1;
	padding: var(--space-4) var(--space-8);
	text-decoration: none;
	text-transform: uppercase;
	transition: all var(--transition-base);
}

.btn:hover {
	background: var(--color-accent-gold);
	color: var(--color-text-inverse);
}

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

.btn-primary {
	background: var(--color-accent-gold);
	color: #0a0a0a;
}

.btn-primary:hover {
	background: var(--color-accent-gold-light);
	border-color: var(--color-accent-gold-light);
	color: #0a0a0a;
}

.btn-secondary {
	background: transparent;
	border-color: var(--color-border-strong);
	color: var(--color-text-primary);
}

.btn-secondary:hover {
	background: var(--color-bg-secondary);
	border-color: var(--color-text-primary);
}

.btn-lg {
	padding: var(--space-5) var(--space-10);
	font-size: var(--text-base);
}

.hero__cta {
	padding-left: var(--space-16);
	padding-right: var(--space-16);
}

/* 404 Error Page
--------------------------------------------- */
.error-404 {
	display: block;
}

.error-404__media {
	width: 100%;
	margin: 0;
	line-height: 0;
	background: var(--color-bg-primary);
	position: relative;
	isolation: isolate;
}

.error-404__media::after {
	content: '';
	position: absolute;
	inset: auto 0 0 0;
	height: 55%;
	background: linear-gradient(180deg, transparent 0%, rgba(10, 10, 10, 0.65) 55%, var(--color-bg-primary) 100%);
	pointer-events: none;
}

.error-404__media img {
	width: 100%;
	height: auto;
	display: block;
	aspect-ratio: 2000 / 857;
	object-fit: cover;
}

.error-404__content {
	text-align: center;
	padding-top: var(--space-6);
	padding-bottom: var(--space-16);
	position: relative;
	margin-top: clamp(-220px, -14vw, -60px);
	z-index: 1;
}

.error-404__header {
	margin-bottom: var(--space-8);
}

.error-404__title {
	font-size: var(--text-4xl);
	font-weight: var(--font-bold);
	line-height: 1.05;
	margin: 0 0 var(--space-4);
}

.error-404__subtitle {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	line-height: var(--leading-relaxed);
	max-width: 560px;
	margin: 0 auto;
}

.error-404__actions {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-4);
	justify-content: center;
}

@media (min-width: 48em) {
	.error-404__content {
		padding-top: var(--space-8);
		padding-bottom: var(--space-20);
		margin-top: clamp(-260px, -11vw, -100px);
	}
}

/* Section Headers */
.section__header {
	margin-bottom: var(--space-12);
}

.section__title {
	margin-bottom: var(--space-4);
}

.section__subtitle {
	font-size: var(--text-lg);
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.section__cta {
	margin-top: var(--space-12);
}

/* Trust Bar — aggregate review stats under hero */
.trust-bar {
	padding: var(--space-5) 0;
	background: var(--color-bg-primary);
	border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-bar__inner {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-3);
	flex-wrap: wrap;
	line-height: 1.4;
	font-size: 0.95em;
	color: rgba(255, 255, 255, 0.7);
}

.trust-bar__avg {
	font-size: 1.15em;
	font-weight: 600;
	color: var(--color-accent-gold, #c9a962);
	font-variant-numeric: tabular-nums;
}

.trust-bar .star-rating {
	--star-size: 18px;
	margin: 0;
}

.trust-bar__count strong {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
}

/* Featured Products — same WC grid as the shop, served inside the section's container. */
.featured-products {
	background: var(--color-bg-primary);
}

/* Product Grid */
.product-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: var(--space-3);
	row-gap: var(--space-8);
	list-style: none;
	margin: 0;
	padding: 0;
}

@media screen and (min-width: 37.5em) {
	.product-grid {
		column-gap: var(--space-6);
		row-gap: var(--space-12);
	}
}

@media screen and (min-width: 64em) {
	.product-grid--4 {
		grid-template-columns: repeat(4, 1fr);
	}

	.product-grid--3 {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* Brand Story */
.brand-story__text {
	font-size: var(--text-lg);
	line-height: var(--leading-relaxed);
	color: var(--color-text-secondary);
	margin-bottom: var(--space-12);
}

/* Features Grid */
.features-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-8);
	margin-top: var(--space-12);
}

@media screen and (min-width: 48em) {
	.features-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.feature {
	text-align: center;
}

.feature__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	margin-bottom: var(--space-4);
	color: var(--color-accent-gold);
}

.feature__title {
	font-size: var(--text-lg);
	margin-bottom: var(--space-2);
}

.feature__text {
	color: var(--color-text-secondary);
	font-size: var(--text-sm);
	margin-bottom: 0;
}

/* Brands Showcase */
.brands-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: var(--space-4);
}

@media screen and (min-width: 37.5em) {
	.brands-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

@media screen and (min-width: 48em) {
	.brands-grid {
		grid-template-columns: repeat(4, 1fr);
	}
}

@media screen and (min-width: 64em) {
	.brands-grid {
		grid-template-columns: repeat(6, 1fr);
	}
}

.brand-item {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: var(--space-6) var(--space-4);
	background: var(--color-bg-secondary);
	border: 1px solid var(--color-border-subtle);
	border-radius: var(--radius-lg);
	transition: border-color var(--transition-fast);
}

.brand-item:hover {
	border-color: var(--color-border-default);
}

.brand-item__name {
	color: var(--color-text-secondary);
	font-size: var(--text-sm);
	font-weight: var(--font-medium);
	text-align: center;
}

.brands-note {
	margin-top: var(--space-8);
	font-size: var(--text-sm);
}

/* CTA Section */
.cta-section {
	background: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
}

.cta-section__text {
	font-size: var(--text-lg);
	margin-bottom: var(--space-8);
}

/*--------------------------------------------------------------
# Contact Page
--------------------------------------------------------------*/
.contact-hero {
	position: relative;
	padding: var(--space-16) 0 var(--space-10);
	min-height: clamp(260px, 38vh, 400px);
	display: flex;
	align-items: center;
	background-color: var(--color-bg-primary);
	background-image:
		linear-gradient(180deg, rgba(10, 10, 10, 0.30) 0%, rgba(10, 10, 10, 0.55) 55%, rgba(10, 10, 10, 0.95) 90%, var(--color-bg-primary) 100%),
		image-set(
			url('img/contact-hero.avif') type('image/avif'),
			url('img/contact-hero.webp') type('image/webp'),
			url('img/contact-hero.jpg') type('image/jpeg')
		);
	background-size: 100% 100%, cover;
	background-position: center, center 65%;
	background-repeat: no-repeat;
	overflow: hidden;
}

@media screen and (min-width: 48em) {
	.contact-hero {
		padding: var(--space-20) 0 var(--space-12);
		min-height: clamp(320px, 44vh, 460px);
	}
}

.contact-page .page-content {
	padding-top: 0;
	margin-top: calc(var(--space-12) * -1);
	position: relative;
	z-index: 2;
}

.contact-hero .container {
	width: 100%;
	position: relative;
	z-index: 1;
}

.contact-hero__inner {
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

.contact-hero__eyebrow {
	color: var(--color-accent-gold);
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: var(--tracking-widest, 0.15em);
	margin-bottom: var(--space-4);
	font-weight: var(--font-medium);
}

.contact-hero__title {
	font-size: clamp(2rem, 1.5rem + 3vw, 3.75rem);
	line-height: 1.05;
	margin-bottom: var(--space-6);
	letter-spacing: -0.02em;
}

.contact-hero__lead {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	line-height: var(--leading-relaxed);
	max-width: 600px;
	margin: 0 auto;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-8);
}

@media screen and (min-width: 48em) {
	.contact-grid {
		grid-template-columns: 1fr 350px;
	}
}

.contact-form {
	background: var(--color-bg-secondary);
	border-radius: var(--radius-xl);
	padding: var(--space-8);
}

.contact-form h2,
.contact-form h3 {
	margin-bottom: var(--space-6);
}

.contact-info__card {
	background: var(--color-bg-secondary);
	border-radius: var(--radius-xl);
	padding: var(--space-8);
	position: sticky;
	top: calc(80px + var(--space-6));
}

.contact-info__card h3 {
	margin-bottom: var(--space-6);
}

.contact-info__item {
	display: flex;
	gap: var(--space-4);
	margin-bottom: var(--space-6);
}

.contact-info__item:last-child {
	margin-bottom: 0;
}

.contact-info__item svg {
	flex-shrink: 0;
	color: var(--color-accent-gold);
	margin-top: 2px;
}

.contact-info__item > div {
	display: flex;
	flex-direction: column;
}

.contact-info__label {
	font-size: var(--text-xs);
	color: var(--color-text-tertiary);
	text-transform: uppercase;
	letter-spacing: var(--tracking-wide);
	margin-bottom: var(--space-1);
}

.contact-info__item a,
.contact-info__item span:not(.contact-info__label) {
	color: var(--color-text-primary);
}

.contact-info__item a:hover {
	color: var(--color-accent-gold);
}

.cs-contact-form__alert {
	padding: var(--space-4) var(--space-5);
	border-radius: var(--radius-md);
	margin-bottom: var(--space-6);
	font-size: var(--text-sm);
	border: 1px solid transparent;
}

.cs-contact-form__alert--success {
	background: rgba(201, 169, 98, 0.08);
	border-color: rgba(201, 169, 98, 0.35);
	color: var(--color-accent-gold-light);
}

.cs-contact-form__alert--error {
	background: rgba(220, 60, 60, 0.08);
	border-color: rgba(220, 60, 60, 0.35);
	color: #f4a8a8;
}

.cs-contact-form__row {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-4);
	margin-bottom: var(--space-5);
}

@media screen and (min-width: 36em) {
	.cs-contact-form__row--two {
		grid-template-columns: 1fr 1fr;
	}
}

.cs-contact-form__field {
	margin-bottom: var(--space-5);
}

.cs-contact-form__row .cs-contact-form__field {
	margin-bottom: 0;
}

.cs-contact-form__field label span[aria-hidden="true"] {
	color: var(--color-accent-gold);
	margin-left: 2px;
}

.cs-contact-form__field input[aria-invalid="true"],
.cs-contact-form__field textarea[aria-invalid="true"] {
	border-color: rgba(220, 60, 60, 0.6);
}

.cs-contact-form__error {
	margin: var(--space-2) 0 0;
	color: #f4a8a8;
	font-size: var(--text-xs);
}

.cs-contact-form__field--consent {
	margin-top: var(--space-2);
}

.cs-contact-form__consent {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
	color: var(--color-text-secondary);
	font-size: var(--text-sm);
	line-height: var(--leading-relaxed);
	cursor: pointer;
	font-weight: var(--font-normal);
	margin-bottom: 0;
}

.cs-contact-form__consent input[type="checkbox"] {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin-top: 3px;
	accent-color: var(--color-accent-gold);
	cursor: pointer;
}

.cs-contact-form__consent input[type="checkbox"]:focus-visible {
	outline: 2px solid var(--color-accent-gold);
	outline-offset: 2px;
	border-radius: 2px;
}

.cs-contact-form__consent a {
	color: var(--color-accent-gold);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.cs-contact-form__consent a:hover {
	color: var(--color-accent-gold-light);
}

.cs-contact-form__required {
	color: var(--color-accent-gold);
	margin-left: 2px;
}

.cs-contact-form__field--consent[aria-invalid] .cs-contact-form__consent,
.cs-contact-form__field--consent input[aria-invalid="true"] + span {
	color: var(--color-text-primary);
}

.cs-contact-form__honeypot {
	position: absolute;
	left: -10000px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.cs-contact-form__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: var(--space-4);
	margin-top: var(--space-2);
}

.cs-contact-form__note {
	margin: 0;
	color: var(--color-text-tertiary);
	font-size: var(--text-xs);
}

/*--------------------------------------------------------------
# Legal Page
--------------------------------------------------------------*/
.legal-page .page-header {
	text-align: center;
	padding-bottom: 0;
}

.legal-page .page-title {
	margin-bottom: var(--space-3);
}

.legal-content {
	background: var(--color-bg-secondary);
	border-radius: var(--radius-xl);
	padding: var(--space-8);
}

@media screen and (min-width: 48em) {
	.legal-content {
		padding: var(--space-12);
	}
}

.legal-content h2 {
	font-size: var(--text-xl);
	margin-top: var(--space-10);
	margin-bottom: var(--space-4);
	padding-top: var(--space-6);
	border-top: 1px solid var(--color-border-subtle);
}

.legal-content h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

.legal-content h3 {
	font-size: var(--text-lg);
	margin-top: var(--space-6);
	margin-bottom: var(--space-3);
}

.legal-content p,
.legal-content ul,
.legal-content ol {
	color: var(--color-text-secondary);
	line-height: var(--leading-relaxed);
	font-size: var(--text-sm);
}

.legal-content a {
	text-decoration: underline;
	text-underline-offset: 2px;
}

.legal-content ul,
.legal-content ol {
	margin-left: var(--space-6);
}

.legal-content .wp-block-columns {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-10);
}

@media screen and (min-width: 48em) {
	.legal-content .wp-block-columns {
		grid-template-columns: 1fr 1fr;
		gap: var(--space-12);
	}
}

.legal-content .wp-block-column > h2:first-child {
	margin-top: 0;
	padding-top: 0;
	border-top: none;
}

/*--------------------------------------------------------------
# About Page
--------------------------------------------------------------*/
.about-hero {
	position: relative;
	padding: var(--space-16) 0 var(--space-10);
	min-height: clamp(260px, 38vh, 400px);
	display: flex;
	align-items: center;
	background-color: var(--color-bg-primary);
	background-image:
		linear-gradient(180deg, rgba(10, 10, 10, 0.22) 0%, rgba(10, 10, 10, 0.45) 50%, rgba(10, 10, 10, 0.92) 88%, var(--color-bg-primary) 100%),
		image-set(
			url('img/about-hero.avif') type('image/avif'),
			url('img/about-hero.webp') type('image/webp'),
			url('img/about-hero.jpg') type('image/jpeg')
		);
	background-size: 100% 100%, cover;
	background-position: center, center center;
	background-repeat: no-repeat;
	overflow: hidden;
}

@media screen and (min-width: 48em) {
	.about-hero {
		padding: var(--space-20) 0 var(--space-12);
		min-height: clamp(320px, 44vh, 460px);
		background-size: 100% 100%, 130% auto;
		background-position: center, center 50%;
	}
}

.about-hero .container {
	width: 100%;
	position: relative;
	z-index: 1;
}

.about-hero__inner {
	max-width: 860px;
	margin: 0 auto;
	text-align: center;
}

.about-hero__eyebrow {
	color: var(--color-accent-gold);
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: var(--tracking-widest, 0.15em);
	margin-bottom: var(--space-4);
	font-weight: var(--font-medium);
}

.about-hero__title {
	font-size: clamp(2rem, 1.5rem + 3vw, 3.75rem);
	line-height: 1.05;
	margin-bottom: var(--space-6);
	letter-spacing: -0.02em;
}

.about-hero__lead {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	line-height: var(--leading-relaxed);
	max-width: 640px;
	margin: 0 auto;
}

.about-story {
	position: relative;
	padding-top: clamp(var(--space-16), 4rem + 6vw, 10rem);
	padding-bottom: clamp(var(--space-16), 4rem + 6vw, 10rem);
	background-color: var(--color-bg-primary);
	background-image:
		linear-gradient(180deg, var(--color-bg-primary) 0%, transparent 14%, transparent 86%, var(--color-bg-primary) 100%),
		linear-gradient(90deg, rgba(10, 10, 10, 0.45) 0%, rgba(10, 10, 10, 0.78) 50%, rgba(10, 10, 10, 0.94) 72%, var(--color-bg-primary) 100%),
		image-set(
			url('img/packaging.avif') type('image/avif'),
			url('img/packaging.webp') type('image/webp'),
			url('img/packaging.jpg') type('image/jpeg')
		);
	background-size: 100% 100%, 100% 100%, cover;
	background-position: center, center, left center;
	background-repeat: no-repeat;
	overflow: hidden;
}

.about-story .container {
	position: relative;
	z-index: 1;
}

.about-story__copy {
	text-align: left;
	max-width: 720px;
	margin: 0 auto;
}

.about-story__rating {
	display: flex;
	align-items: center;
	gap: var(--space-3);
	flex-wrap: wrap;
	margin-top: var(--space-6);
	margin-bottom: 0;
	font-size: 0.95em;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.7);
}

.about-story__rating-avg {
	font-size: 1.1em;
	font-weight: 600;
	color: var(--color-accent-gold, #c9a962);
	font-variant-numeric: tabular-nums;
}

.about-story__rating .star-rating {
	margin: 0;
}

.about-story__rating-count strong {
	color: rgba(255, 255, 255, 0.95);
	font-weight: 600;
}

.about-story__cta {
	margin-top: var(--space-6);
	margin-bottom: 0;
}

@media screen and (min-width: 64em) {
	.about-story .container--narrow {
		max-width: var(--width-wide);
	}

	.about-story__copy {
		max-width: 560px;
		margin: 0 0 0 auto;
	}
}

.about-story__copy h2 {
	font-size: clamp(1.75rem, 1.25rem + 1.5vw, 2.5rem);
	margin-bottom: var(--space-6);
	letter-spacing: -0.01em;
}

.about-story__copy p {
	color: var(--color-text-secondary);
	line-height: var(--leading-relaxed);
	margin-bottom: var(--space-4);
}

.about-values__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-8);
}

@media screen and (min-width: 48em) {
	.about-values__grid {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--space-10);
	}
}

.about-values__item {
	padding: var(--space-8);
	background: var(--color-bg-secondary);
	border-radius: var(--radius-xl);
	border: 1px solid var(--color-border-subtle);
}

.about-values__item h3 {
	font-size: var(--text-xl);
	margin-bottom: var(--space-3);
	color: var(--color-text-primary);
}

.about-values__item p {
	color: var(--color-text-secondary);
	line-height: var(--leading-relaxed);
	margin: 0;
}

.about-original {
	padding-top: var(--space-10);
	padding-bottom: var(--space-10);
	border-top: 1px solid var(--color-border-subtle);
}

.about-original__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-5);
	align-items: center;
	justify-items: center;
	max-width: 760px;
	margin: 0 auto;
	text-align: center;
}

@media screen and (min-width: 48em) {
	.about-original__inner {
		grid-template-columns: minmax(160px, 220px) 1fr;
		gap: var(--space-8);
		justify-items: start;
		text-align: left;
	}
}

.about-original__badge {
	display: block;
	width: 100%;
	max-width: 220px;
	height: auto;
	opacity: 0.9;
}

.about-original__text h3 {
	font-size: var(--text-lg);
	margin: 0 0 var(--space-2);
	letter-spacing: -0.005em;
	color: var(--color-text-primary);
}

.about-original__text p {
	color: var(--color-text-secondary);
	font-size: var(--text-sm);
	line-height: var(--leading-relaxed);
	margin: 0;
}

.about-cta {
	background: var(--color-bg-secondary);
	border-top: 1px solid var(--color-border-subtle);
}

.about-cta h2 {
	font-size: clamp(1.75rem, 1.25rem + 1.5vw, 2.5rem);
	margin-bottom: var(--space-4);
}

.about-cta p {
	color: var(--color-text-secondary);
	margin-bottom: var(--space-8);
}

/*--------------------------------------------------------------
# Inspiration / Gallery Page
--------------------------------------------------------------*/
.inspiration-hero {
	position: relative;
	padding: var(--space-6) 0 var(--space-10);
	min-height: clamp(260px, 38vh, 420px);
	display: flex;
	align-items: center;
	background-color: var(--color-bg-primary);
	background-image:
		radial-gradient(ellipse 75% 65% at center 48%, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0) 80%),
		linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.72) 50%, rgba(10, 10, 10, 0.92) 88%, var(--color-bg-primary) 100%),
		image-set(
			url('img/inspiration-hero.avif') type('image/avif'),
			url('img/inspiration-hero.webp') type('image/webp'),
			url('img/inspiration-hero.jpg') type('image/jpeg')
		);
	background-size: 100% 100%, 100% 100%, cover;
	background-position: center, center, center 50%;
	background-repeat: no-repeat;
	overflow: hidden;
}

@media screen and (min-width: 48em) {
	.inspiration-hero {
		padding: var(--space-10) 0 var(--space-12);
		min-height: clamp(340px, 48vh, 500px);
	}
}

.inspiration-hero .container {
	width: 100%;
	position: relative;
	z-index: 1;
}

.inspiration-hero__eyebrow {
	color: var(--color-accent-gold);
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: var(--tracking-widest, 0.15em);
	margin-bottom: var(--space-4);
	font-weight: var(--font-medium);
}

.inspiration-hero__title {
	font-size: clamp(2rem, 1.5rem + 3vw, 3.75rem);
	line-height: 1.05;
	margin-bottom: var(--space-6);
	letter-spacing: -0.02em;
}

.inspiration-hero__lead {
	font-size: var(--text-lg);
	color: var(--color-text-secondary);
	line-height: var(--leading-relaxed);
	max-width: 640px;
	margin: 0 auto;
}

/* Inspiration full-bleed masonry */
.inspiration-page {
	position: relative;
}

.inspiration-masonry {
	padding: var(--space-3);
}

@media screen and (min-width: 48em) {
	.inspiration-masonry {
		padding: var(--space-6) var(--space-4) var(--space-12);
	}
}

.masonry {
	display: flex;
	align-items: flex-start;
	gap: var(--space-3);
}

.masonry__col {
	flex: 1 1 0;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-3);
}

@media screen and (min-width: 64em) {
	.masonry,
	.masonry__col {
		gap: var(--space-4);
	}
}

.masonry__item {
	margin: 0;
	padding: 0;
	border-radius: var(--radius-md);
	overflow: hidden;
	background: var(--color-bg-secondary);
	position: relative;
}

.masonry__link {
	display: block;
	cursor: zoom-in;
}

.masonry__img {
	display: block;
	width: 100%;
	height: auto;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
	filter: brightness(0.92);
}

.masonry__item:hover .masonry__img {
	transform: scale(1.04);
	filter: brightness(1);
}

.masonry__item::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 65%, rgba(0, 0, 0, 0.45) 100%);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}

.masonry__item:hover::after {
	opacity: 1;
}

/*--------------------------------------------------------------
# Round flat country flags (Lipis flag-icons, .fis squared base)
--------------------------------------------------------------*/
.cs-flag.fi {
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	border-radius: 50%;
	background-size: cover;
	background-position: center;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.1);
	vertical-align: -0.2em;
	line-height: 0;
}

.cs-flag.fi::before {
	content: none;
}

/*--------------------------------------------------------------
# Inspiration stats band (worldwide reach)
--------------------------------------------------------------*/
.inspiration-stats {
	margin-top: var(--space-10);
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: var(--space-5);
}

.inspiration-stats__label {
	font-size: var(--text-sm);
	text-transform: uppercase;
	letter-spacing: var(--tracking-widest, 0.15em);
	color: var(--color-text-secondary);
	margin: 0;
	font-weight: var(--font-medium);
}

.inspiration-stats__label strong {
	color: var(--color-accent-gold);
	font-weight: var(--font-semibold);
}

.inspiration-stats__flags {
	/* Mobile: wrap to multiple rows so all flags are visible without scroll. */
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px clamp(10px, 1.2vw, 14px);
	max-width: 100%;
	padding: 0 var(--space-3);
}

@media screen and (min-width: 48em) {
	.inspiration-stats__flags {
		/* Tablet/Desktop: single row, break out of the narrow container.
		   align-items:center on the parent handles horizontal centering. */
		flex-wrap: nowrap;
		gap: clamp(8px, 1vw, 14px);
		width: 100vw;
		overflow-x: auto;
		scrollbar-width: none;
		padding: 0 var(--space-6);
	}

	.inspiration-stats__flags::-webkit-scrollbar {
		display: none;
	}
}

.inspiration-stats__flag {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	opacity: 0.8;
}

.inspiration-stats__flag .cs-flag {
	width: clamp(14px, 1.4vw + 6px, 22px);
	height: clamp(14px, 1.4vw + 6px, 22px);
}

/*--------------------------------------------------------------
# Masonry tile country chip
--------------------------------------------------------------*/
.masonry__flag {
	position: absolute;
	top: var(--space-3);
	right: var(--space-3);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 2;
	pointer-events: none;
	opacity: 0;
	transform: translateY(-4px);
	transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.45));
}

.masonry__item .masonry__flag {
	opacity: 1;
	transform: translateY(0);
}

.masonry__flag .cs-flag {
	width: 28px;
	height: 28px;
	box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.6);
}

/*--------------------------------------------------------------
# Lightbox (minimal, used by inspiration gallery)
--------------------------------------------------------------*/
html.cs-lightbox-open,
html.cs-lightbox-open body {
	overflow: hidden;
}

.cs-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(8, 8, 10, 0.96);
	-webkit-backdrop-filter: blur(24px) saturate(120%);
	backdrop-filter: blur(24px) saturate(120%);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.35s ease;
}

.cs-lightbox.is-open {
	opacity: 1;
	pointer-events: auto;
}

.cs-lightbox__stage {
	position: relative;
	margin: 0;
	max-width: 80vw;
	max-height: 80vh;
	display: flex;
	align-items: center;
	justify-content: center;
	transform: scale(0.96);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.cs-lightbox.is-open .cs-lightbox__stage {
	transform: scale(1);
}

.cs-lightbox__img {
	display: block;
	max-width: 80vw;
	max-height: 80vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border-radius: var(--radius-md);
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
	transition: opacity 0.18s ease;
}

.cs-lightbox__img.is-swapping {
	opacity: 0;
}

.cs-lightbox__close,
.cs-lightbox__nav {
	position: fixed;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	background: rgba(0, 0, 0, 0.5);
	-webkit-backdrop-filter: blur(8px);
	backdrop-filter: blur(8px);
	border: 1px solid rgba(255, 255, 255, 0.35);
	border-radius: 50%;
	color: #ffffff;
	cursor: pointer;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.45);
	z-index: 10000;
	transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.cs-lightbox__close:hover,
.cs-lightbox__nav:hover {
	background: rgba(255, 255, 255, 0.16);
	border-color: rgba(255, 255, 255, 0.55);
}

.cs-lightbox__close:focus-visible,
.cs-lightbox__nav:focus-visible {
	outline: 2px solid var(--color-accent-gold);
	outline-offset: 2px;
}

.cs-lightbox__close {
	top: clamp(var(--space-4), 3vw, var(--space-8));
	right: clamp(var(--space-4), 3vw, var(--space-8));
}

.cs-lightbox__nav {
	top: 50%;
	transform: translateY(-50%);
}

.cs-lightbox__nav--prev {
	left: clamp(var(--space-3), 3vw, var(--space-8));
}

.cs-lightbox__nav--next {
	right: clamp(var(--space-3), 3vw, var(--space-8));
}

.cs-lightbox__nav:hover {
	transform: translateY(-50%) scale(1.05);
}

@media screen and (max-width: 32em) {
	.cs-lightbox__nav {
		width: 38px;
		height: 38px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.cs-lightbox,
	.cs-lightbox__stage,
	.cs-lightbox__img,
	.cs-lightbox__close,
	.cs-lightbox__nav {
		transition: none;
	}
}

/*--------------------------------------------------------------
# Reveal Animations (GSAP / Lenis)
--------------------------------------------------------------*/
/* Pre-hide above-the-fold hero elements so GSAP can fade them in without
   a flash. Only applies when JS is active (`.cs-js` is set inline in <head>);
   no-JS and reduced-motion visitors keep full visibility. */
.cs-js .hero__title,
.cs-js .hero__subtitle,
.cs-js .hero__actions,
.cs-js .inspiration-hero__eyebrow,
.cs-js .inspiration-hero__title,
.cs-js .inspiration-hero__lead,
.cs-js .about-hero__eyebrow,
.cs-js .about-hero__title,
.cs-js .about-hero__lead,
.cs-js .contact-hero__eyebrow,
.cs-js .contact-hero__title,
.cs-js .contact-hero__lead,
.cs-js .shop-hero__eyebrow,
.cs-js .shop-hero__title,
.cs-js .shop-hero__description,
.cs-js .section__header,
.cs-js .features-grid .feature,
.cs-js .brands-grid .brand-item,
.cs-js .cta-section .container,
.cs-js .brand-story .container,
.cs-js ul.products li.product,
.cs-js .single-product div.product .summary,
.cs-js .single-product div.product .woocommerce-product-gallery,
.cs-js .single-product div.product > .onsale,
.cs-js .single-product .product-main > .onsale,
.cs-js .single-product .product-description-inline,
.cs-js .about-story__copy h2,
.cs-js .about-story__copy h3,
.cs-js .about-story__copy p,
.cs-js .about-values__grid .about-values__item,
.cs-js .about-cta .container,
.cs-js .contact-grid .contact-form,
.cs-js .contact-grid .contact-info,
.cs-js .masonry .masonry__item,
.cs-js .page-header,
.cs-js .entry-header {
	opacity: 0;
	will-change: opacity, transform;
}

/* Hero title is split into per-line mask wrappers by animations.js so each
   line can rise like an opening title card. */
.cs-js .hero__title-line {
	display: block;
	overflow: hidden;
	padding-bottom: 0.2em;
}

.cs-js .hero__title-line-inner {
	display: block;
	will-change: transform;
}

/* Lenis smooth-scroll: lock scroll-behavior so Lenis owns the scroll. */
html.lenis,
html.lenis body {
	height: auto;
}

.lenis.lenis-smooth {
	scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
	overscroll-behavior: contain;
}

.lenis.lenis-stopped {
	overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
	.cs-js .hero__title,
	.cs-js .hero__subtitle,
	.cs-js .hero__actions,
	.cs-js .inspiration-hero__eyebrow,
	.cs-js .inspiration-hero__title,
	.cs-js .inspiration-hero__lead,
	.cs-js .about-hero__eyebrow,
	.cs-js .about-hero__title,
	.cs-js .about-hero__lead,
	.cs-js .contact-hero__eyebrow,
	.cs-js .contact-hero__title,
	.cs-js .contact-hero__lead,
	.cs-js .shop-hero__eyebrow,
	.cs-js .shop-hero__title,
	.cs-js .shop-hero__description,
	.cs-js .section__header,
	.cs-js .features-grid .feature,
	.cs-js .brands-grid .brand-item,
	.cs-js .cta-section .container,
	.cs-js .brand-story .container,
	.cs-js ul.products li.product,
	.cs-js .single-product div.product .summary,
	.cs-js .single-product div.product .woocommerce-product-gallery,
	.cs-js .single-product .product-description-inline,
	.cs-js .about-story__copy h2,
	.cs-js .about-story__copy h3,
	.cs-js .about-story__copy p,
	.cs-js .about-values__grid .about-values__item,
	.cs-js .about-cta .container,
	.cs-js .contact-grid .contact-form,
	.cs-js .contact-grid .contact-info,
	.cs-js .masonry .masonry__item,
	.cs-js .page-header,
	.cs-js .entry-header {
		opacity: 1;
		transform: none;
		will-change: auto;
	}
}

/*--------------------------------------------------------------
# Header Search (FiboSearch overlay)
--------------------------------------------------------------*/
.header-search-toggle {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: var(--color-text-secondary);
	background: transparent;
	border: 0;
	border-radius: var(--radius-sm);
	cursor: pointer;
	transition: color var(--transition-base), background var(--transition-base);
}

.header-search-toggle:hover {
	color: var(--color-text-primary);
	background: rgba(201, 169, 98, 0.06);
}

.header-search-toggle:focus { outline: none; }

.header-search-toggle:focus-visible {
	outline: 2px solid var(--color-accent-gold);
	outline-offset: 2px;
}

.header-search-toggle svg {
	width: 22px;
	height: 22px;
}

/* Search overlay — sits below the header. JS measures #masthead height on
   open and writes it to --header-bottom so the overlay drops in cleanly
   regardless of whether the secondary category-nav strip is rendered. */
.header-search-overlay {
	position: fixed;
	top: var(--header-bottom, 80px);
	left: 0;
	right: 0;
	bottom: 0;
	z-index: var(--z-sticky);
	pointer-events: none;
}

.header-search-overlay[hidden] { display: none; }

.header-search-overlay__backdrop {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	background: rgba(0, 0, 0, 0.65);
	-webkit-backdrop-filter: blur(6px);
	backdrop-filter: blur(6px);
	border: 0;
	cursor: pointer;
	opacity: 0;
	transition: opacity var(--transition-base);
	pointer-events: auto;
}

.header-search-overlay.is-open .header-search-overlay__backdrop { opacity: 1; }

.header-search-overlay__panel {
	position: absolute;
	top: var(--space-5);
	left: 50%;
	width: min(720px, calc(100vw - var(--space-6)));
	padding: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	opacity: 0;
	transform: translate(-50%, -16px);
	transition: opacity var(--transition-base), transform var(--transition-base);
	pointer-events: auto;
}

.header-search-overlay.is-open .header-search-overlay__panel {
	opacity: 1;
	transform: translate(-50%, 0);
}

.header-search-overlay__field {
	position: relative;
}

/* Mobile — full-width panel, anchored just below the header. */
@media screen and (max-width: 47.9375em) {
	.header-search-overlay__panel {
		top: var(--space-4);
		left: var(--space-3);
		right: var(--space-3);
		width: auto;
		transform: translateY(-16px);
	}
	.header-search-overlay.is-open .header-search-overlay__panel {
		transform: translateY(0);
	}
}

/*--------------------------------------------------------------
# FiboSearch overrides — match dark luxury theme
   FiboSearch ships its own CSS at higher specificity; !important is
   required on color/background/font to override consistently across
   layout variants (Solaris / Pirx / Classic).
--------------------------------------------------------------*/
.header-search-overlay .dgwt-wcas-search-wrapp,
.header-search-overlay .dgwt-wcas-search-wrapp.js-dgwt-wcas-mobile-overlay-enabled {
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
}

.header-search-overlay .dgwt-wcas-search-form {
	background: transparent !important;
	box-shadow: none !important;
	border: 0 !important;
}

/* Input pill — dark fill, gold border that brightens on focus. */
.header-search-overlay .dgwt-wcas-sf-wrapp,
.header-search-overlay .dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp,
.header-search-overlay .dgwt-wcas-style-solaris .dgwt-wcas-sf-wrapp {
	position: relative;
	background: rgba(15, 15, 15, 0.96) !important;
	border: 1px solid rgba(201, 169, 98, 0.25) !important;
	border-radius: 999px !important;
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55) !important;
	overflow: hidden;
	transition: border-color var(--transition-base), background var(--transition-base);
}

/* Magnifier icon sits absolutely on the left side of the pill. */
.header-search-overlay .dgwt-wcas-ico-magnifier {
	position: absolute !important;
	left: var(--space-4) !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 18px !important;
	height: 18px !important;
	fill: var(--color-accent-gold) !important;
	color: var(--color-accent-gold) !important;
	pointer-events: none;
	z-index: 1;
}

.header-search-overlay .dgwt-wcas-sf-wrapp:focus-within {
	border-color: var(--color-accent-gold) !important;
	background: rgba(20, 20, 20, 0.98) !important;
}

.header-search-overlay .dgwt-wcas-search-input,
.header-search-overlay input.dgwt-wcas-search-input,
.header-search-overlay input.js-dgwt-wcas-search-input,
.header-search-overlay input.dgwt-wcas-search-input[type="text"],
.header-search-overlay input.dgwt-wcas-search-input[type="search"] {
	height: 56px !important;
	padding: 0 var(--space-4) 0 52px !important;
	color: var(--color-text-primary) !important;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	font-family: var(--font-primary) !important;
	font-size: var(--text-base) !important;
	font-weight: var(--font-normal);
	letter-spacing: var(--tracking-normal);
}

.header-search-overlay .dgwt-wcas-search-input::placeholder,
.header-search-overlay input.dgwt-wcas-search-input::placeholder {
	color: var(--color-text-tertiary) !important;
	opacity: 1 !important;
	font-family: var(--font-primary) !important;
	letter-spacing: var(--tracking-wide);
}

.header-search-overlay .dgwt-wcas-search-input:focus {
	outline: none !important;
	box-shadow: none !important;
}

/* Magnifier submit + clear (X) buttons inside the pill */
.header-search-overlay .dgwt-wcas-search-submit,
.header-search-overlay .dgwt-wcas-sb,
.header-search-overlay button.dgwt-wcas-search-submit {
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	color: var(--color-accent-gold) !important;
	width: 48px !important;
	height: 48px !important;
}

.header-search-overlay .dgwt-wcas-search-submit:hover,
.header-search-overlay .dgwt-wcas-sb:hover {
	background: rgba(201, 169, 98, 0.08) !important;
	color: var(--color-accent-gold) !important;
}

.header-search-overlay .dgwt-wcas-ico-magnifier,
.header-search-overlay .dgwt-wcas-search-submit svg,
.header-search-overlay .dgwt-wcas-sb svg {
	fill: var(--color-accent-gold) !important;
	color: var(--color-accent-gold) !important;
	width: 18px !important;
	height: 18px !important;
}

.header-search-overlay .dgwt-wcas-preloader {
	color: var(--color-accent-gold) !important;
}

.header-search-overlay .dgwt-wcas-close,
.header-search-overlay .js-dgwt-wcas-search-input-clear,
.header-search-overlay span.dgwt-wcas-close {
	color: var(--color-text-tertiary) !important;
	opacity: 0.8;
}

.header-search-overlay .dgwt-wcas-close:hover {
	color: var(--color-text-primary) !important;
	opacity: 1;
}

/* Suggestions dropdown — FiboSearch attaches this to <body>, so style it globally.
   It positions itself directly below the input, so visually it'll feel attached. */
.dgwt-wcas-suggestions-wrapp,
body .dgwt-wcas-suggestions-wrapp,
.dgwt-wcas-suggestions-wrapp.dgwt-wcas-suggestions-modern,
.dgwt-wcas-suggestions-wrapp.dgwt-wcas-style-pirx,
.dgwt-wcas-suggestions-wrapp.dgwt-wcas-style-solaris {
	margin-top: 8px !important;
	background: rgba(15, 15, 15, 0.98) !important;
	border: 1px solid rgba(201, 169, 98, 0.18) !important;
	border-radius: var(--radius-md) !important;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7) !important;
	color: var(--color-text-primary) !important;
	-webkit-backdrop-filter: blur(20px);
	backdrop-filter: blur(20px);
	font-family: var(--font-primary) !important;
	overflow: hidden;
}

.dgwt-wcas-suggestion,
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-product,
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-more-products,
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-headline {
	color: var(--color-text-primary) !important;
	background: transparent !important;
	border: 0 !important;
	border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
	padding: var(--space-3) var(--space-5) !important;
	transition: background var(--transition-base);
}

.dgwt-wcas-suggestion:last-child {
	border-bottom: 0 !important;
}

.dgwt-wcas-suggestion:hover,
.dgwt-wcas-suggestion.selected,
.dgwt-wcas-suggestion[aria-selected="true"],
.dgwt-wcas-suggestion.js-dgwt-wcas-suggestion-active {
	background: rgba(201, 169, 98, 0.08) !important;
	color: var(--color-text-primary) !important;
}

/* Product titles */
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-title,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st__title,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st__name,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-title-wrapp {
	color: var(--color-text-primary) !important;
	font-family: var(--font-primary) !important;
	font-weight: var(--font-medium) !important;
	font-size: var(--text-base) !important;
	letter-spacing: var(--tracking-normal);
}

/* Prices — gold accent. FiboSearch wraps prices in spans with inherited
   opacity from the suggestion row, so force opacity and color on every
   conceivable child element. */
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-price,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-price,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-product-price,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st__price,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-pd-price,
.dgwt-wcas-suggestions-wrapp .price,
.dgwt-wcas-suggestions-wrapp [class*="dgwt-wcas-"][class*="price"],
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-price *,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-price *,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-product-price *,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-pd-price *,
.dgwt-wcas-suggestions-wrapp .price *,
.dgwt-wcas-suggestions-wrapp .woocommerce-Price-amount,
.dgwt-wcas-suggestions-wrapp .woocommerce-Price-amount bdi,
.dgwt-wcas-suggestions-wrapp .woocommerce-Price-currencySymbol,
.dgwt-wcas-suggestions-wrapp ins .woocommerce-Price-amount,
.dgwt-wcas-suggestions-wrapp ins .amount {
	color: var(--color-accent-gold) !important;
	font-family: var(--font-primary) !important;
	font-weight: var(--font-semibold) !important;
	font-size: var(--text-sm) !important;
	letter-spacing: var(--tracking-wide);
	opacity: 1 !important;
	text-decoration: none !important;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-price del,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-product-price del,
.dgwt-wcas-suggestions-wrapp .price del,
.dgwt-wcas-suggestions-wrapp .price del .amount {
	color: var(--color-text-tertiary) !important;
	opacity: 0.55 !important;
	text-decoration: line-through !important;
	font-weight: var(--font-normal) !important;
	margin-right: var(--space-2);
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-sku,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-description {
	color: var(--color-text-secondary) !important;
	font-size: var(--text-xs) !important;
}

/* Section headlines ("Products", "Categories") */
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion-headline,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-taxonomy,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion-headline-inner {
	color: var(--color-accent-gold) !important;
	text-transform: uppercase !important;
	letter-spacing: var(--tracking-wider) !important;
	font-size: 11px !important;
	font-weight: var(--font-semibold) !important;
	background: rgba(201, 169, 98, 0.04) !important;
	border-bottom: 1px solid rgba(201, 169, 98, 0.12) !important;
	padding: var(--space-2) var(--space-4) !important;
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-st-misc,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-details-title {
	color: var(--color-text-secondary) !important;
}

.dgwt-wcas-details-inner {
	background: var(--color-bg-secondary) !important;
	color: var(--color-text-primary) !important;
}

.dgwt-wcas-suggestion-nores,
.dgwt-wcas-suggestion-nores-text {
	color: var(--color-text-tertiary) !important;
}

.dgwt-wcas-suggestions-wrapp em,
.dgwt-wcas-suggestions-wrapp strong,
.dgwt-wcas-suggestions-wrapp mark {
	color: var(--color-accent-gold) !important;
	background: transparent !important;
	font-style: normal;
	font-weight: var(--font-semibold) !important;
}

/* Product thumbnails — larger, borderless, blend into the dark theme. */
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-product-img,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-si,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-image {
	background: transparent !important;
	border: 0 !important;
	border-radius: var(--radius-sm) !important;
	overflow: hidden;
	width: 110px !important;
	height: 74px !important;
	flex: 0 0 110px;
	margin-right: var(--space-4);
}

.dgwt-wcas-suggestions-wrapp .dgwt-wcas-product-img img,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-si img,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-image img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover !important;
	border-radius: 0 !important;
	background: transparent !important;
	border: 0 !important;
	box-shadow: none !important;
	padding: 0 !important;
}

/* FiboSearch ships its own backdrop/overlay layers (desktop darkoverlay,
   mobile fullscreen). We render our own overlay, so suppress theirs to
   avoid the gold flash on outside click. */
.dgwt-wcas-overlay,
.dgwt-wcas-darkoverlay,
.dgwt-wcas-overlay-mobile,
.js-dgwt-wcas-overlay-mobile,
body > .dgwt-wcas-overlay-wrapper {
	display: none !important;
}

/* "See all products..." footer link */
.dgwt-wcas-suggestion-more,
.dgwt-wcas-suggestions-wrapp .dgwt-wcas-suggestion-more,
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-more-products,
.dgwt-wcas-st-more {
	color: var(--color-accent-gold) !important;
	background: rgba(201, 169, 98, 0.04) !important;
	text-transform: uppercase !important;
	letter-spacing: var(--tracking-wider) !important;
	font-size: var(--text-xs) !important;
	font-weight: var(--font-semibold) !important;
	text-align: center !important;
	padding: var(--space-3) var(--space-4) !important;
	border-top: 1px solid rgba(201, 169, 98, 0.15) !important;
	border-bottom: 0 !important;
	transition: background var(--transition-base) !important;
}

.dgwt-wcas-suggestion-more:hover,
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-more-products:hover {
	background: rgba(201, 169, 98, 0.12) !important;
	color: var(--color-accent-gold) !important;
}
