/* =========================================================
   Natural Gems — Base CSS (theme-base.css)
   Contains core design tokens, resets, header, footer,
   global components, cart drawer, and base overrides.
   ========================================================= */

:root {
	--c-background: #ffffff;
	--c-on-background: #154470;
	--c-surface: #ffffff;
	--c-surface-lowest: #fdfcf9;
	--c-surface-low: #faf9f5;
	--c-surface-container: #ffffff;
	--c-surface-high: #f5f4f0;
	--c-on-surface: #154470;
	--c-on-surface-variant: rgba(21, 68, 112, 0.65);
	--c-outline-variant: rgba(21, 68, 112, 0.08);
	--c-primary: #154470;
	--c-on-primary: #ffffff;
	--c-secondary: #b48f3a;
	--c-secondary-fixed: #b48f3a;
	--c-on-secondary-fixed: #ffffff;
	--c-secondary-fixed-dim: #fdfcf9;
	--c-header-bg: #ffffff;
	--font-headline: "Libre Caslon Text", serif;
	--font-body: "Inter", sans-serif;
	--container: 1280px;
}


/* Base resets */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
	background: var(--c-background);
	color: var(--c-on-background);
	font-family: var(--font-body);
	font-size: 16px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
input { font: inherit; }

/* Screen-reader-only accessibility class */
.sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0,0,0,0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

.header-bg { background-color: var(--c-header-bg); color: var(--c-on-primary); }
.ng-container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) { .ng-container { padding: 0 80px; } }

.ng-headline { font-family: var(--font-headline); font-weight: 400; line-height: 1.1; margin: 0; color: var(--c-primary); }
.ng-label-caps { font-family: var(--font-body); font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; font-size: 10px; }
.ng-gold { color: var(--c-secondary-fixed); }
.ng-gold-dim { color: var(--c-secondary); }
.ng-bg-surface { background: var(--c-surface); }
.ng-bg-background { background: var(--c-background); }
.ng-bg-low { background: var(--c-surface-low); }

.ng-desktop-only { display: none !important; }
.ng-mobile-only { display: inline-flex !important; }
@media (min-width: 768px) {
	.ng-desktop-only { display: inline-flex !important; }
	.ng-mobile-only { display: none !important; }
}

/* =================== HEADER =================== */
.ng-header { position: sticky; top: 0; z-index: 40; width: 100%; transition: transform .5s cubic-bezier(.22,1,.36,1); background: var(--c-header-bg); }
body.home .ng-header { position: fixed !important; }
.ng-header.is-hidden { transform: translateY(-100%); }
.ng-header.is-at-top { transition: none !important; }
.admin-bar .ng-header { top: 32px !important; }
@media (max-width: 782px) {
	.admin-bar .ng-header { top: 46px !important; }
}
.ng-topbar { display: none; border-bottom: 1px solid rgba(21, 68, 112, 0.06); }
@media (min-width: 768px) { .ng-topbar { display: block; } }
.ng-topbar__row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; }
.ng-topbar__hours { display: flex; gap: 24px; }
.ng-topbar__hours .ng-label-caps, .ng-topbar__loc .ng-label-caps { color: var(--c-primary); opacity: .5; font-size: 10px; }
.ng-topbar__loc { display: inline-flex; align-items: center; gap: 8px; color: var(--c-primary); opacity: .8; }

.ng-nav {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	padding: 12px 20px;
	max-width: var(--container);
	margin: 0 auto;
}
@media (min-width: 768px) {
	.ng-nav {
		padding: 20px 40px;
	}
}

.ng-brand {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	color: var(--c-primary) !important;
	text-decoration: none;
	line-height: 1;
}

.ng-brand__name {
	font-family: "Libre Caslon Text", "Cormorant Garamond", Georgia, serif !important;
	font-size: 20px !important;
	letter-spacing: 0.14em !important;
	border-bottom: 1.2px solid rgba(21, 68, 112, 0.6) !important;
	padding-bottom: 4px !important;
	font-weight: 400 !important;
	text-transform: uppercase;
}

@media (min-width: 768px) {
	.ng-brand__name {
		font-size: 26px !important;
	}
}

.ng-brand__subtext {
	font-size: 10px;
	letter-spacing: 0.4em;
	margin-top: 5px;
	color: rgba(21, 68, 112, 0.8);
	font-family: var(--font-body);
}

.ng-menu-center {
	display: none;
	align-items: stretch;
	gap: 40px;
}
@media (min-width: 768px) {
	.ng-menu-center {
		display: flex;
	}
}

.ng-menu-center .ng-nav-item-wrap {
	position: static;
	display: flex;
	align-items: center;
	height: 100%;
}

.ng-menu-center .ng-nav-item-wrap > a {
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.28em;
	color: var(--c-primary);
	text-transform: uppercase;
	text-decoration: none;
	padding: 8px 0;
	display: inline-flex;
	align-items: center;
	position: relative;
}

.ng-menu-center .ng-nav-item-wrap > a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1.5px;
	background: var(--c-primary);
	transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.ng-menu-center .ng-nav-item-wrap:hover > a::after {
	width: 100%;
}

.ng-nav__right-wrapper {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 8px;
}
@media (min-width: 768px) {
	.ng-nav__right-wrapper {
		gap: 16px;
	}
}

.ng-menu-burger {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 8px;
	background: transparent;
	border: 0;
	cursor: pointer;
}
@media (min-width: 768px) {
	.ng-menu-burger {
		display: none;
	}
}
.ng-menu-burger span {
	display: block;
	width: 22px;
	height: 1.5px;
	background: var(--c-primary);
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform-origin: left center;
}

.ng-menu-burger.is-open .ng-line-1 {
	transform: rotate(45deg) translate(2px, -1.5px);
}
.ng-menu-burger.is-open .ng-line-2 {
	opacity: 0;
}
.ng-menu-burger.is-open .ng-line-3 {
	transform: rotate(-45deg) translate(2px, 1.5px);
}

.ng-iconlink {
	color: var(--c-primary);
	display: inline-flex;
	position: relative;
	transition: opacity 0.2s;
	padding: 8px;
}
.ng-iconlink:hover {
	opacity: 0.7;
	color: var(--c-primary);
}

.ng-badge {
	position: absolute;
	top: 0px;
	right: 0px;
	background: var(--c-primary);
	color: #ffffff;
	font-size: 8px;
	font-weight: 500;
	min-width: 14px;
	height: 14px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 3px;
}

.ng-search-wrapper {
	padding: 0 24px 16px;
}
@media (min-width: 768px) {
	.ng-search-wrapper {
		padding: 0 40px 16px;
		display: flex;
		justify-content: center;
	}
}

.ng-search-container {
	display: flex;
	align-items: center;
	height: 36px;
	width: 100%;
	border: 1px solid rgba(21, 68, 112, 0.4);
	border-radius: 9999px;
	padding: 0 16px;
	transition: border-color 0.3s;
	background: transparent;
	text-decoration: none;
}
@media (min-width: 768px) {
	.ng-search-container {
		max-width: 768px;
		padding: 0 20px;
	}
}

.ng-search-container:focus-within {
	border-color: var(--c-primary);
}

.ng-search-container svg {
	width: 14px;
	height: 14px;
	color: var(--c-primary);
	flex-shrink: 0;
}

.ng-search-container input {
	margin-left: 8px;
	flex-grow: 1;
	border: 0;
	background: transparent;
	outline: none;
	font-family: var(--font-body);
	font-size: 12px;
	letter-spacing: 0.05em;
	color: var(--c-primary);
	height: 100%;
}

.ng-search-container input::placeholder {
	color: rgba(21, 68, 112, 0.5);
}

.ng-mobile-menu-dropdown {
	height: 0;
	overflow: hidden;
	transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
	background: #ffffff;
}

.ng-mobile-menu-inner {
	display: flex;
	flex-direction: column;
	padding: 24px;
	gap: 20px;
	border-top: 1px solid rgba(21, 68, 112, 0.08);
}

.ng-mobile-menu-inner a {
	font-family: var(--font-body);
	font-size: 13.5px;
	font-weight: 500;
	letter-spacing: 0.2em;
	color: var(--c-primary);
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.2s;
}

.ng-mobile-menu-inner a:hover {
	color: var(--c-secondary);
}



/* Header Entrance Animations */
@keyframes headerSlideIn {
	from { transform: translateY(-80px); opacity: 0; }
	to { transform: translateY(0); opacity: 1; }
}

.ng-header {
	animation: headerSlideIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes navLinkFadeIn {
	from { opacity: 0; transform: translateY(8px); }
	to { opacity: 1; transform: translateY(0); }
}

.ng-nav-item-wrap {
	opacity: 0;
	animation: navLinkFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.ng-nav-item-wrap:nth-child(1) { animation-delay: 0.3s; }
.ng-nav-item-wrap:nth-child(2) { animation-delay: 0.38s; }
.ng-nav-item-wrap:nth-child(3) { animation-delay: 0.46s; }
.ng-nav-item-wrap:nth-child(4) { animation-delay: 0.54s; }
.ng-nav-item-wrap:nth-child(5) { animation-delay: 0.62s; }
.ng-nav-item-wrap:nth-child(6) { animation-delay: 0.7s; }

@keyframes searchBarFadeIn {
	from { opacity: 0; transform: translateY(-6px); }
	to { opacity: 1; transform: translateY(0); }
}

.ng-searchbar {
	opacity: 0;
	animation: searchBarFadeIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}


/* Menu drawer */
.ng-drawer-overlay {
	position: fixed; inset: 0; background: rgba(0,0,0,.7);
	opacity: 0; pointer-events: none; transition: opacity .5s; z-index: 58;
}
.ng-drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
.ng-menu-drawer {
	position: fixed; top: 0; left: 0; height: 100%;
	width: 88vw; max-width: 420px; z-index: 59;
	transform: translateX(-100%); transition: transform .5s cubic-bezier(.22,1,.36,1);
	display: flex; flex-direction: column; box-shadow: 0 25px 50px -12px rgba(0,0,0,.5);
}
.ng-menu-drawer.is-open { transform: translateX(0); }
.ng-menu-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 24px; border-bottom: 1px solid rgba(255,255,255,.1); }
.ng-menu-drawer__body { flex: 1; overflow-y: auto; padding: 24px; }
.ng-menu-drawer__list { list-style: none; margin: 0; padding: 0; }
.ng-menu-drawer__list a { display: flex; align-items: baseline; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.05); transition: border-color .25s; }
.ng-menu-drawer__list a:hover { border-color: rgba(255,222,165,.4); }
.ng-menu-drawer__label { font-family: var(--font-headline); font-size: 28px; color: var(--c-on-primary); }
.ng-menu-drawer__list a:hover .ng-menu-drawer__label { color: var(--c-secondary-fixed); }
.ng-menu-drawer__num { font-family: var(--font-body); font-size: 10px; letter-spacing: .2em; opacity: .3; }
.ng-menu-drawer__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.1); }
.ng-menu-drawer__cols p.ng-label-caps { margin: 0 0 12px; font-size: 10px; letter-spacing: .3em; }
.ng-menu-drawer__cols a { display: block; font-size: 14px; padding: 4px 0; color: rgba(255,255,255,.85); }
.ng-menu-drawer__cols a:hover { color: var(--c-secondary-fixed); }
.ng-menu-drawer__addr { font-size: 14px; color: rgba(255,255,255,.7); margin: 0; }

/* =================== BUTTONS =================== */
.ng-btn {
	display: inline-flex; align-items: center; gap: 12px;
	padding: 16px 32px; font-family: var(--font-body); font-weight: 600;
	font-size: 11px; letter-spacing: .25em; text-transform: uppercase;
	transition: background .25s, color .25s, transform .25s;
}
.ng-btn--outline { border: 1px solid #ffffff; color: #ffffff; }
.ng-btn--outline:hover { background: #ecb5b5; color: var(--c-background); border-color: #ecb5b5; }
.ng-btn--gold { background: var(--c-surface-lowest); color: #ffffff; border: 1px solid rgba(255, 255, 255, 0.3); padding: 16px 32px; }
@media (min-width: 768px) { .ng-btn--gold { padding: 20px 48px; font-size: 12px; } }
.ng-btn--gold:hover { background: #ecb5b5; color: var(--c-background); border-color: #ecb5b5; transform: scale(1.04); }

/* =================== PRODUCT CARD =================== */
.ng-card {
	display: flex;
	flex-direction: column;
	background: transparent !important;
	border: 0 !important;
	padding: 0 !important;
	box-shadow: none !important;
	margin: 0;
	transition: none !important;
}
.ng-card:hover {
	transform: none !important;
	box-shadow: none !important;
}
.ng-card__media { position: relative; display: block; background: none !important; overflow: hidden; z-index: 1; }
.ng-card__img-wrap { position: relative; aspect-ratio: 4 / 5; display: flex; align-items: center; justify-content: center; padding: 0 !important; overflow: hidden; }
.ng-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); }

.ng-card.has-hover-image .ng-card__img-primary {
	position: relative;
	z-index: 1;
}
.ng-card.has-hover-image .ng-card__img-hover {
	position: absolute;
	top: 0;
	left: 100%;
	z-index: 2;
}
.ng-card.has-hover-image:not(.has-swatch-hovered):hover .ng-card__img-primary {
	transform: translateX(-100%);
}
.ng-card.has-hover-image:not(.has-swatch-hovered):hover .ng-card__img-hover {
	transform: translateX(-100%);
}

/* Disable hover slide when a swatch is active */
.ng-card.has-swatch-hovered .ng-card__img-primary {
	transform: none !important;
}
.ng-card.has-swatch-hovered .ng-card__img-hover {
	transform: none !important;
	display: none !important;
}

.ng-card:not(.has-hover-image):hover .ng-card__img-wrap img {
	transform: scale(1.05);
}
.ng-card__tag {
	position: absolute;
	top: 12px;
	left: 12px;
	background: var(--c-surface-lowest) !important;
	color: #ffffff !important;
	border: 1px solid rgba(255, 255, 255, 0.2) !important;
	font-family: var(--font-body) !important;
	font-weight: 600 !important;
	font-size: 9px !important;
	letter-spacing: .15em !important;
	padding: 4px 10px !important;
	text-transform: uppercase !important;
	border-radius: 0 !important;
	z-index: 3;
}
.ng-card__wish {
	position: absolute; top: 12px; right: 12px;
	width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
	color: #ffffff !important; transition: all .25s ease;
	background: rgba(14, 23, 48, 0.6) !important;
	border: 1px solid rgba(255, 255, 255, 0.25) !important;
	border-radius: 50% !important;
	z-index: 3;
}
.ng-card__wish:hover {
	transform: scale(1.1);
	color: #070e22 !important;
	background: #ecb5b5 !important;
	border-color: #ecb5b5 !important;
}
.ng-card__wish.is-active {
	color: #070e22 !important;
	background: #ecb5b5 !important;
	border-color: #ecb5b5 !important;
}
.ng-card__wish.is-active svg { fill: currentColor; }


.ng-card__meta {
	padding-top: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}
.ng-card__title {
	font-family: var(--font-body) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	color: var(--c-primary) !important;
	line-height: 1.4 !important;
	transition: color .25s;
	text-transform: none !important;
	text-align: center;
	margin: 0 !important;
}
.ng-card__title:hover { color: var(--c-secondary); }
.ng-card__brand { display: none !important; } /* Hide brand text to match minimal mockup */
.ng-card__price {
	font-family: var(--font-body) !important;
	color: var(--c-primary) !important;
	font-size: 14px !important;
	font-weight: 400 !important;
	margin: 4px 0 0 0 !important;
	text-align: center;
}
.ng-card__price ins { background: none; color: var(--c-primary); text-decoration: none; }
.ng-card__price del { color: var(--c-on-surface-variant); margin-right: 8px; font-size: 12px; }

/* Swatches styling inside the card */
.ng-card__swatches {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 12px;
}
.ng-card__swatch {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	border: 1px solid transparent;
	outline: 1px solid var(--c-outline-variant);
	outline-offset: 1px;
	cursor: pointer;
	padding: 0;
	transition: transform 0.2s, outline-color 0.2s;
}
.ng-card__swatch:hover, .ng-card__swatch.is-active {
	transform: scale(1.1);
	outline-color: var(--c-primary);
}

.ng-card__actions {
	display: flex;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.25s, visibility 0.25s;
	margin-top: 14px;
	width: 100%;
}
.ng-card:hover .ng-card__actions {
	opacity: 1;
	visibility: visible;
}
@media (max-width: 767px) {
	.ng-card__actions {
		opacity: 1;
		visibility: visible;
	}
}

/* Underlined text buttons for Add to Cart and Quick View */
.ng-card__add, .ng-card__quick-btn {
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	gap: 6px !important;
	width: auto !important;
	background: none !important;
	color: var(--c-primary) !important;
	border: 0 !important;
	padding: 0 0 2px 0 !important;
	border-bottom: 1.2px solid var(--c-primary) !important;
	font-family: var(--font-body) !important;
	font-weight: 600 !important;
	font-size: 11px !important;
	letter-spacing: .2em !important;
	text-transform: uppercase !important;
	text-decoration: none !important;
	cursor: pointer !important;
	transition: color .25s, border-color .25s !important;
}
.ng-card__add:hover, .ng-card__quick-btn:hover {
	color: var(--c-secondary) !important;
	border-bottom-color: var(--c-secondary) !important;
}

/* =================== FOOTER =================== */
.ng-footer {
	background: #000000 !important;
	border-top: 1px solid rgba(255,255,255,.05);
	color: #ffffff;
}
.ng-footer__inner {
	padding: 80px 24px 60px;
}
@media (min-width: 900px) {
	.ng-footer__inner {
		padding: 100px 80px 60px;
	}
	.ng-footer__grid {
		display: grid;
		grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
		gap: 60px;
		margin-bottom: 80px;
	}
}
.ng-footer__brand-row {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	color: #ffffff;
}
.ng-footer__brand-row svg {
	color: var(--c-secondary-fixed) !important;
}
.ng-footer__brand-name {
	font-family: "Libre Caslon Text", "Cormorant Garamond", Georgia, serif !important;
	font-size: 22px;
	letter-spacing: 0.05em;
	font-weight: 400;
}
.ng-footer__brand-desc {
	color: rgba(255,255,255,.5);
	font-size: 13.5px;
	line-height: 1.8;
	max-width: 320px;
}
.ng-footer__col h3, .ng-footer__news h3 {
	margin: 0 0 24px;
	letter-spacing: .25em;
	font-size: 11px;
	font-weight: 600;
	color: var(--c-secondary-fixed) !important;
}
.ng-footer__col ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.ng-footer__col li, .ng-footer__col a {
	color: rgba(255,255,255,.62);
	font-size: 13.5px;
	text-decoration: none;
	transition: all 0.25s ease;
}
.ng-footer__col a:hover, .ng-footer__col li:hover {
	color: #ffffff !important;
	padding-left: 4px;
}
.ng-footer__news {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.ng-footer__news p {
	color: rgba(255,255,255,.5);
	font-size: 13.5px;
	line-height: 1.6;
	margin: 0;
}
.ng-news-form {
	display: flex;
	align-items: center;
	gap: 12px;
	border-bottom: 1.2px solid rgba(255,255,255,.15);
	padding-bottom: 10px;
	transition: border-color 0.3s ease;
}
.ng-news-form:focus-within {
	border-color: var(--c-secondary-fixed);
}
.ng-news-form input {
	flex: 1;
	background: transparent;
	border: 0;
	color: #ffffff;
	font-size: 13.5px;
	outline: none;
	font-family: var(--font-body);
}
.ng-news-form input::placeholder {
	color: rgba(255,255,255,.3);
}
.ng-news-form button {
	color: var(--c-secondary-fixed);
	background: transparent;
	border: 0;
	cursor: pointer;
	transition: transform .25s ease, color .25s ease;
}
.ng-news-form button:hover {
	transform: translateX(6px);
	color: #ffffff;
}
.ng-footer__legal {
	padding-top: 36px;
	border-top: 1px solid rgba(255,255,255,.06);
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
}
@media (min-width: 768px) {
	.ng-footer__legal {
		flex-direction: row;
		justify-content: space-between;
	}
}
.ng-footer__legal p {
	color: rgba(255,255,255,.35);
	font-size: 10px;
	letter-spacing: 0.1em;
}
.ng-footer__social {
	display: flex;
	align-items: center;
	gap: 28px;
}
.ng-footer__social a, .ng-footer__social span {
	color: rgba(255,255,255,.45);
	font-size: 10px;
	letter-spacing: 0.15em;
	text-decoration: none;
	transition: color 0.25s ease;
}
.ng-footer__social a:hover, .ng-footer__social span:hover {
	color: var(--c-secondary-fixed) !important;
}
.ng-footer__spacer { display: none !important; }

/* WooCommerce Ajax Add to Cart and View Cart custom styling */
.added_to_cart {
	display: none !important;
}
.ng-card__add.added {
	font-size: 0 !important;
}
.ng-card__add.added::before {
	content: "VIEW CART" !important;
	font-size: 11px !important;
	letter-spacing: .2em !important;
	font-weight: 600;
}
.ng-card__add.added svg {
	display: none !important;
}

/* =================== REVEAL =================== */
.ng-reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s ease; }
.ng-reveal.is-shown { opacity: 1; transform: none; }

/* =================== MAIN =================== */
.ng-main { padding: 80px 0; min-height: 60vh; }
.ng-page .ng-headline, .ng-post .ng-headline { font-size: 36px; margin-bottom: 24px; }
.ng-404 { text-align: center; }

/* =================== WHATSAPP FLOATING =================== */
.ng-whatsapp {
	position: fixed; right: 20px; bottom: 20px; z-index: 50;
	width: 56px; height: 56px; border-radius: 50%; background: #25D366;
	color: #fff; display: inline-flex; align-items: center; justify-content: center;
	box-shadow: 0 8px 24px rgba(37,211,102,.4); transition: transform .2s;
}
@media (min-width: 768px) { .ng-whatsapp { bottom: 24px; right: 24px; } }
.ng-whatsapp:hover { transform: scale(1.08); }
.ng-whatsapp svg { width: 28px; height: 28px; }

/* =========================================================
   WooCommerce DEFAULT BASE STYLING
   ========================================================= */
.woocommerce, .woocommerce-page { font-family: var(--font-body); color: var(--c-on-background); }
.woocommerce h1, .woocommerce h2, .woocommerce h3 { font-family: var(--font-headline); color: var(--c-primary); font-weight: 400; }

body.woocommerce-cart .ng-main,
body.woocommerce-checkout .ng-main,
body.woocommerce-account .ng-main { padding: 112px 0 128px; }
body.woocommerce-cart main.ng-container,
body.woocommerce-checkout main.ng-container,
body.woocommerce-account main.ng-container { max-width: var(--container); margin: 0 auto; padding: 0 20px; }
@media (min-width: 768px) {
	body.woocommerce-cart main.ng-container,
	body.woocommerce-checkout main.ng-container,
	body.woocommerce-account main.ng-container { padding: 0 80px; }
}

.woocommerce .page-title, body.woocommerce-cart .ng-main h1, body.woocommerce-checkout .ng-main h1, body.woocommerce-account .ng-main h1 {
	font-family: var(--font-headline); font-size: 36px; color: var(--c-primary); margin: 0 0 24px;
}
@media (min-width: 768px) {
	body.woocommerce-cart .ng-main h1, body.woocommerce-checkout .ng-main h1, body.woocommerce-account .ng-main h1 { font-size: 48px; }
}

/* Buttons — WooCommerce */
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit,
.woocommerce a.button.alt, .woocommerce button.button.alt, .woocommerce input.button.alt, .woocommerce #respond input#submit.alt,
.woocommerce-page a.button, .woocommerce-page button.button, .woocommerce-page input.button {
	background: var(--c-surface-lowest); color: #ffffff;
	font-family: var(--font-body); font-weight: 600; font-size: 11px;
	letter-spacing: .25em; text-transform: uppercase;
	border: 1px solid rgba(255,255,255,0.4); border-radius: 0;
	padding: 14px 28px; transition: all .25s;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover,
.woocommerce a.button.alt:hover, .woocommerce button.button.alt:hover,
.woocommerce-page a.button:hover {
	background: #ecb5b5; color: #070e22; border-color: #ecb5b5;
}

/* Inputs */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.woocommerce-page form .form-row input.input-text {
	border: 1px solid var(--c-outline-variant); border-radius: 0;
	padding: 12px 14px; font-size: 14px; background: var(--c-surface-lowest);
	font-family: inherit; color: var(--c-on-background);
}
.woocommerce form .form-row label { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--c-on-surface-variant); margin-bottom: 6px; display: block; }

/* Notices */
.woocommerce-info, .woocommerce-error, .woocommerce-noreviews, p.no-comments {
	border: 1px solid var(--c-outline-variant); border-top: 3px solid var(--c-secondary);
	background: var(--c-surface-low); color: var(--c-on-background);
	padding: 16px 20px; border-radius: 0; font-size: 14px;
}
.woocommerce-info::before, .woocommerce-error::before { color: var(--c-secondary); }

/* Tables (cart, order details) */
.woocommerce table.shop_table {
	border: 1px solid var(--c-outline-variant); border-radius: 0; border-collapse: collapse;
	background: var(--c-surface-lowest);
}
.woocommerce table.shop_table th {
	font-family: var(--font-body); font-weight: 600; font-size: 11px;
	letter-spacing: .2em; text-transform: uppercase; color: var(--c-primary);
	border-bottom: 1px solid var(--c-outline-variant); padding: 16px;
}
.woocommerce table.shop_table td { padding: 20px 16px; border-top: 1px solid var(--c-outline-variant); font-size: 14px; }
.woocommerce .quantity .qty {
	width: 64px; padding: 8px; border: 1px solid var(--c-outline-variant); border-radius: 0; text-align: center;
}

/* ===== Cart Drawer (Slide-out) ===== */
.ng-cart-overlay {
	position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 55;
	opacity: 0; pointer-events: none; transition: opacity 0.5s ease;
}
.ng-cart-overlay.is-open { opacity: 1; pointer-events: auto; }
.ng-cart-drawer {
	position: fixed; top: 0; right: 0; height: 100%; width: 100%;
	background: var(--c-surface-lowest, #fff); z-index: 56;
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
	transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	display: flex; flex-direction: column;
}
@media (min-width: 768px) { .ng-cart-drawer { width: 460px; } }
.ng-cart-drawer.is-open { transform: translateX(0); }
.ng-cart-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.ng-cart-drawer__title-wrap { display: flex; align-items: baseline; gap: 12px; }
.ng-cart-drawer__title-wrap h3.ng-headline { font-family: var(--font-headline); font-size: 20px; margin: 0; color: var(--c-primary); }
.ng-cart-drawer__count { font-family: var(--font-body); font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--c-on-surface-variant); }
.ng-cart-drawer__body { flex: 1; overflow-y: auto; padding: 24px; }
.ng-cart-drawer__list { display: flex; flex-direction: column; }
.ng-cart-drawer__item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.ng-cart-drawer__item:first-child { padding-top: 0; }
.ng-cart-drawer__media { width: 80px; height: 96px; background: none !important; flex-shrink: 0; }
.ng-cart-drawer__media img { width: 100%; height: 100%; object-fit: cover; }
.ng-cart-drawer__meta { flex: 1; display: flex; flex-direction: column; min-width: 0; }
.ng-cart-drawer__title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.ng-cart-drawer__item-title { font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--c-primary); text-decoration: none; line-height: 1.4; }
.ng-cart-drawer__item-title:hover { color: var(--c-secondary); }
.ng-cart-drawer__item-brand { font-size: 12px; color: var(--c-on-surface-variant); margin: 2px 0 0; }

/* Inline variations style */
.ng-cart-drawer__meta dl.variation {
	display: inline-flex !important;
	flex-wrap: wrap !important;
	gap: 4px !important;
	margin: 4px 0 !important;
	padding: 0 !important;
	font-size: 11px !important;
	color: var(--c-on-surface-variant) !important;
	list-style: none !important;
}
.ng-cart-drawer__meta dl.variation dt,
.ng-cart-drawer__meta dl.variation dd {
	display: inline !important;
	margin: 0 !important;
	padding: 0 !important;
}
.ng-cart-drawer__meta dl.variation dt {
	font-weight: 500 !important;
}
.ng-cart-drawer__meta dl.variation dd p {
	display: inline !important;
	margin: 0 !important;
}
.ng-cart-drawer__meta dl.variation dt:not(:first-of-type)::before {
	content: ", " !important;
}

.ng-cart-drawer__item-price { font-family: var(--font-headline); font-size: 16px; color: var(--c-primary); margin: 6px 0 12px 0; }

.ng-cart-drawer__item-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; width: 100%; }

/* Interactive plus/minus quantity button controls inside drawer */
.ng-cart-drawer__qty-wrap .quantity {
	display: inline-flex !important;
	align-items: center !important;
	border: 1px solid var(--c-outline-variant) !important;
}
.ng-cart-drawer__qty-wrap .quantity__btn {
	width: 32px !important;
	height: 32px !important;
	display: inline-flex !important;
	align-items: center !important;
	justify-content: center !important;
	background: none !important;
	border: 0 !important;
	cursor: pointer !important;
	color: var(--c-primary) !important;
	padding: 0 !important;
	transition: background 0.2s;
}
.ng-cart-drawer__qty-wrap .quantity__btn:hover {
	background: var(--c-surface-low, #f0f3ff);
}
.ng-cart-drawer__qty-wrap .quantity input.qty {
	width: 32px !important;
	height: 32px !important;
	border: 0 !important;
	text-align: center !important;
	font-size: 13px !important;
	font-family: var(--font-body) !important;
	color: var(--c-primary) !important;
	background: transparent !important;
	padding: 0 !important;
}
.ng-cart-drawer__qty-wrap .quantity input::-webkit-outer-spin-button,
.ng-cart-drawer__qty-wrap .quantity input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.ng-cart-drawer__qty-wrap .quantity input[type=number] {
	-moz-appearance: textfield;
}

.ng-cart-drawer__item-remove {
	color: var(--c-on-surface-variant) !important;
	background: none !important;
	border: 0 !important;
	cursor: pointer !important;
	padding: 0 !important;
	display: inline-flex !important;
	align-items: center !important;
	transition: color 0.25s !important;
}
.ng-cart-drawer__item-remove:hover {
	color: var(--c-primary) !important;
}

.ng-cart-drawer__footer { border-top: 1px solid rgba(0, 0, 0, 0.08); padding: 20px 24px; background: var(--c-surface-low, #fcfcfc); }
.ng-cart-drawer__subtotal, .ng-cart-drawer__shipping, .ng-cart-drawer__total { display: flex; justify-content: space-between; align-items: center; font-size: 14px; margin-bottom: 8px; }
.ng-cart-drawer__subtotal { color: var(--c-on-surface-variant); }
.ng-cart-drawer__shipping { color: var(--c-on-surface-variant); }
.ng-cart-drawer__total { border-top: 1px solid rgba(0, 0, 0, 0.08); padding-top: 12px; margin-top: 12px; margin-bottom: 16px; }
.ng-cart-drawer__total-val { font-size: 20px; color: var(--c-primary); }
.ng-cart-drawer__actions .ng-btn--checkout {
	display: flex; width: 100%; background: var(--c-surface-lowest); color: #ffffff;
	padding: 16px; align-items: center; justify-content: center; gap: 8px;
	font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .25em;
	text-transform: uppercase; text-decoration: none; transition: background 0.25s;
	border: 1px solid rgba(255, 255, 255, 0.4);
}
.ng-cart-drawer__actions .ng-btn--checkout:hover { background: #ecb5b5; color: #070e22; border-color: #ecb5b5; }
.ng-cart-drawer__empty { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--c-on-surface-variant); gap: 16px; padding: 60px 20px; }
.ng-cart-drawer__empty-icon { opacity: 0.4; }

/* ===== QUICK VIEW MODAL ===== */
.ng-quickview-overlay {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 60;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease;
}
.ng-quickview-overlay.is-open {
	opacity: 1;
	pointer-events: auto;
}

.ng-quickview {
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%) scale(0.95);
	z-index: 61;
	width: 95vw;
	max-width: 960px;
	max-height: 92vh;
	background: var(--c-surface-lowest, #ffffff);
	box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease, transform 0.5s ease;
	overflow: hidden;
}
.ng-quickview.is-open {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
	pointer-events: auto;
}

.ng-quickview__close {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 62;
	color: var(--c-on-surface-variant);
	background: transparent;
	border: 0;
	cursor: pointer;
	padding: 8px;
	transition: color 0.25s;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
.ng-quickview__close:hover {
	color: var(--c-primary);
}

.ng-quickview__inner {
	display: grid;
	grid-template-columns: 1fr;
	max-height: 92vh;
	overflow-y: auto;
}
@media (min-width: 768px) {
	.ng-quickview__inner {
		grid-template-columns: 1fr 1fr;
	}
}

.ng-quickview__loading {
	padding: 80px 20px;
	text-align: center;
	font-family: var(--font-body);
	font-size: 14px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: var(--c-on-surface-variant);
	grid-column: span 2;
}

/* Left column: gallery */
.ng-quickview__gallery {
	background: var(--c-surface-low, #f0f3ff);
	display: flex;
	flex-direction: column;
	gap: 16px;
	padding: 24px;
}
@media (min-width: 768px) {
	.ng-quickview__gallery {
		padding: 40px;
	}
}
.ng-quickview__main {
	aspect-ratio: 1/1;
	background: var(--c-surface-lowest);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
	overflow: hidden;
	border: 1px solid rgba(255, 255, 255, 0.1);
}
.ng-quickview__main img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.ng-quickview__thumbs {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 12px;
}
.ng-quickview__thumb {
	aspect-ratio: 1/1;
	background: var(--c-surface-lowest);
	border: 1px solid transparent;
	padding: 8px;
	cursor: pointer;
	opacity: 0.6;
	transition: opacity 0.25s, border-color 0.25s;
}
.ng-quickview__thumb:hover {
	opacity: 1;
}
.ng-quickview__thumb.is-active {
	border-color: var(--c-primary);
	opacity: 1;
}
.ng-quickview__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* Right column: details */
.ng-quickview__details {
	padding: 32px 24px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	position: relative;
	min-width: 0;
}
@media (min-width: 768px) {
	.ng-quickview__details {
		padding: 48px 32px;
	}
}
.ng-quickview__cat {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 10px;
	letter-spacing: 0.3em;
	color: var(--c-secondary);
}
.ng-quickview__title {
	font-family: var(--font-headline);
	font-size: 28px;
	color: var(--c-primary);
	margin: 0;
	line-height: 1.2;
}
@media (min-width: 768px) {
	.ng-quickview__title {
		font-size: 32px;
	}
}
.ng-quickview__brand {
	font-size: 12px;
	color: var(--c-on-surface-variant);
	margin: -8px 0 0;
}
.ng-quickview__price {
	font-family: var(--font-headline);
	font-size: 22px;
	color: var(--c-primary);
	margin: 0;
}
.ng-quickview__desc {
	color: var(--c-on-surface-variant);
	font-size: 14px;
	line-height: 1.6;
}
.ng-quickview__desc p {
	margin: 0 0 12px;
}

.ng-quickview__more {
	align-self: center;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: 0.2em;
	color: var(--c-secondary);
	border-bottom: 1px solid rgba(119, 90, 25, 0.3);
	padding-bottom: 2px;
	transition: color 0.25s, border-color 0.25s;
	margin-top: 16px;
}
.ng-quickview__more:hover {
	color: var(--c-primary);
	border-color: var(--c-primary);
}

/* =========================================================
   Quick View — Variations / Options / Qty / Add-to-Bag (v0.5.0)
   Make WooCommerce's native variation form readable inside the modal
   so users can pick attributes and add to cart without leaving Quick View.
   ========================================================= */
.ng-quickview__form-wrap form.cart {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin: 12px 0 0;
}
.ng-quickview__form-wrap .variations {
	width: 100%;
	border-collapse: collapse;
	margin: 0;
}
.ng-quickview__form-wrap .variations tr {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 0 0 14px;
	border: 0;
}
.ng-quickview__form-wrap .variations td,
.ng-quickview__form-wrap .variations th {
	border: 0;
	padding: 0;
	background: transparent;
}
.ng-quickview__form-wrap .variations .label label,
.ng-quickview__form-wrap .variations th.label label {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 10px;
	letter-spacing: .25em;
	text-transform: uppercase;
	color: var(--c-on-surface-variant);
	margin: 0;
}
.ng-quickview__form-wrap .variations select {
	width: 100%;
	appearance: none;
	-webkit-appearance: none;
	background: var(--c-surface-lowest) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23fff' stroke-width='1.4' d='M1 1l5 5 5-5'/></svg>") no-repeat right 14px center;
	border: 1px solid var(--c-outline-variant);
	border-radius: 0;
	padding: 12px 36px 12px 14px;
	font-family: var(--font-body);
	font-size: 13px;
	color: #ffffff;
	cursor: pointer;
	transition: border-color .25s;
}
.ng-quickview__form-wrap .variations select:focus {
	outline: none;
	border-color: var(--c-secondary);
}
.ng-quickview__form-wrap .reset_variations {
	display: inline-block;
	margin-top: 6px;
	font-family: var(--font-body);
	font-size: 10px;
	letter-spacing: .2em;
	text-transform: uppercase;
	color: var(--c-on-surface-variant);
	text-decoration: underline;
}
.ng-quickview__form-wrap .single_variation_wrap {
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.ng-quickview__form-wrap .woocommerce-variation-price,
.ng-quickview__form-wrap .woocommerce-variation-availability {
	font-family: var(--font-body);
	font-size: 13px;
	color: var(--c-primary);
}
.ng-quickview__form-wrap .woocommerce-variation-price .price {
	font-family: var(--font-headline);
	font-size: 22px;
	color: var(--c-primary);
}
.ng-quickview__form-wrap .woocommerce-variation-description p {
	color: var(--c-on-surface-variant);
	font-size: 13px;
	line-height: 1.6;
	margin: 0;
}
.ng-quickview__form-wrap .quantity {
	display: inline-flex;
	align-items: stretch;
	border: 1px solid rgba(0,0,0,.2);
	width: max-content;
}
.ng-quickview__form-wrap .quantity input.qty {
	width: 56px;
	border: 0;
	text-align: center;
	font-family: var(--font-body);
	font-size: 14px;
	color: var(--c-primary);
	background: #fff;
	-moz-appearance: textfield;
}
.ng-quickview__form-wrap .quantity input.qty::-webkit-outer-spin-button,
.ng-quickview__form-wrap .quantity input.qty::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.ng-quickview__form-wrap .quantity .ng-qty-btn {
	width: 36px; border: 0; background: #fff; cursor: pointer;
	font-size: 16px; color: var(--c-primary);
}
.ng-quickview__form-wrap .quantity .ng-qty-btn:hover { background: rgba(0,0,0,.04); }
.ng-quickview__form-wrap .single_add_to_cart_button {
	width: 100%;
	background: var(--c-surface-lowest);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.4);
	padding: 16px 24px;
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .3em;
	text-transform: uppercase;
	cursor: pointer;
	transition: background .25s, transform .15s;
	display: inline-flex; align-items: center; justify-content: center; gap: 10px;
}
.ng-quickview__form-wrap .single_add_to_cart_button:hover { background: #ecb5b5; color: #070e22; border-color: #ecb5b5; }
.ng-quickview__form-wrap .single_add_to_cart_button[disabled],
.ng-quickview__form-wrap .single_add_to_cart_button.disabled {
	opacity: .45; cursor: not-allowed; background: var(--c-surface-lowest);
}
.single_add_to_cart_button.loading { opacity: .6; pointer-events: none; }

/* Mobile polish for Quick View body */
@media (max-width: 767px) {
	.ng-quickview__inner { padding: 56px 16px 24px; gap: 18px; }
	.ng-quickview__title { font-size: 22px; }
	.ng-quickview__price { font-size: 18px; }
	.ng-quickview__form-wrap .quantity input.qty { width: 44px; }
	.ng-quickview__form-wrap .single_add_to_cart_button { padding: 14px 18px; font-size: 10px; }
}

/* =========================================================
   WooCommerce Cart/Swatches layout adjustments (v0.5.0)
   ========================================================= */
.ng-detail-cart-wrapper form.cart,
.ng-quickview__form-wrap form.cart {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 10px 0;
}

/* QTY Control */
.ng-detail-cart-wrapper form.cart .quantity-row,
.ng-quickview__form-wrap form.cart .quantity-row {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 12px;
}
.ng-detail-cart-wrapper form.cart .quantity-label,
.ng-quickview__form-wrap form.cart .quantity-label {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 10px;
	letter-spacing: 0.2em;
	color: var(--c-on-surface-variant);
	text-transform: uppercase;
}
.ng-detail-cart-wrapper .quantity,
.ng-quickview__form-wrap .quantity {
	display: inline-flex;
	border: 1px solid var(--c-outline-variant);
	align-items: center;
	width: fit-content;
}
.ng-detail-cart-wrapper .quantity input.qty,
.ng-quickview__form-wrap .quantity input.qty {
	width: 40px;
	height: 36px;
	border: 0;
	text-align: center;
	font-size: 14px;
	background: transparent;
	pointer-events: none;
	color: var(--c-primary);
}
.ng-detail-cart-wrapper .quantity__btn,
.ng-quickview__form-wrap .quantity__btn {
	width: 36px;
	height: 36px;
	background: none;
	border: 0;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-primary);
	transition: background 0.2s;
}
.ng-detail-cart-wrapper .quantity__btn:hover,
.ng-quickview__form-wrap .quantity__btn:hover {
	background: rgba(0,0,0,0.04);
}

/* Side-by-side Actions Row */
.ng-detail-cart-wrapper form.cart .actions-row,
.ng-quickview__form-wrap form.cart .actions-row {
	display: flex;
	gap: 12px;
	margin-top: 8px;
	width: 100%;
}
.ng-detail-cart-wrapper form.cart .actions-row .single_add_to_cart_button,
.ng-quickview__form-wrap form.cart .actions-row .single_add_to_cart_button {
	flex: 1;
	height: 56px;
	padding: 0;
	margin: 0;
	background: var(--c-surface-lowest);
	color: #ffffff;
	border: 1px solid rgba(255, 255, 255, 0.4);
	font-family: var(--font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: .25em;
	text-transform: uppercase;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	transition: background 0.25s;
}
.ng-detail-cart-wrapper form.cart .actions-row .single_add_to_cart_button:hover,
.ng-quickview__form-wrap form.cart .actions-row .single_add_to_cart_button:hover {
	background: #ecb5b5; color: #070e22; border-color: #ecb5b5;
}
.ng-detail-cart-wrapper form.cart .actions-row .ng-detail-wish-btn,
.ng-quickview__form-wrap form.cart .actions-row .ng-detail-wish-btn {
	width: 56px;
	height: 56px;
	border: 1px solid var(--c-outline-variant);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--c-primary);
	background: transparent;
	cursor: pointer;
	transition: all 0.25s;
}
.ng-detail-cart-wrapper form.cart .actions-row .ng-detail-wish-btn:hover,
.ng-quickview__form-wrap form.cart .actions-row .ng-detail-wish-btn:hover {
	background: var(--c-surface-low);
	border-color: var(--c-primary);
}
.ng-detail-cart-wrapper form.cart .actions-row .ng-detail-wish-btn.is-active,
.ng-quickview__form-wrap form.cart .actions-row .ng-detail-wish-btn.is-active {
	color: var(--c-secondary);
}

/* Swatches Group Styles */
.ng-swatches-wrapper {
	margin-bottom: 20px;
}
.ng-swatches-label {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 10px;
	letter-spacing: 0.25em;
	text-transform: uppercase;
	color: var(--c-on-surface-variant);
	margin: 0 0 12px;
}
.ng-swatches {
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	align-items: center;
}

/* Option Button Wrapper */
.ng-swatch-btn-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.ng-swatch-option-label {
	display: block;
	text-align: center;
	font-size: 11px;
	margin-top: 8px;
	letter-spacing: 0.05em;
	transition: color 0.2s;
	color: var(--c-on-surface-variant);
}
.ng-swatch-btn-wrapper.is-active .ng-swatch-option-label {
	color: var(--c-primary);
	font-weight: 600;
}

/* Metal option swatch */
.ng-swatch-metal {
	height: 36px;
	width: 36px;
	border-radius: 50%;
	transition: all 0.2s;
	box-shadow: inset 0 1px 3px rgba(255,255,255,0.6), inset 0 -6px 10px rgba(0,0,0,0.12);
	outline-offset: 2px;
	outline: 1px solid var(--c-outline-variant);
	cursor: pointer;
}
.ng-swatch-metal:hover {
	outline: 2px solid var(--c-primary);
	transform: scale(1.1);
}
.ng-swatch-btn-wrapper.is-active .ng-swatch-metal {
	outline: 2px solid var(--c-primary);
	transform: scale(1.1);
}

/* Stone option swatch */
.ng-swatch-stone-wrap {
	display: flex;
	height: 40px;
	width: 40px;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: all 0.2s;
	outline-offset: 2px;
	outline: 1px solid var(--c-outline-variant);
	cursor: pointer;
}
.ng-swatch-stone-wrap:hover {
	outline: 2px solid var(--c-primary);
	transform: scale(1.1);
}
.ng-swatch-btn-wrapper.is-active .ng-swatch-stone-wrap {
	outline: 2px solid var(--c-primary);
	transform: scale(1.1);
}
.ng-swatch-stone-gem {
	height: 20px;
	width: 20px;
	transform: rotate(45deg);
	border-radius: 3px;
	box-shadow: inset 0 1px 3px rgba(255,255,255,0.75);
}

/* Shape & Setting swatches */
.ng-swatch-shape, .ng-swatch-setting {
	display: flex;
	height: 48px;
	width: 48px;
	align-items: center;
	justify-content: center;
	transition: all 0.2s;
	color: rgba(69, 71, 76, 0.7);
	cursor: pointer;
}
.ng-swatch-shape:hover, .ng-swatch-setting:hover {
	color: var(--c-primary);
	transform: scale(1.1);
}
.ng-swatch-btn-wrapper.is-active .ng-swatch-shape,
.ng-swatch-btn-wrapper.is-active .ng-swatch-setting {
	color: var(--c-primary);
	transform: scale(1.1);
}
.ng-swatch-shape svg, .ng-swatch-setting svg {
	width: 100%;
	height: 100%;
}

/* Size option swatch */
.ng-swatch-size {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 44px;
	width: 48px;
	border-radius: 9999px;
	font-size: 13px;
	font-weight: 500;
	transition: all 0.2s;
	color: var(--c-primary);
	background: transparent;
	cursor: pointer;
	border: 0;
}
.ng-swatch-size:hover {
	background: rgba(0, 0, 0, 0.05);
	transform: scale(1.05);
}
.ng-swatches .ng-swatch-btn-wrapper.is-active .ng-swatch-size {
	background: #ecb5b5;
	color: #070e22;
	border: 1px solid #ecb5b5;
	transform: scale(1.05);
}

/* Swatches disabled state */
.ng-swatch-btn-wrapper.is-disabled {
	opacity: 0.22 !important;
	pointer-events: none !important;
}

/* Elegant WooCommerce Variations Table and Static Value Display */
.ng-detail-cart-wrapper .variations,
.ng-quickview__form-wrap .variations {
	width: 100% !important;
	margin-bottom: 20px !important;
	border-collapse: collapse !important;
	display: table !important;
}
.ng-detail-cart-wrapper .variations tr,
.ng-quickview__form-wrap .variations tr {
	border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
.ng-detail-cart-wrapper .variations tr:last-child,
.ng-quickview__form-wrap .variations tr:last-child {
	border-bottom: 0 !important;
}
.ng-detail-cart-wrapper .variations td,
.ng-quickview__form-wrap .variations td {
	padding: 12px 0 !important;
	border: 0 !important;
	background: transparent !important;
	vertical-align: middle !important;
}
.ng-detail-cart-wrapper .variations td.label,
.ng-quickview__form-wrap .variations td.label {
	width: 100px !important;
	font-family: var(--font-body);
	font-size: 11px !important;
	letter-spacing: 0.15em !important;
	text-transform: uppercase !important;
	color: rgba(255, 255, 255, 0.6) !important;
	font-weight: 500 !important;
}
.ng-detail-cart-wrapper .variations td.value,
.ng-quickview__form-wrap .variations td.value {
	color: #ffffff !important;
	font-size: 14px !important;
}
.ng-fixed-attribute-value {
	font-weight: 500;
	color: #ffffff;
}

/* Override Swatch Size button to have borders */
.ng-swatch-size {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 38px !important;
	width: 44px !important;
	border-radius: 9999px !important;
	font-size: 13px !important;
	font-weight: 500 !important;
	transition: all 0.2s !important;
	color: var(--c-on-background) !important;
	background: transparent !important;
	border: 1px solid rgba(255, 255, 255, 0.18) !important;
	cursor: pointer !important;
}
.ng-swatch-size:hover {
	border-color: #ffffff !important;
	background: rgba(255, 255, 255, 0.05) !important;
	transform: scale(1.05);
}
.ng-swatches .ng-swatch-btn-wrapper.is-active .ng-swatch-size {
	background: #ecb5b5 !important;
	color: #070e22 !important;
	border: 1px solid #ecb5b5 !important;
	transform: scale(1.05);
}

/* Global Grid Cards Layout */
.ng-grid-cards {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	column-gap: 20px;
	row-gap: 40px;
}
@media (min-width: 1024px) {
	.ng-grid-cards {
		grid-template-columns: repeat(3, 1fr);
		column-gap: 32px;
		row-gap: 64px;
	}
}

/* WooCommerce Add-to-Cart Notice Toast Style */
.woocommerce-message {
	position: fixed !important;
	bottom: 24px !important;
	left: 50% !important;
	transform: translateX(-50%) !important;
	z-index: 9999 !important;
	background: #0e1730 !important;
	color: #ffffff !important;
	border: 1px solid #ecb5b5 !important;
	border-radius: 4px !important;
	padding: 14px 28px !important;
	box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4) !important;
	font-family: var(--font-body) !important;
	font-size: 14px !important;
	font-weight: 500 !important;
	letter-spacing: 0.05em !important;
	display: flex !important;
	align-items: center !important;
	gap: 12px !important;
	margin: 0 !important;
	animation: ng-toast-fade-in 0.3s ease-out !important;
	width: auto !important;
	float: none !important;
	clear: both !important;
}
.woocommerce-message::before {
	content: "" !important;
	display: inline-block !important;
	width: 8px !important;
	height: 8px !important;
	background: #ecb5b5 !important;
	border-radius: 50% !important;
	margin-right: 4px !important;
	color: transparent !important;
	position: static !important;
}
@keyframes ng-toast-fade-in {
	from { opacity: 0; transform: translate(-50%, 20px); }
	to { opacity: 1; transform: translate(-50%, 0); }
}

/* Align Wishlist Page Container perfectly with Header Icons */
body.page-template-page-wishlist .ng-container {
	max-width: none !important;
	width: 100% !important;
	padding: 0 20px !important;
}
@media (min-width: 768px) {
	body.page-template-page-wishlist .ng-container {
		padding: 0 40px !important;
	}
}

/* Global Banner Section Styles — v0.9.0 with hero background image */
.ng-shop-banner {
	padding: 80px 0;
	text-align: center;
	position: relative;
	overflow: hidden;
	background-color: #070e22;
	background-image:
		linear-gradient(180deg, rgba(7,14,34,.72) 0%, rgba(7,14,34,.55) 45%, rgba(7,14,34,.88) 100%),
		url("../images/shop-banner-bg.jpg");
	background-size: cover, cover;
	background-position: center, center;
	background-repeat: no-repeat, no-repeat;
	isolation: isolate;
}
.ng-shop-banner::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(60% 70% at 50% 60%, rgba(212,175,55,.10), rgba(7,14,34,0) 70%);
	pointer-events: none;
	z-index: 0;
}
.ng-shop-banner > .ng-container { position: relative; z-index: 1; }
@media (min-width: 768px) { .ng-shop-banner { padding: 128px 0; } }
.ng-shop-banner .ng-gold { letter-spacing: .3em; font-size: 11px; color: #d4af37 !important; }
.ng-shop-banner__title {
	font-family: var(--font-headline); color: #ffffff !important;
	font-size: 36px; margin: 16px 0 0;
	text-shadow: 0 2px 24px rgba(0,0,0,.45);
}
@media (min-width: 768px) { .ng-shop-banner__title { font-size: 60px; } }
.ng-shop-banner__desc { max-width: 560px; margin: 24px auto 0; color: rgba(255,255,255,.78); font-size: 15px; text-shadow: 0 1px 12px rgba(0,0,0,.5); }
.ng-shop-banner__desc p { margin: 0; }

/* Force white text on any elements inside dark header-bg banner areas */
.header-bg .ng-headline,
.header-bg .ng-shop-banner__title,
.header-bg h1,
.header-bg h2,
.header-bg h3 {
	color: #ffffff !important;
}

/* Light mode WooCommerce/Quickview color fixes for non-homepage pages */
body:not(.home) .ng-cart-drawer__actions .ng-btn--checkout {
	background: var(--c-primary) !important;
	color: var(--c-on-primary) !important;
	border: 1px solid var(--c-primary) !important;
}
body:not(.home) .ng-quickview__form-wrap .variations select {
	color: var(--c-on-surface) !important;
	background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23070e22' stroke-width='1.4' d='M1 1l5 5 5-5'/></svg>") !important;
}
body:not(.home) .ng-quickview__form-wrap .single_add_to_cart_button,
body:not(.home) .ng-quickview__form-wrap form.cart .actions-row .single_add_to_cart_button {
	background: var(--c-primary) !important;
	color: var(--c-on-primary) !important;
	border: 1px solid var(--c-primary) !important;
}
body:not(.home) .ng-quickview__form-wrap .variations td.value,
body:not(.home) .ng-fixed-attribute-value {
	color: var(--c-on-surface) !important;
}
body:not(.home) .ng-swatch-size:hover {
	border-color: var(--c-primary) !important;
	background: rgba(7, 14, 34, 0.05) !important;
}

/* Single product page Add to Bag and Customise button text color refinements */
body:not(.home) .ng-detail-cart-wrapper form.cart .actions-row .single_add_to_cart_button {
	background: #ecb5b5 !important;
	color: #070e22 !important;
	border: 1px solid #ecb5b5 !important;
}
body:not(.home) .ng-detail-cart-wrapper form.cart .actions-row .single_add_to_cart_button:hover {
	background: #154470 !important;
	color: #ffffff !important;
	border-color: #154470 !important;
}

body:not(.home) .ng-detail-customise-btn {
	border: 1px solid #154470 !important;
	color: #154470 !important;
}
body:not(.home) .ng-detail-customise-btn:hover {
	background: #154470 !important;
	color: #ffffff !important;
	border-color: #154470 !important;
}

/* Header Mega Menu styles */
.ng-nav-item-wrap {
	display: inline-flex;
	align-items: center;
	height: 100%;
	position: relative;
}
/* ============================================
   Megamenu hover panel — v0.9.0 polished
   ============================================ */
.ng-nav-item-wrap { position: static; }
.ng-nav-item-wrap > a.ng-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 6px;
	height: 100%;
}
.ng-nav-item-wrap > a.ng-link::after {
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	width: 140px;
	height: 50px;
	background: transparent;
	z-index: 99;
}
.ng-megamenu {
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	width: 100%;
	background: #ffffff;
	border-top: 1px solid rgba(7, 14, 34, 0.06);
	border-bottom: 1px solid rgba(7, 14, 34, 0.08);
	box-shadow: 0 24px 60px rgba(7, 14, 34, 0.10);
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity .3s cubic-bezier(.22,1,.36,1), transform .3s cubic-bezier(.22,1,.36,1), visibility .3s;
	z-index: 1000;
	padding: 36px 0 44px;
	text-align: left;
	pointer-events: none;
}
.ng-megamenu::before {
	content: "";
	position: absolute;
	top: -45px;
	left: 0;
	width: 100%;
	height: 48px;
	background: transparent;
}
.ng-nav-item-wrap:hover .ng-megamenu,
.ng-nav-item-wrap:focus-within .ng-megamenu {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	pointer-events: auto;
}
.ng-megamenu__container {
	max-width: var(--container);
	margin: 0 auto;
	padding: 0 40px;
}
.ng-megamenu__cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 56px;
	align-items: start;
}
.ng-megamenu__col { display: flex; flex-direction: column; min-width: 0; }
.ng-megamenu__title {
	font-family: var(--font-body);
	font-weight: 600;
	font-size: 11px;
	letter-spacing: .25em;
	color: var(--c-primary);
	margin: 0 0 18px;
	border-bottom: 1px solid rgba(21, 68, 112, 0.10);
	padding-bottom: 10px;
	text-transform: uppercase;
}
.ng-megamenu__list {
	list-style: none; padding: 0; margin: 0;
	display: flex; flex-direction: column; gap: 6px;
}
.ng-megamenu__list li { margin: 0; padding: 0; }
.ng-megamenu__list a {
	font-family: var(--font-body);
	font-size: 13.5px;
	color: #2a3148;
	text-decoration: none;
	transition: color .25s, padding-left .25s;
	display: inline-block;
	padding: 8px 4px;
}
.ng-megamenu__list a:hover { color: #b48f3a; padding-left: 6px; }

/* Icon list — visible icons & labels on white panel */
.ng-megamenu__list--icons { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 4px; }
.ng-megamenu__list--icons li { margin: 0; }
.ng-megamenu__list--icons li a {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 8px 10px;
	border-radius: 10px;
	text-decoration: none;
	color: var(--c-primary);
	background: transparent;
	transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
}
.ng-megamenu__list--icons li a:hover {
	background: #f7f3ea;
	box-shadow: 0 4px 14px rgba(7,14,34,.06);
}
.ng-megamenu__icon {
	width: 28px !important;
	height: 28px !important;
	object-fit: contain;
	flex-shrink: 0;
	background: transparent !important;
	border: 0 !important;
	border-radius: 0 !important;
	padding: 0 !important;
	display: block;
	filter: none;
	transition: transform .25s ease;
}
.ng-megamenu__list--icons li a:hover .ng-megamenu__icon {
	transform: scale(1.1);
}
.ng-megamenu__list--icons li a span {
	font-size: 13.5px;
	font-weight: 500;
	letter-spacing: .02em;
	color: var(--c-primary);
}

@media (max-width: 1100px) {
	.ng-megamenu__container { padding: 0 24px; }
	.ng-megamenu__cols { gap: 32px; }
}

/* ============================================
   Customise page polish — v0.9.0
   Real product images in option badges +
   improved mobile/web layout for the builder.
   ============================================ */
.option-row { gap: 16px; }
.option-row__badge--img {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background: #fbf7ee !important;
	border: 1px solid rgba(7,14,34,.10) !important;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	flex-shrink: 0;
	box-shadow: 0 4px 14px rgba(7,14,34,.06);
	transition: transform .35s ease, box-shadow .35s ease, background .25s ease;
}
.option-row__badge--img img {
	width: 86%;
	height: 86%;
	object-fit: contain;
	display: block;
}
.option-row:hover .option-row__badge--img {
	transform: scale(1.05);
	box-shadow: 0 8px 22px rgba(180,143,58,.22);
}
.option-row.is-active .option-row__badge--img {
	background: #fff5dc !important;
	border-color: #c5a880 !important;
	box-shadow: 0 8px 22px rgba(180,143,58,.30);
}
.option-tile .option-row__badge--img,
.option-tile__img-wrap .option-row__badge--img { width: 100%; height: 100%; border-radius: 14px; }

/* Customise grid — responsive */
@media (max-width: 1023px) {
	.customise-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
	.customise-aside-panel { order: 2; position: relative; }
}
@media (min-width: 1024px) {
	.customise-aside-panel { position: sticky; top: 96px; align-self: start; }
}
@media (max-width: 640px) {
	.option-row { padding: 12px !important; gap: 12px !important; flex-wrap: wrap; }
	.option-row__badge--img { width: 52px; height: 52px; }
	.option-row__info { min-width: 0; }
	.option-row__label { font-size: 14px !important; }
	.option-row__sub { font-size: 11px !important; }
	.option-row__right { gap: 8px; }
	.option-row__extra { font-size: 11px !important; }
	.customise-nav-footer { flex-direction: row; gap: 12px; }
	.customise-nav-footer button { flex: 1 1 0; }
}

/* ============================================
   Interactive Checkout Review Order Table & Progress Bar
   ============================================ */
.ng-checkout-prod-row {
	display: flex;
	align-items: center;
	gap: 16px;
	text-align: left;
}

.ng-checkout-prod-action {
	flex-shrink: 0;
}

.ng-checkout-prod-action a.remove {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #fbfbfb;
	color: #070e22;
	border: 1px solid rgba(7, 14, 34, 0.08);
	font-size: 14px;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition: background 0.25s, color 0.25s;
}

.ng-checkout-prod-action a.remove:hover {
	background: #070e22;
	color: #ffffff;
}

.ng-checkout-prod-thumbnail {
	flex-shrink: 0;
	width: 60px;
	height: 60px;
	border-radius: 8px;
	overflow: hidden;
	background: #fbf7ee;
	border: 1px solid rgba(7, 14, 34, 0.06);
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.ng-checkout-prod-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.ng-checkout-prod-meta {
	flex-grow: 1;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.ng-checkout-prod-title a {
	font-family: var(--font-body);
	font-size: 14px;
	font-weight: 500;
	color: #070e22;
	text-decoration: none;
	transition: color 0.2s;
}

.ng-checkout-prod-title a:hover {
	color: #b48f3a;
}

.ng-checkout-prod-quantity {
	margin-top: 4px;
}

.ng-checkout-prod-quantity .quantity {
	display: inline-flex;
	align-items: center;
	border: 1px solid rgba(7, 14, 34, 0.08);
	border-radius: 4px;
	background: #ffffff;
	padding: 2px 4px;
}

.ng-checkout-prod-quantity .quantity input.qty {
	border: 0 !important;
	padding: 0 !important;
	text-align: center;
	width: 32px !important;
	font-size: 12px !important;
	font-family: var(--font-body);
	color: #070e22;
	background: transparent;
	outline: none;
	height: auto;
}

.woocommerce-checkout-review-order-table.loading {
	position: relative;
}

/* Shipping Progress Bar Styling */
.ng-shipping-progress-bar-wrapper {
	background: #fdfcf9;
	border: 1px solid rgba(180, 143, 58, 0.12);
	border-radius: 8px;
	padding: 16px 20px;
	margin-bottom: 24px;
	text-align: left;
	box-shadow: 0 4px 12px rgba(180, 143, 58, 0.03);
}

.ng-shipping-progress-bar-info {
	font-family: var(--font-body);
	font-size: 13.5px;
	color: #2a3148;
	margin-bottom: 10px;
	line-height: 1.4;
}

.ng-shipping-progress-bar-info strong {
	color: #b48f3a;
	font-weight: 600;
}

.ng-shipping-progress-bar-info .success-message {
	color: #2d7a4d;
}

.ng-shipping-progress-bar-info .success-message strong {
	color: #2d7a4d;
}

.ng-shipping-progress-bar-track {
	height: 6px;
	background: rgba(7, 14, 34, 0.04);
	border-radius: 3px;
	overflow: hidden;
	width: 100%;
}

.ng-shipping-progress-bar-fill {
	height: 100%;
	background: #b48f3a;
	border-radius: 3px;
	transition: width 0.4s ease-out;
}

.ng-shipping-progress-bar-wrapper .success-message + .ng-shipping-progress-bar-track .ng-shipping-progress-bar-fill {
	background: #2d7a4d;
}

/* ===== Login Drawer (Slide-out) ===== */
.ng-login-overlay {
	position: fixed; inset: 0; background: rgba(0, 0, 0, 0.6); z-index: 55;
	opacity: 0; pointer-events: none; transition: opacity 0.5s ease;
}
.ng-login-overlay.is-open { opacity: 1; pointer-events: auto; }
.ng-login-drawer {
	position: fixed; top: 0; right: 0; height: 100%; width: 100%;
	background: var(--c-surface-lowest, #fff); z-index: 56;
	box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
	transform: translateX(100%); transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
	display: flex; flex-direction: column;
}
@media (min-width: 768px) { .ng-login-drawer { width: 460px; } }
.ng-login-drawer.is-open { transform: translateX(0); }
.ng-login-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; border-bottom: 1px solid rgba(0, 0, 0, 0.08); }
.ng-login-drawer__head h3.ng-headline { font-family: var(--font-headline); font-size: 20px; margin: 0; color: var(--c-primary); }
.ng-login-drawer__body { flex: 1; overflow-y: auto; padding: 32px 24px; }


