:root {
	--white: #ffffff;
	--gold: #c9ad72;
	--gold-muted: rgba(201, 173, 114, 0.85);
	--text-muted: rgba(255, 255, 255, 0.72);
	--line: rgba(255, 255, 255, 0.35);
	--search-fill: rgba(0, 0, 0, 0.2);
	--search-fill-focus: rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	min-height: 100%;
	overflow-x: hidden;
	max-width: 100%;
}

body {
	font-family: "Source Sans Pro", sans-serif;
	font-weight: 300;
	color: var(--white);
	background: #1a1510;
	position: relative;
}

body::before {
	content: "";
	position: fixed;
	inset: 0;
	background-color: #1a1510;
	background-image: url("/images/lab-bg-desktop.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	z-index: -2;
}

body::after {
	content: "";
	position: fixed;
	inset: 0;
	background: rgba(18, 14, 10, 0.15);
	z-index: -1;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
}

.site {
	min-height: 100vh;
	display: grid;
	grid-template-rows: auto 1fr auto;
	position: relative;
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}

.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	padding: 2.5rem 4rem 0;
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	box-sizing: border-box;
	direction: ltr;
}

.header-actions {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 0.75rem;
	order: 3;
	flex: 0 0 auto;
	min-width: 0;
	direction: ltr;
}

.brand {
	display: flex;
	align-items: center;
	gap: 1rem;
	min-width: 0;
	flex: 1 1 auto;
	order: 1;
}

.brand-icon {
	width: 38px;
	height: 38px;
	object-fit: contain;
	filter: brightness(1.1);
	flex: 0 0 auto;
}

.brand-text {
	display: flex;
	flex-direction: column;
	gap: 0.15rem;
	min-width: 0;
}

.brand-name {
	font-family: "Playfair Display", serif;
	font-size: 1.15rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold);
}

.brand-tag {
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.34em;
	text-transform: uppercase;
	color: var(--gold-muted);
}

.cart-toggle {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	padding: 0.65rem 1.1rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: transparent;
	color: var(--white);
	font: inherit;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color 0.25s ease, color 0.25s ease;
}

.cart-toggle:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.cart-count {
	min-width: 1.25rem;
	padding: 0.1rem 0.35rem;
	border: 1px solid var(--gold);
	color: var(--gold);
	font-size: 0.62rem;
	letter-spacing: 0.08em;
	text-align: center;
}

.nav {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	gap: 1.6rem;
	margin-inline-start: auto;
	order: 2;
}

.nav a {
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold-muted);
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65);
}

.nav a:hover {
	color: var(--white);
}

.menu-toggle,
.menu-close,
.menu-label {
	display: none;
}

.hero {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 2rem 1.5rem 4rem;
	min-height: calc(100vh - 180px);
}

.hero-eyebrow {
	margin: 1.5rem 0 0;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold-muted);
}

.hero-title {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: clamp(2rem, 4vw, 3.5rem);
	font-weight: 500;
	line-height: 1.08;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--white);
}

.hero-mark {
	width: min(125px, 20vw);
	margin: 1.75rem auto 0;
	opacity: 0.92;
	filter: brightness(1.15);
}

.search-block {
	margin-top: 2rem;
	width: min(420px, 100%);
}

.search-block input[type="text"] {
	width: 100%;
	padding: 1rem 1.25rem;
	border: 1px solid rgba(255, 255, 255, 0.65);
	background: var(--search-fill);
	color: var(--white);
	font: inherit;
	font-size: 0.95rem;
	font-weight: 300;
	text-align: center;
	letter-spacing: 0.08em;
	outline: none;
	transition: border-color 0.25s ease, background 0.25s ease;
}

.search-block input[type="text"]::placeholder {
	color: rgba(255, 255, 255, 0.55);
}

.search-block input[type="text"]:focus {
	border-color: var(--gold);
	background: var(--search-fill-focus);
}

.btn-ghost {
	margin-top: 2rem;
	padding: 0.95rem 2.2rem;
	border: 1px solid rgba(255, 255, 255, 0.55);
	background: var(--search-fill);
	color: var(--white);
	font: inherit;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn-ghost:hover {
	background: var(--search-fill-focus);
	border-color: var(--white);
}

.search-error {
	margin: 0 0 1rem;
	padding: 0.75rem 1rem;
	border: 1px solid rgba(255, 160, 160, 0.35);
	background: rgba(120, 20, 20, 0.25);
	color: #ffd0d0;
	font-size: 0.88rem;
}

.available {
	padding: 0 4rem 4.5rem;
	position: relative;
	z-index: 1;
}

.available-inner {
	max-width: 1120px;
	margin: 0 auto;
}

.available-title {
	margin: 0 0 2rem;
	text-align: center;
	font-family: "Playfair Display", serif;
	font-weight: 500;
	font-size: clamp(1.35rem, 2.4vw, 1.75rem);
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--gold);
}

.available-scope {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0.5rem;
	margin: -0.75rem 0 1.5rem;
}

.available-scope-btn {
	padding: 0.55rem 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.28);
	background: transparent;
	color: var(--gold-muted);
	font: inherit;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
}

.available-scope-btn.is-on,
.available-scope-btn:hover {
	border-color: var(--gold);
	color: var(--white);
}

.available-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1.35rem;
}

.available-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	position: relative;
	color: inherit;
	background: var(--search-fill);
	border: 1px solid var(--line);
	transition: border-color 0.25s ease, background 0.25s ease;
}

.available-card.is-opts-open {
	z-index: 8;
	border-color: var(--gold);
	background: var(--search-fill-focus);
}

.available-card:hover {
	border-color: var(--gold);
	background: var(--search-fill-focus);
}

.available-card-link {
	display: flex;
	flex-direction: column;
	flex: 1;
	color: inherit;
	min-width: 0;
}

.available-media {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.35);
	border-bottom: 1px solid var(--line);
}

.available-media.is-empty {
	background:
		linear-gradient(135deg, rgba(201, 173, 114, 0.12), rgba(0, 0, 0, 0.35));
}

.available-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.available-card:hover .available-media img {
	transform: scale(1.04);
}

.stock-badge {
	position: absolute;
	top: 0.55rem;
	right: 0.55rem;
	z-index: 2;
	padding: 0.28rem 0.45rem;
	background: rgba(0, 0, 0, 0.72);
	border: 1px solid rgba(255, 255, 255, 0.2);
	color: #fff;
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	pointer-events: none;
}

.cert-included-badge {
	position: absolute;
	top: 0.55rem;
	left: 0.55rem;
	z-index: 2;
	max-width: calc(100% - 1.1rem);
	padding: 0.12rem 0.28rem;
	background: rgba(201, 173, 114, 0.9);
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: #111;
	font-size: 0.45rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	line-height: 1.2;
	pointer-events: none;
}

.cert-included-badge.is-online {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.85);
	color: #fff;
	font-weight: 600;
	text-shadow: 0 1px 2px rgba(0, 0, 0, 0.55);
}

.available-body {
	display: flex;
	flex-direction: column;
	flex: 1;
	padding: 1rem 1.05rem 0.35rem;
	gap: 0.35rem;
}

.available-body h3 {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: 1.05rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.25;
	color: var(--white);
}

.available-trust {
	margin: 0;
	font-size: 0.5rem;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	line-height: 1.35;
	color: rgba(201, 173, 114, 0.5);
}

.available-id {
	margin: 0;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--gold-muted);
}

.available-meta {
	margin: 0.15rem 0 0;
	font-size: 0.78rem;
	line-height: 1.4;
	color: var(--text-muted);
	letter-spacing: 0.03em;
}

.num-ltr,
.weight-toggle[dir="ltr"] {
	unicode-bidi: isolate;
	direction: ltr;
}

.available-card .weight-toggle,
.available-card .weight-toggle:hover,
.available-card .weight-toggle:focus-visible {
	text-decoration: none;
}

.available-price {
	margin: auto 0 0;
	padding-top: 0.85rem;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
}

.available-stock {
	display: none;
}

.available-card-sheet {
	position: absolute;
	inset: 0;
	z-index: 5;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	padding: 2.1rem 0.85rem 0.85rem;
	background: linear-gradient(180deg, rgba(18, 14, 10, 0.42) 0%, rgba(18, 14, 10, 0.88) 42%, rgba(12, 10, 8, 0.97) 100%);
	overflow: auto;
}

.available-card-sheet[hidden] {
	display: none !important;
}

.available-card-sheet-close {
	position: absolute;
	top: 0.4rem;
	inset-inline-end: 0.4rem;
	width: 2rem;
	height: 2rem;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--white);
	font: inherit;
	font-size: 1.25rem;
	line-height: 1;
	cursor: pointer;
}

.available-card-sheet-body {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.available-card-sheet .product-ring-opts {
	margin: 0;
	flex-direction: column;
	flex-wrap: nowrap;
	gap: 0.45rem;
}

.available-card-sheet .product-ring-field {
	min-width: 0;
	width: 100%;
	flex: none;
}

.available-card-sheet .product-ring-field select {
	width: 100%;
	background: rgba(0, 0, 0, 0.45);
	color: var(--white);
}

.available-card-sheet .product-ring-hint {
	font-size: 0.72rem;
}

.available-card-sheet-add {
	width: 100%;
	padding: 0.7rem 0.85rem;
	border: 1px solid var(--gold);
	background: var(--gold);
	color: #111;
	font: inherit;
	font-size: 0.62rem;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	cursor: pointer;
}

.available-card-sheet-add:disabled {
	opacity: 0.45;
	cursor: default;
}

.available-card-sheet-add.is-added {
	background: transparent;
	color: var(--gold);
}

.available-card-sheet-view {
	display: block;
	text-align: center;
	padding: 0.1rem 0 0.15rem;
	color: var(--gold-muted);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.available-card-sheet-view:hover {
	color: var(--gold);
}

.available-actions {
	padding: 0.75rem 1.05rem 1.05rem;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0.45rem;
}

.available-add {
	width: 100%;
	padding: 0.7rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: transparent;
	color: var(--white);
	font: inherit;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.available-add:hover:not(:disabled) {
	border-color: var(--gold);
	color: var(--gold);
}

.available-add.is-added {
	border-color: var(--gold);
	color: var(--gold);
}

.available-compare {
	width: 100%;
	padding: 0.7rem 0.5rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: transparent;
	color: rgba(255, 255, 255, 0.85);
	font: inherit;
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.available-compare:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.available-compare.is-on {
	border-color: var(--gold);
	color: var(--gold);
	background: rgba(212, 175, 55, 0.08);
}

.compare-bar {
	position: fixed;
	left: 50%;
	bottom: 0.75rem;
	transform: translateX(-50%);
	z-index: 40;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: center;
	gap: 0.45rem 0.55rem;
	width: auto;
	max-width: calc(100% - 1.25rem);
	padding: 0.4rem 0.55rem;
	border: 1px solid var(--line);
	background: rgba(12, 12, 12, 0.94);
}

.compare-bar[hidden] {
	display: none !important;
}

.compare-bar-text {
	margin: 0;
	padding: 0 0.2rem;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.85);
	white-space: nowrap;
}

.compare-bar-actions {
	display: flex;
	gap: 0.35rem;
}

.compare-bar .btn-ghost {
	margin-top: 0;
	padding: 0.4rem 0.7rem;
	font-size: 0.55rem;
	letter-spacing: 0.14em;
	text-decoration: none;
}

.btn-ghost-alt {
	background: transparent;
}

.compare-page {
	padding: 2rem 4rem 4.5rem;
	position: relative;
	z-index: 1;
}

.compare-inner {
	width: min(960px, 100%);
	margin: 0 auto;
}

.compare-title {
	margin: 0 0 0.65rem;
	font-family: "Playfair Display", serif;
	font-size: clamp(1.6rem, 3vw, 2.2rem);
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--white);
	text-align: center;
}

.compare-lead {
	margin: 0 0 1.75rem;
	text-align: center;
	font-size: 0.95rem;
	font-weight: 300;
	color: rgba(255, 255, 255, 0.7);
}

.compare-empty,
.compare-hint {
	margin: 0 0 1.25rem;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.92rem;
}

.compare-empty a,
.compare-hint a {
	color: var(--gold);
}

.compare-cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.25rem;
}

.compare-col {
	border: 1px solid var(--line);
	padding: 1rem;
	background: rgba(0, 0, 0, 0.18);
}

.compare-card-link {
	display: block;
	color: inherit;
	text-decoration: none;
}

.compare-card-link:hover h2 {
	color: var(--gold);
}

.compare-col h2 {
	margin: 0.85rem 0 1rem;
	font-family: "Playfair Display", serif;
	font-size: 1.25rem;
	font-weight: 500;
	color: var(--white);
}

.compare-media {
	aspect-ratio: 1;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.25);
}

.compare-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.compare-media.is-empty {
	min-height: 180px;
}

.compare-dl {
	display: grid;
	grid-template-columns: 7.5rem 1fr;
	gap: 0.55rem 0.75rem;
	margin: 0;
}

.compare-dl dt {
	margin: 0;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold-muted);
}

.compare-dl dd {
	margin: 0;
	font-size: 0.92rem;
	color: var(--white);
}

.compare-col-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin-top: 1.25rem;
}

.compare-col-actions .btn-ghost {
	margin-top: 0;
	text-decoration: none;
}

.compare-col-empty {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 280px;
	border: 1px dashed rgba(255, 255, 255, 0.35);
	color: rgba(255, 255, 255, 0.65);
	text-decoration: none;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-align: center;
	padding: 1.5rem;
}

.compare-col-empty:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.available-empty {
	margin: 0;
	grid-column: 1 / -1;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.88rem;
	letter-spacing: 0.08em;
}

.available-more {
	margin-top: 2rem;
	text-align: center;
}

.available-more .btn-ghost {
	display: inline-block;
	text-decoration: none;
}

.available-page {
	padding: 2rem 4rem 4.5rem;
	position: relative;
	z-index: 1;
}

.available-search-bar {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 0 0 1rem;
	align-items: stretch;
}

html[lang="en"] .available-search-bar {
	direction: ltr;
}

html[lang="ar"] .available-search-bar {
	direction: rtl;
}

.available-search-bar input[type="search"] {
	flex: 1 1 12rem;
	min-width: 0;
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--line);
	background: var(--search-fill);
	color: var(--white);
	font: inherit;
	font-size: 0.92rem;
	outline: none;
}

.available-search-bar input[type="search"]:focus {
	border-color: var(--gold);
}

.available-search-btn,
.available-filter-toggle {
	padding: 0.75rem 1rem;
	border: 1px solid var(--line);
	background: transparent;
	color: var(--gold);
	font: inherit;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
}

.available-search-btn:hover,
.available-filter-toggle:hover {
	border-color: var(--gold);
}

.available-filter-toggle[aria-expanded="true"] {
	background: var(--gold);
	color: var(--black, #111);
	border-color: var(--gold);
}

.available-filters-panel[hidden] {
	display: none !important;
}

.available-filters-panel {
	margin: 0 0 1.25rem;
}

.available-filters-panel .available-scope {
	margin-bottom: 0.85rem;
}

.available-filters {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.85rem;
	margin: 0 0 1.75rem;
}

.available-filters label {
	display: flex;
	flex-direction: column;
	gap: 0.4rem;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-muted);
}

#filter-shape-wrap[hidden] {
	display: none !important;
}

.available-filters select {
	width: 100%;
	padding: 0.75rem 0.85rem;
	border: 1px solid var(--line);
	background: var(--search-fill);
	color: var(--white);
	font: inherit;
	font-size: 0.88rem;
	letter-spacing: 0.02em;
	outline: none;
}

.available-filters select:focus {
	border-color: var(--gold);
}

.available-pager {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 0.45rem;
	margin-top: 2rem;
}

.available-page-btn {
	min-width: 2.4rem;
	padding: 0.55rem 0.7rem;
	border: 1px solid var(--line);
	background: var(--search-fill);
	color: var(--white);
	font: inherit;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	cursor: pointer;
}

.available-page-btn.is-on,
.available-page-btn:hover:not(:disabled) {
	border-color: var(--gold);
	color: var(--gold);
}

.available-page-btn:disabled {
	opacity: 0.35;
	cursor: default;
}

.available-page-gap,
.available-page-info {
	color: var(--text-muted);
	font-size: 0.72rem;
	letter-spacing: 0.08em;
	padding: 0 0.25rem;
}

.cart-backdrop {
	position: fixed;
	inset: 0;
	background: rgba(10, 8, 6, 0.72);
	z-index: 120;
}

.cart-backdrop[hidden] {
	display: none !important;
}

.cart-panel {
	position: fixed;
	top: 0;
	right: 0;
	left: auto;
	bottom: 0;
	width: min(400px, 100%);
	z-index: 121;
	display: none;
	flex-direction: column;
	background: rgba(18, 14, 10, 0.97);
	border-left: 1px solid var(--line);
	border-right: none;
	backdrop-filter: blur(14px);
}

.cart-panel[hidden] {
	display: none !important;
}

body.cart-open .cart-panel {
	display: flex;
}

body.cart-open .cart-backdrop {
	display: block;
}

.cart-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: 1.35rem 1.25rem;
	border-bottom: 1px solid var(--line);
}

.cart-title {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: 1.15rem;
	font-weight: 500;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: var(--gold);
}

.cart-head-actions {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	flex-shrink: 0;
}

.cart-close,
.cart-empty-btn {
	padding: 0.55rem 0.9rem;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: transparent;
	color: var(--white);
	font: inherit;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	cursor: pointer;
}

.cart-empty-btn:hover,
.cart-close:hover {
	border-color: var(--gold);
	color: var(--gold);
}

.cart-list {
	flex: 1;
	overflow: auto;
	padding: 1rem 1.15rem;
}

.cart-empty {
	margin: 1.5rem 0;
	text-align: center;
	color: var(--text-muted);
	font-size: 0.88rem;
	letter-spacing: 0.06em;
}

.cart-row {
	display: grid;
	grid-template-columns: 64px 1fr auto;
	gap: 0.85rem;
	align-items: start;
	padding: 0.85rem 0;
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.cart-row-media {
	width: 64px;
	height: 64px;
	overflow: hidden;
	background: rgba(0, 0, 0, 0.35);
	border: 1px solid var(--line);
	display: block;
	text-decoration: none;
	color: inherit;
}

.cart-row-media:hover {
	opacity: 0.88;
}

.cart-row-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.cart-row-info {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	min-width: 0;
}

.cart-row-info strong {
	font-family: "Playfair Display", serif;
	font-weight: 500;
	font-size: 0.98rem;
}

.cart-row-info span {
	font-size: 0.72rem;
	color: var(--text-muted);
	letter-spacing: 0.04em;
}

.cart-row-price {
	color: var(--gold) !important;
	font-weight: 600;
	letter-spacing: 0.12em !important;
	text-transform: uppercase;
}

.cart-qty {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	margin-top: 0.35rem;
}

.cart-qty-btn {
	width: 28px;
	height: 28px;
	border: 1px solid rgba(255, 255, 255, 0.35);
	background: transparent;
	color: var(--white);
	font: inherit;
	cursor: pointer;
}

.cart-qty-btn:disabled {
	opacity: 0.35;
	cursor: not-allowed;
}

.cart-qty-val {
	min-width: 1.5rem;
	text-align: center;
	font-size: 0.85rem !important;
	color: var(--white) !important;
}

.cart-remove {
	padding: 0.35rem 0.5rem;
	border: 0;
	background: transparent;
	color: var(--gold-muted);
	font: inherit;
	font-size: 0.58rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
}

.cart-remove:hover {
	color: var(--white);
}

.cart-foot {
	padding: 1.15rem 1.25rem 1.5rem;
	border-top: 1px solid var(--line);
}

.cart-total {
	margin: 0 0 0.35rem;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--gold);
	text-align: right;
}

.cart-ship {
	margin: 0 0 0.85rem;
	font-size: 0.78rem;
	font-weight: 600;
	letter-spacing: 0.02em;
	line-height: 1.4;
	color: var(--gold);
	text-align: right;
}

.cart-purchase {
	width: 100%;
	margin-top: 0;
}

.cart-purchase:disabled {
	opacity: 0.4;
	cursor: default;
}

.footer {
	padding: 1.5rem 2rem 2rem;
	text-align: center;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.24em;
	text-transform: uppercase;
	color: var(--text-muted);
}

.footer img {
	width: 34px;
	margin: 0 auto 0.75rem;
	opacity: 0.85;
}

.footer-phone {
	margin: 0 0 0.45rem;
}

.footer a {
	color: var(--gold-muted);
}

.footer a:hover {
	color: var(--white);
}

@media (max-width: 1100px) {
	.available-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media (max-width: 900px) {
	.available-page {
		padding: 1.25rem 1rem 3rem;
	}

	.compare-page {
		padding: 1.25rem 1rem 3rem;
	}

	.compare-cols {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.85rem;
	}

	.compare-col {
		padding: 0.75rem;
	}

	.compare-col h2 {
		font-size: 1.05rem;
	}

	.compare-dl {
		grid-template-columns: 1fr;
		gap: 0.2rem 0;
	}

	.compare-dl dt {
		margin-top: 0.35rem;
	}

	.compare-view {
		display: none;
	}

	.compare-col-actions {
		margin-top: 0.75rem;
	}

	.compare-col-actions .btn-ghost {
		width: 100%;
		padding: 0.55rem 0.75rem;
		font-size: 0.58rem;
	}

	.available-filters {
		grid-template-columns: 1fr;
	}

	.available {
		padding: 0 1rem 3rem;
	}

	.available-title {
		margin-bottom: 1.5rem;
		letter-spacing: 0.22em;
	}

	.available-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0.9rem;
	}

	.available-body {
		padding: 0.85rem 0.85rem 0.25rem;
	}

	.available-body h3 {
		font-size: 0.98rem;
	}

	.available-actions {
		padding: 0.55rem 0.85rem 0.85rem;
	}

	.header {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		gap: 0.5rem;
		padding: 1.25rem 0.85rem 0;
	}

	.header-actions {
		order: 2;
		margin-left: auto;
		margin-right: 0;
		gap: 0.4rem;
	}

	.lang-switch a,
	.lang-switch-toggle {
		min-width: 2.1rem;
		padding: 0.55rem 0.5rem;
		font-size: 0.62rem;
	}

	.cart-toggle {
		padding: 0.55rem 0.7rem;
		letter-spacing: 0.12em;
		font-size: 0.62rem;
	}

	.menu-toggle {
		padding: 0.55rem 0.7rem;
		letter-spacing: 0.12em;
		font-size: 0.62rem;
	}

	.nav {
		order: 3;
		margin-inline-start: 0;
	}

	.brand-name {
		font-size: 0.8rem;
		letter-spacing: 0.08em;
	}

	.brand-icon {
		width: 32px;
		height: 32px;
	}

	.brand-tag {
		font-size: 0.5rem;
		letter-spacing: 0.24em;
	}

	.menu-toggle {
		display: inline-block;
		padding: 0.55rem 0.7rem;
		border: 1px solid rgba(255, 255, 255, 0.45);
		background: transparent;
		color: var(--white);
		font: inherit;
		font-size: 0.62rem;
		font-weight: 600;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		cursor: pointer;
	}

	.nav {
		position: fixed;
		inset: 0;
		flex-direction: column;
		flex-wrap: nowrap;
		justify-content: center;
		align-items: center;
		gap: 0;
		padding: 2rem;
		background: rgba(10, 8, 6, 0.94);
		backdrop-filter: blur(14px);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.35s ease, visibility 0.35s ease;
		z-index: 100;
	}

	body.menu-open {
		overflow: hidden;
	}

	body.menu-open .nav {
		opacity: 1;
		visibility: visible;
	}

	.menu-close {
		display: block;
		position: absolute;
		top: 1.5rem;
		right: 1.5rem;
		padding: 0.65rem 1.1rem;
		border: 1px solid rgba(255, 255, 255, 0.35);
		background: transparent;
		color: var(--white);
		font: inherit;
		font-size: 0.65rem;
		font-weight: 600;
		letter-spacing: 0.24em;
		text-transform: uppercase;
		cursor: pointer;
	}

	.menu-label {
		display: block;
		margin: 0 0 0.75rem;
		font-size: 0.65rem;
		font-weight: 600;
		letter-spacing: 0.38em;
		text-transform: uppercase;
		color: var(--gold);
	}

	.menu-label::after {
		content: "";
		display: block;
		width: 48px;
		height: 1px;
		margin: 0.45rem auto 0;
		background: var(--gold-muted);
	}

	.nav a {
		display: block;
		width: 100%;
		max-width: 280px;
		padding: 0.6rem 0;
		border-bottom: 1px solid rgba(255, 255, 255, 0.1);
		font-family: "Source Sans Pro", sans-serif;
		font-size: clamp(0.72rem, 1.6vw, 0.82rem);
		font-weight: 600;
		line-height: 1.2;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		text-align: center;
		color: var(--white);
	}

	.nav a:last-of-type {
		border-bottom: 0;
	}

	.nav a:hover {
		color: var(--gold);
	}

	.hero {
		min-height: auto;
		padding: 2rem 1rem 3rem;
	}

	.hero-title {
		max-width: 100%;
		overflow-wrap: break-word;
	}

	.footer {
		padding: 1.25rem 1rem 1.5rem;
		overflow-wrap: break-word;
	}
}

@media (min-width: 769px) and (max-width: 900px) {
	.nav a {
		font-size: 0.62rem;
		padding: 0.5rem 0;
		letter-spacing: 0.13em;
	}

	.menu-label {
		margin-bottom: 0.75rem;
		font-size: 0.58rem;
	}
}

@media (max-width: 520px) {
	.available-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		max-width: none;
		margin: 0;
		gap: 0.75rem;
	}

	.hero-title {
		font-size: clamp(1.6rem, 7vw, 2rem);
		line-height: 1.12;
	}

	.hero-eyebrow {
		font-size: 0.58rem;
		letter-spacing: 0.18em;
	}

	.hero-mark {
		width: min(84px, 22vw);
		margin-top: 1.25rem;
	}

	.search-block {
		width: 100%;
	}
}

.product-page {
	padding: 2rem 4rem 4.5rem;
	position: relative;
	z-index: 1;
}

.product-inner {
	max-width: 920px;
	margin: 0 auto;
}

.product-back {
	margin: 0 0 1.25rem;
}

.product-card {
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
	gap: 1.5rem;
	background: rgba(255,255,255,0.04);
	border: 1px solid rgba(255,255,255,0.08);
	padding: 1.25rem;
}

.product-photos {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 0.75rem;
}

.product-photos .stock-badge {
	top: 0.75rem;
	right: 0.75rem;
}

.product-photo-main-btn {
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	padding: 0;
	margin: 0;
	line-height: 0;
	border: 1px solid rgba(255, 255, 255, 0.15);
	background: rgba(255, 255, 255, 0.03);
	cursor: zoom-in;
	overflow: hidden;
}

.product-photo-main {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}

.product-photo-thumbs {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(64px, 1fr));
	gap: 0.45rem;
}

.product-photo-thumb {
	padding: 0;
	margin: 0;
	line-height: 0;
	border: 1px solid rgba(255, 255, 255, 0.2);
	background: transparent;
	cursor: zoom-in;
	overflow: hidden;
	aspect-ratio: 1;
}

.product-photo-thumb.is-on,
.product-photo-thumb:hover {
	border-color: var(--gold);
}

.product-photo-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.product-photos img {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
}

.cert-lightbox {
	position: fixed;
	inset: 0;
	z-index: 9999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.25rem;
	background: rgba(0, 0, 0, 0.88);
	cursor: zoom-out;
}

.cert-lightbox[hidden] {
	display: none !important;
}

.cert-lightbox img {
	max-width: min(96vw, 920px);
	max-height: 90vh;
	width: auto;
	height: auto;
	object-fit: contain;
	border: 1px solid rgba(201, 173, 114, 0.45);
	cursor: default;
}

.cert-lightbox-close {
	position: absolute;
	top: 0.75rem;
	right: 0.9rem;
	border: 0;
	background: transparent;
	color: #fff;
	font-size: 2rem;
	line-height: 1;
	cursor: pointer;
	z-index: 2;
}

.cert-lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	border: 0;
	background: rgba(0, 0, 0, 0.35);
	color: #fff;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 999px;
	font-size: 1.75rem;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cert-lightbox-prev {
	left: 0.6rem;
}

.cert-lightbox-next {
	right: 0.6rem;
}

.cert-lightbox-nav[hidden] {
	display: none !important;
}

body.cert-lightbox-open {
	overflow: hidden;
}

.weight-toggle {
	display: inline;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	cursor: pointer;
	text-decoration: underline;
	text-decoration-color: rgba(201, 173, 114, 0.55);
	text-underline-offset: 0.18em;
}

.weight-toggle:hover,
.weight-toggle:focus-visible {
	color: var(--gold, #c9ad72);
	text-decoration-color: currentColor;
	outline: none;
}

button.kog-price,
.kog-price {
	display: inline;
	padding: 0;
	margin: 0;
	border: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
	font-weight: inherit;
	cursor: pointer;
	text-decoration: none;
}

.kog-price-wrap {
	display: inline-flex;
	flex-wrap: nowrap;
	align-items: baseline;
	gap: 0.35em 0.75em;
	max-width: 100%;
}

.kog-price-wrap .kog-price,
.kog-price-wrap button.kog-price,
.kog-price-wrap button.available-price,
.kog-price-wrap .cart-row-price {
	display: inline;
	width: auto;
	text-align: inherit;
	white-space: nowrap;
}

.available-body > .kog-price-wrap,
.product-info > .kog-price-wrap,
.cart-row-info > .kog-price-wrap {
	margin: auto 0 0;
	padding-top: 0.85rem;
	font-size: 0.72rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold);
}

.product-info > .kog-price-wrap {
	margin: 0;
	padding-top: 0.35rem;
}

.cart-row-info > .kog-price-wrap {
	margin: 0;
	padding-top: 0;
	font-size: inherit;
	letter-spacing: 0.12em;
}

.kog-price-old,
button.kog-price.kog-price-old,
.kog-price-wrap .kog-price-old {
	color: #c62828 !important;
	text-decoration: line-through !important;
	opacity: 0.95;
}

.kog-price-sale {
	color: #2e7d32 !important;
	font-weight: 600;
}

.available-price.kog-price-sale,
button.available-price.kog-price-sale {
	color: #2e7d32 !important;
}

.kog-price-wrap .kog-price-old:hover,
.kog-price-wrap .kog-price-old:focus-visible,
button.kog-price.kog-price-old:hover,
button.kog-price.kog-price-old:focus-visible {
	color: #b71c1c !important;
	text-decoration: line-through !important;
}

.kog-price-wrap .kog-price-sale:hover,
.kog-price-wrap .kog-price-sale:focus-visible {
	color: #1b5e20 !important;
}

.available-price.kog-price:not(.kog-price-wrap *),
button.available-price:not(.kog-price-wrap *) {
	display: block;
	width: 100%;
	text-align: left;
	color: var(--gold);
}

.available-price.kog-price:not(.kog-price-wrap *):hover,
.available-price.kog-price:not(.kog-price-wrap *):focus-visible,
button.available-price:not(.kog-price-wrap *):hover,
button.available-price:not(.kog-price-wrap *):focus-visible {
	color: var(--gold);
}

.cart-total .kog-price {
	text-transform: none;
	letter-spacing: 0.04em;
}

.kog-price:hover,
.kog-price:focus-visible {
	color: inherit;
	text-decoration: none;
	outline: none;
}

.product-info {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	min-width: 0;
}

.product-info h1 {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: 1.6rem;
}

.product-cat {
	margin: 0;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--gold-muted);
}

.product-info .available-id,
.product-info .available-meta {
	margin: 0;
}

.product-info .available-price {
	margin: 0;
	padding-top: 0.35rem;
}

.product-notes {
	margin: 0;
	color: var(--muted, #c8c2b4);
	white-space: pre-wrap;
}

.product-info .available-add,
.product-info .available-compare {
	margin: 0;
	flex: 1 1 0;
	min-width: 0;
	width: auto;
	padding: 0.7rem 0.85rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	background: transparent;
	color: var(--white);
	font: inherit;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	cursor: pointer;
	transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.product-notes {
	margin: 0.85rem 0 0;
	font-size: 0.92rem;
	line-height: 1.5;
	color: var(--muted);
}

.product-ring-opts {
	display: flex;
	flex-wrap: wrap;
	gap: 0.7rem 1rem;
	margin: 0.85rem 0 0;
}

.product-ring-field {
	display: flex;
	flex-direction: column;
	gap: 0.3rem;
	min-width: 9rem;
	flex: 1 1 8rem;
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--muted);
}

.product-ring-field select {
	font: inherit;
	font-size: 0.92rem;
	font-weight: 400;
	letter-spacing: 0;
	text-transform: none;
	color: var(--text);
	background: var(--search-fill);
	border: 1px solid var(--line);
	padding: 0.65rem 0.7rem;
}

.product-ring-static {
	margin: 0;
	font-size: 0.95rem;
	font-weight: 500;
	letter-spacing: 0;
	text-transform: none;
	color: var(--white);
	line-height: 1.4;
}

.product-ring-field.is-static {
	min-width: 0;
}

.product-ring-hint {
	flex: 1 1 100%;
	margin: 0;
	font-size: 0.85rem;
	color: var(--muted);
}

.product-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin-top: 0.35rem;
	max-width: 22rem;
}

.product-info .available-add:hover:not(:disabled),
.product-info .available-compare:hover,
.product-info .available-add.is-added,
.product-info .available-compare.is-on {
	border-color: var(--gold);
	color: var(--gold);
	background: transparent;
}

@media (max-width: 800px) {
	.product-page {
		padding: 1.25rem 1rem 3rem;
	}
	.product-card {
		grid-template-columns: 1fr;
	}
}

.char-page {
	padding: 1.5rem 1.25rem 4rem;
}

.char-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.char-title {
	margin: 0 0 0.35rem;
	font-family: "Playfair Display", serif;
	font-size: 2rem;
	font-weight: 500;
	color: var(--white);
}

.char-sub {
	margin: 0 0 1.25rem;
	color: var(--text-muted);
	font-size: 0.95rem;
}

.char-search {
	margin: 0 0 1.25rem;
}

.char-search input {
	width: 100%;
	max-width: 28rem;
	padding: 0.7rem 0.9rem;
	border: 1px solid var(--line);
	border-radius: 2px;
	background: var(--search-fill);
	color: var(--white);
	font: inherit;
}

.char-search input:focus {
	outline: none;
	border-color: var(--gold);
	background: var(--search-fill-focus);
}

.char-meta {
	margin: 0 0 0.75rem;
	font-size: 0.75rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--gold-muted);
}

.char-wrap {
	overflow-x: hidden;
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(10, 8, 6, 0.75);
}

.char-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
	background: transparent;
}

.char-table th,
.char-table td {
	padding: 0.7rem 0.75rem;
	text-align: left;
	vertical-align: top;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.char-table thead th {
	position: sticky;
	top: 0;
	z-index: 2;
	background: rgba(10, 8, 6, 0.75);
	color: var(--gold);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.char-table tbody tr:nth-child(odd) {
	background: rgba(10, 8, 6, 0.75);
}

.char-table tbody tr:nth-child(even) {
	background: rgba(17, 14, 11, 0.75);
}

.char-table tbody tr:hover {
	background: rgba(22, 18, 14, 0.82);
}

.char-table tbody tr.is-hide {
	display: none;
}

.char-name {
	min-width: 10rem;
}

.char-en {
	display: inline;
	color: var(--white);
}

.char-ar,
.char-ar-inline {
	display: inline;
	margin-top: 0;
	margin-inline-start: 0.4rem;
	color: var(--gold-muted);
	font-size: 0.88rem;
}

.char-formula {
	font-family: "Source Sans Pro", sans-serif;
	font-size: 0.82rem;
	color: var(--text-muted);
	overflow-wrap: anywhere;
	word-break: break-word;
}

.char-empty {
	margin: 1rem 0 0;
	color: var(--text-muted);
}

@media (max-width: 800px) {
	.char-wrap {
		border: 0;
		background: transparent;
		overflow: visible;
	}

	.char-table,
	.char-table tbody {
		display: block;
		width: 100%;
		min-width: 0;
		background: transparent;
	}

	.char-table thead {
		display: none;
	}

	.char-table tbody tr {
		display: block;
		margin: 0 0 0.75rem;
		padding: 0.35rem 0.15rem 0.55rem;
		border: 1px solid rgba(255, 255, 255, 0.08);
		background: rgba(10, 8, 6, 0.75);
	}

	.char-table tbody tr:nth-child(even) {
		background: rgba(10, 8, 6, 0.75);
	}

	.char-table tbody tr.is-hide {
		display: none;
	}

	.char-table td {
		display: grid;
		grid-template-columns: 5.6rem minmax(0, 1fr);
		gap: 0.45rem 0.7rem;
		padding: 0.4rem 0.7rem;
		border-bottom: 0;
		min-width: 0;
	}

	.char-table td:nth-child(1),
	.char-table td:nth-child(5) {
		display: flex;
		flex-wrap: nowrap;
		align-items: baseline;
		column-gap: 0.7rem;
	}

	.char-table td::before {
		content: attr(data-label);
		color: var(--gold);
		font-size: 0.62rem;
		font-weight: 600;
		letter-spacing: 0.12em;
		text-transform: uppercase;
		padding-top: 0.15rem;
	}

	.char-table td:nth-child(1)::before,
	.char-table td:nth-child(5)::before {
		flex: 0 0 5.6rem;
	}

	.char-table td:nth-child(1)::before { content: "Name"; }
	.char-table td:nth-child(2)::before { content: "SG"; }
	.char-table td:nth-child(3)::before { content: "Hardness"; }
	.char-table td:nth-child(4)::before { content: "RI"; }
	.char-table td:nth-child(5)::before { content: "Family"; }
	.char-table td:nth-child(6)::before { content: "Formula"; }

	.char-name {
		min-width: 0;
	}

	.char-en,
	.char-ar,
	.char-ar-inline {
		display: inline;
		white-space: nowrap;
	}

	.char-ar,
	.char-ar-inline {
		margin-top: 0;
		margin-inline-start: 0.4rem;
		font-size: 0.95em;
	}

	.char-formula {
		font-size: 0.8rem;
		line-height: 1.45;
	}
}

.value-list {
	display: grid;
	gap: 1.25rem;
}

.value-card {
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: #0a0806;
	padding: 1.25rem 1.35rem 1.4rem;
}

.value-card h2 {
	margin: 0 0 0.2rem;
	font-family: "Playfair Display", serif;
	font-size: 1.45rem;
	font-weight: 500;
}

.value-card .char-ar {
	margin-bottom: 1rem;
}

.value-formula {
	margin: 0 0 1rem;
	color: var(--gold);
	line-height: 1.7;
	font-size: 1.02rem;
}

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

.value-factors li {
	display: flex;
	justify-content: space-between;
	gap: 1rem;
	padding: 0.45rem 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
	color: var(--text-muted);
}

.value-factors span {
	color: var(--white);
}

.course-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 1.25rem;
}

.course-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	color: inherit;
	background: rgba(10, 8, 6, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: border-color 0.25s ease, background 0.25s ease;
}

.course-card:hover {
	border-color: var(--gold);
	background: rgba(10, 8, 6, 0.88);
}

.course-card img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
	background: rgba(0, 0, 0, 0.35);
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.course-card-body {
	padding: 1rem 1.1rem 1.2rem;
}

.course-label {
	margin: 0 0 0.35rem;
	font-size: 0.62rem;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gold);
}

.course-card h2 {
	margin: 0;
	font-family: "Playfair Display", serif;
	font-size: 1.25rem;
	font-weight: 500;
}

.course-card .char-ar {
	margin-top: 0.25rem;
}

.course-back {
	margin: 0 0 1.25rem;
	font-size: 0.78rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.course-back a {
	color: var(--gold-muted);
}

.course-back a:hover {
	color: var(--white);
}

.course-lessons {
	display: grid;
	gap: 1.25rem;
}

.course-lesson {
	border: 1px solid rgba(255, 255, 255, 0.08);
	background: rgba(10, 8, 6, 0.75);
	padding: 1.1rem 1.15rem 1.25rem;
}

.course-lesson h2 {
	margin: 0 0 0.85rem;
	font-family: "Playfair Display", serif;
	font-size: 1.2rem;
	font-weight: 500;
	text-align: center;
}

.course-lesson video {
	width: 100%;
	max-width: 720px;
	height: auto;
	display: block;
	margin: 0 auto;
	background: #000;
}

.course-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	justify-content: center;
	margin-top: 1.5rem;
}

.course-actions .btn-ghost {
	margin-top: 0;
	text-decoration: none;
	display: inline-block;
}

.workshop-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.workshop-card {
	display: flex;
	flex-direction: column;
	min-width: 0;
	color: inherit;
	background: rgba(10, 8, 6, 0.75);
	border: 1px solid rgba(255, 255, 255, 0.08);
	transition: border-color 0.25s ease, background 0.25s ease;
}

.workshop-card:hover {
	border-color: var(--gold);
	background: rgba(10, 8, 6, 0.88);
}

.workshop-card img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	display: block;
	background: rgba(0, 0, 0, 0.35);
}

.workshop-price {
	margin: 0;
	padding: 0.7rem 0.85rem 0.85rem;
	font-family: "Playfair Display", serif;
	font-size: 1.05rem;
	font-weight: 500;
	color: var(--gold);
	text-align: center;
}

@media (max-width: 800px) {
	.workshop-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 520px) {
	.workshop-grid {
		grid-template-columns: 1fr;
	}
}

.order-view {
	padding: 0.6rem 0.5rem 1.5rem;
}

.order-view-inner {
	max-width: 1100px;
	margin: 0 auto;
}

.order-view-back {
	margin: 0 0 0.4rem;
}

.order-view-back a {
	color: #000;
	text-decoration: underline;
	font-size: 0.85rem;
}

.order-view-title {
	margin: 0 0 0.25rem;
	font-family: "Source Sans Pro", sans-serif;
	font-size: 1.2rem;
	font-weight: 600;
	color: #000;
}

.order-view-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem 0.8rem;
	margin: 0 0 0.2rem;
	color: #000;
	font-size: 0.82rem;
}

.order-view-sum {
	margin: 0 0 0.15rem;
	font-size: 0.9rem;
	color: #000;
}

.order-view-note,
.order-view-ship {
	margin: 0 0 0.35rem;
	color: #000;
	font-size: 0.82rem;
}

.order-view-notes {
	margin: 0 0 0.85rem;
	padding: 0.75rem 0.9rem;
	border: 1px solid #d4c4a8;
	border-radius: 8px;
	background: rgba(212, 196, 168, 0.15);
}

.order-view-notes-title {
	margin: 0 0 0.35rem;
	font-size: 0.78rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #5c4a32;
}

.order-view-notes-text {
	margin: 0;
	font-size: 0.88rem;
	line-height: 1.45;
	color: #1a1a1a;
	white-space: pre-wrap;
}

.order-view-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.55rem;
	margin: 0 0 0.75rem;
}

.order-view-banner {
	margin: 0.65rem 0 0.85rem;
	padding: 0.85rem 1rem;
	border: 1px solid #25d366;
	background: rgba(37, 211, 102, 0.08);
	border-radius: 8px;
}

.order-view-banner-title {
	margin: 0 0 0.35rem;
	font-size: 0.95rem;
	font-weight: 700;
	color: #000;
}

.order-view-banner-text {
	margin: 0;
	font-size: 0.86rem;
	line-height: 1.45;
	color: #111;
}

.order-view-wa-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.72rem 1.1rem;
	border: 0;
	border-radius: 6px;
	background: #25d366;
	color: #0b1a10 !important;
	font: inherit;
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	cursor: pointer;
}

.order-view-wa-btn:hover {
	background: #1ebe59;
	color: #0b1a10 !important;
}

.order-view-copy-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.72rem 1rem;
	border: 1px solid #000;
	border-radius: 6px;
	background: #fff;
	color: #000;
	font: inherit;
	font-size: 0.84rem;
	font-weight: 600;
	cursor: pointer;
}

.order-view-copy-btn:hover {
	background: #f5f5f5;
}

.order-view-sticky {
	display: none;
}

.order-view-wa {
	display: inline-block;
	margin-top: 0;
	color: #000;
	text-decoration: underline;
	font-size: 0.82rem;
}

.order-view-table-wrap {
	margin: 0;
}

.order-view-table {
	display: grid;
	min-width: 760px;
	width: 100%;
	border: 1px solid #000;
	background: #fff;
	font-size: 0.82rem;
}

.order-view-head,
.order-view-row,
.order-view-foot {
	display: grid;
	grid-template-columns: 1.8rem minmax(88px, 0.9fr) minmax(160px, 2.2fr) 1.7rem 0.7fr 0.65fr 0.75fr;
	align-items: center;
	gap: 0.2rem;
	padding: 0.18rem 0.3rem;
	color: #000;
}

.order-view-head {
	background: #fff;
	border-bottom: 1px solid #000;
	font-size: 0.72rem;
	font-weight: 700;
}

.order-view-row {
	text-decoration: none;
	border-top: 1px solid #ccc;
	background: #fff;
}

.order-view-row:hover {
	background: #f3f3f3;
}

a.order-view-row {
	cursor: pointer;
	color: #000;
}

div.order-view-row {
	cursor: default;
}

.order-view-row.is-skip {
	opacity: 0.55;
}

.order-view-row span:nth-child(5),
.order-view-row span:nth-child(6),
.order-view-row span:nth-child(7),
.order-view-head span:nth-child(5),
.order-view-head span:nth-child(6),
.order-view-head span:nth-child(7),
.order-view-foot span:nth-child(5),
.order-view-foot span:nth-child(6),
.order-view-foot span:nth-child(7) {
	text-align: right;
}

.order-view-name {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
}

.order-view-name strong {
	font-weight: 600;
	color: #000;
}

.order-view-name em {
	font-style: normal;
	font-size: 0.72rem;
	color: #333;
	line-height: 1.2;
}

.order-view-thumb-cell {
	display: flex;
	align-items: center;
	justify-content: center;
}

.order-view-thumb {
	width: 1.55rem;
	height: 1.55rem;
	object-fit: contain;
	display: block;
	background: #eee;
}

.order-view-foot {
	border-top: 1px solid #000;
	background: #fff;
	font-weight: 700;
}

.order-view-skip {
	font-size: 0.7rem;
	font-weight: 700;
	font-style: normal;
	color: #000;
}

html.order-view-page,
html.order-view-page body {
	overflow-x: auto;
	max-width: none;
	background: #fff;
	color: #000;
}

html.order-view-page body::before,
html.order-view-page body::after {
	display: none;
}

html.order-view-page .site {
	min-width: 800px;
	background: #fff;
}

html.order-view-page .header {
	padding: 0.5rem 0.5rem 0;
}

html.order-view-page .footer {
	padding: 0.75rem 0.5rem 1rem;
}

html.order-view-page .brand-name,
html.order-view-page .brand-tag,
html.order-view-page .menu-toggle,
html.order-view-page .menu-close,
html.order-view-page .nav a,
html.order-view-page .footer,
html.order-view-page .footer a {
	color: #000;
}

html.order-view-page .brand-icon {
	filter: none;
}

html.order-view-page .menu-toggle,
html.order-view-page .menu-close {
	border-color: #000;
	background: #fff;
}

html.order-view-page .footer a:hover,
html.order-view-page .nav a:hover {
	color: #000;
	text-decoration: underline;
}

@media (max-width: 720px) {
	html.order-view-page .order-view-sticky {
		display: flex;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 900;
		padding: 0.65rem 0.75rem calc(0.65rem + env(safe-area-inset-bottom, 0px));
		background: rgba(255, 255, 255, 0.96);
		border-top: 1px solid rgba(0, 0, 0, 0.12);
		box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
	}

	html.order-view-page .order-view-sticky .order-view-wa-btn {
		width: 100%;
	}

	html.order-view-page .order-view {
		padding-bottom: 5rem;
	}
}

@media (max-width: 900px) {
	html.order-view-page .nav {
		background: #fff;
		color: #000;
	}

	html.order-view-page .menu-toggle,
	html.order-view-page .menu-close {
		border-color: #000;
		color: #000;
		background: #fff;
	}

	html.order-view-page .nav a,
	html.order-view-page .menu-label {
		color: #000;
	}
}

.lang-switch {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.lang-switch a,
.lang-switch-toggle {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.4rem;
	padding: 0.55rem 0.65rem;
	border: 1px solid rgba(255, 255, 255, 0.45);
	color: var(--gold);
	font-size: 0.68rem;
	font-weight: 600;
	letter-spacing: 0.06em;
	line-height: 1;
	text-decoration: none;
}

.lang-switch a.is-on,
.lang-switch-toggle.is-on {
	border-color: var(--gold);
	color: var(--gold);
}

html[lang="ar"] body,
html.is-ar body {
	font-family: "Cairo", "Source Sans Pro", sans-serif;
	font-weight: 400;
}

html[lang="ar"] .nav {
	direction: rtl;
}

html[lang="en"] .nav {
	direction: ltr;
}

html[lang="ar"] .brand-tag,
html[lang="ar"] .nav a,
html[lang="ar"] .cart-toggle,
html[lang="ar"] .cart-title,
html[lang="ar"] .menu-toggle,
html[lang="ar"] .menu-close,
html[lang="ar"] .menu-label,
html[lang="ar"] .hero-eyebrow,
html[lang="ar"] .available-title,
html[lang="ar"] .available-scope-btn,
html[lang="ar"] .available-add,
html[lang="ar"] .available-card-sheet-add,
html[lang="ar"] .available-card-sheet-view,
html[lang="ar"] .btn-ghost,
html[lang="ar"] .compare-title,
html[lang="ar"] .char-title,
html[lang="ar"] .cart-empty-btn,
html[lang="ar"] .cart-close,
html[lang="ar"] .cart-purchase {
	letter-spacing: 0;
	text-transform: none;
}

.kog-order-backdrop {
	position: fixed;
	inset: 0;
	z-index: 1200;
	background: rgba(0, 0, 0, 0.72);
}

.kog-order-backdrop[hidden],
.kog-order-modal[hidden] {
	display: none !important;
}

.kog-order-modal {
	position: fixed;
	inset: 0;
	z-index: 1201;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	pointer-events: none;
}

.kog-order-dialog {
	pointer-events: auto;
	width: min(100%, 420px);
	background: #1a1a1a;
	border: 1px solid rgba(201, 173, 114, 0.35);
	border-radius: 10px;
	padding: 1.25rem 1.35rem 1.35rem;
	box-shadow: 0 18px 48px rgba(0, 0, 0, 0.55);
}

.kog-order-dialog h2 {
	margin: 0 0 0.35rem;
	font-size: 1.15rem;
	color: var(--gold, #c9ad72);
}

.kog-order-id {
	margin: 0 0 0.75rem;
	font-size: 0.95rem;
	color: rgba(255, 255, 255, 0.85);
	word-break: break-all;
}

.kog-order-hint {
	margin: 0 0 1rem;
	font-size: 0.88rem;
	line-height: 1.45;
	color: rgba(255, 255, 255, 0.72);
}

.kog-order-actions {
	display: flex;
	flex-direction: column;
	gap: 0.55rem;
}

.kog-order-wa,
.kog-order-copy,
.kog-order-done {
	display: block;
	width: 100%;
	text-align: center;
	padding: 0.65rem 0.85rem;
	border-radius: 6px;
	font: inherit;
	cursor: pointer;
	text-decoration: none;
}

.kog-order-wa {
	background: #25d366;
	color: #0b1a10 !important;
	font-weight: 600;
	border: 0;
}

.kog-order-wa:hover {
	background: #1ebe59;
	color: #0b1a10 !important;
}

.kog-order-copy {
	background: transparent;
	color: var(--gold, #c9ad72);
	border: 1px solid rgba(201, 173, 114, 0.45);
}

.kog-order-copy:hover {
	border-color: var(--gold, #c9ad72);
}

.kog-order-done {
	background: rgba(201, 173, 114, 0.14);
	color: #fff;
	border: 1px solid rgba(201, 173, 114, 0.25);
}

.kog-order-done:hover {
	background: rgba(201, 173, 114, 0.22);
}

body.kog-order-open {
	overflow: hidden;
}
