/* =====================================================================
   SafetyHub Elementor Widgets — theme-aligned, Noto Sans Georgian
   Accent pulls from the theme (--color-main #FF6900) with a fallback.
   ===================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Georgian:wght@400;500;600;700;800&display=swap");

.shhc-carousel,
.shfb-grid,
.shcta,
.shcc {
	--sh-accent: var(--color-main, #FF6900);
	--sh-dark: var(--color-dark, #111111);
	--sh-font: "Noto Sans Georgian", -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Apply the font to everything inside our widgets */
.shhc-carousel, .shhc-carousel *,
.shfb-grid, .shfb-grid *,
.shcta, .shcta *,
.shcc, .shcc * {
	font-family: var(--sh-font);
}

/* Scroll-reveal animation utility */
@keyframes shFadeUp {
	from { opacity: 0; transform: translateY(18px); }
	to   { opacity: 1; transform: translateY(0); }
}
.sh-reveal { opacity: 0; }
.sh-reveal.sh-in { animation: shFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

/* =========================== HERO CAROUSEL =========================== */
@keyframes shKenBurns {
	from { transform: scale(1.08); }
	to   { transform: scale(1); }
}

.shhc-carousel {
	position: relative;
	overflow: hidden;
	width: 100%;
	background: var(--sh-accent);
	box-shadow: 0 24px 60px -28px rgba(0,0,0,.35);
}

.shhc-track {
	display: flex;
	transition: transform 1.15s cubic-bezier(0.76, 0, 0.24, 1);
	will-change: transform;
}
.shhc-track.is-dragging { transition: none; cursor: grabbing; }

.shhc-slide {
	position: relative;
	flex: 0 0 100%;
	min-width: 100%;
	min-height: 460px;
	display: flex;
	align-items: center;
	overflow: hidden;
	background-color: var(--sh-accent);
}

/* Image lives on its own ::after layer so we can zoom it (ken-burns) without
   moving the text. The slide element keeps its inline background-image; we hide
   its own paint by clipping to the content box and let ::after inherit + cover. */
.shhc-slide {
	background-size: 0 0;      /* element's own paint hidden; ::after does the work */
	background-repeat: no-repeat;
}
.shhc-slide::after {
	content: "";
	position: absolute; inset: 0;
	background-image: inherit;
	background-size: cover;
	background-position: center right;
	background-repeat: no-repeat;
	z-index: 0;
	transform: scale(1.08);
}
.shhc-slide.is-active::after { animation: shKenBurns 7s ease-out forwards; }

/* Readability scrim — left-weighted so the copy stays crisp on any photo */
.shhc-slide::before {
	content: "";
	position: absolute; inset: 0; z-index: 1;
	background: linear-gradient(
		100deg,
		color-mix(in srgb, var(--sh-accent) 92%, transparent) 0%,
		color-mix(in srgb, var(--sh-accent) 55%, transparent) 34%,
		transparent 62%
	);
	pointer-events: none;
}
.shhc-slide.shhc-has-overlay::before {
	background: linear-gradient(100deg, rgba(0,0,0,.6) 0%, rgba(0,0,0,.28) 45%, rgba(0,0,0,0) 75%);
}

.shhc-content {
	position: relative;
	z-index: 2;
	max-width: 560px;
	padding: 64px;
}

/* Animate the active slide's content in */
.shhc-slide .shhc-title,
.shhc-slide .shhc-description,
.shhc-slide .shhc-btn { opacity: 0; transform: translateY(18px); }
.shhc-slide.is-active .shhc-title { animation: shFadeUp .7s .1s cubic-bezier(.22,1,.36,1) forwards; }
.shhc-slide.is-active .shhc-description { animation: shFadeUp .7s .24s cubic-bezier(.22,1,.36,1) forwards; }
.shhc-slide.is-active .shhc-btn { animation: shFadeUp .7s .38s cubic-bezier(.22,1,.36,1) forwards; }

.shhc-title {
	margin: 0 0 16px;
	font-size: 38px;
	font-weight: 800;
	line-height: 1.08;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: var(--sh-dark);
}

.shhc-description {
	margin: 0 0 30px;
	font-size: 16px;
	line-height: 1.6;
	color: var(--sh-dark);
	opacity: .88;
	max-width: 42ch;
}

.shhc-btn {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 12px 26px;
	font-size: 13.5px;
	font-weight: 700;
	letter-spacing: .2px;
	text-transform: none;
	text-decoration: none;
	color: #fff;
	background: var(--sh-dark);
	border: 2px solid var(--sh-dark);
	border-radius: 100px;
	overflow: hidden;
	transition: color .3s ease, transform .25s ease, box-shadow .3s ease;
}
.shhc-btn::after {
	content: "→";
	font-size: 14px;
	transition: transform .3s ease;
}
.shhc-btn::before {
	content: "";
	position: absolute; inset: 0; z-index: -1;
	background: #fff;
	transform: translateX(-101%);
	transition: transform .35s cubic-bezier(.65,0,.35,1);
}
.shhc-btn:hover {
	color: var(--sh-dark);
	transform: translateY(-2px);
	box-shadow: 0 14px 26px -12px rgba(0,0,0,.5);
}
.shhc-btn:hover::before { transform: translateX(0); }
.shhc-btn:hover::after { transform: translateX(4px); }

/* Glass navigation arrows */
.shhc-arrow {
	position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
	width: 48px; height: 48px; border: 1px solid rgba(255,255,255,.5); border-radius: 50%;
	background: rgba(255,255,255,.18);
	-webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
	color: #fff;
	font-size: 22px; line-height: 1; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: background .25s ease, transform .25s ease, border-color .25s ease;
}
.shhc-arrow:hover {
	background: #fff; color: var(--sh-dark); border-color: #fff;
	transform: translateY(-50%) scale(1.06);
}
.shhc-prev { left: 22px; } .shhc-next { right: 22px; }

/* Progress-bar style dots */
.shhc-dots {
	position: absolute; bottom: 22px; left: 64px;
	z-index: 5; display: flex; gap: 10px;
}
.shhc-dot {
	position: relative;
	width: 32px; height: 4px; border-radius: 4px; border: none; padding: 0;
	background: color-mix(in srgb, var(--sh-dark) 25%, transparent);
	cursor: pointer; overflow: hidden;
	transition: background .25s ease;
}
.shhc-dot.is-active { background: color-mix(in srgb, var(--sh-dark) 22%, transparent); }
.shhc-dot.is-active::after {
	content: "";
	position: absolute; inset: 0;
	background: var(--sh-dark);
	transform-origin: left;
	transform: scaleX(0);
}
.shhc-dot.is-active.is-animating::after {
	animation: shDotFill linear forwards;
	animation-duration: var(--shhc-speed, 5000ms);
}
@keyframes shDotFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }

@media (max-width: 1024px) {
	.shhc-content { max-width: 66%; padding: 48px; }
	.shhc-title { font-size: 30px; }
	.shhc-dots { left: 48px; }
}
@media (max-width: 767px) {
	.shhc-slide { min-height: 520px; align-items: flex-end; }
	.shhc-slide::after { background-position: center top; }
	.shhc-slide::before {
		background: linear-gradient(
			0deg,
			color-mix(in srgb, var(--sh-accent) 97%, transparent) 42%,
			color-mix(in srgb, var(--sh-accent) 55%, transparent) 68%,
			transparent 100%
		);
	}
	.shhc-slide.shhc-has-overlay::before {
		background: linear-gradient(0deg, rgba(0,0,0,.75) 40%, rgba(0,0,0,.15) 80%, transparent 100%);
	}
	.shhc-content { max-width: 100%; padding: 34px 28px; width: 100%; }
	.shhc-title { font-size: 26px; }
	.shhc-description { max-width: 100%; }
	.shhc-arrow { width: 40px; height: 40px; font-size: 20px; }
	.shhc-prev { left: 14px; } .shhc-next { right: 14px; }
	.shhc-dots { left: 28px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
	.shhc-slide.is-active::after { animation: none; transform: scale(1); }
	.shhc-slide .shhc-title,
	.shhc-slide .shhc-description,
	.shhc-slide .shhc-btn { opacity: 1; transform: none; animation: none; }
	.shhc-dot.is-active.is-animating::after { animation: none; transform: scaleX(1); }
}

/* ============================ FEATURE BAR ============================ */
.shfb-grid {
	display: grid !important;
	grid-template-columns: repeat(4, 1fr);
	align-items: stretch;
	gap: 0;
	background: #fff;
	border: 1px solid #e8e8e8;
	border-radius: 8px;
	box-shadow: none;
	list-style: none;
	margin: 0;
}

.shfb-item {
	display: flex !important;
	flex-direction: row;
	align-items: center;
	gap: 14px;
	padding: 16px 22px;
	text-align: left;
	min-width: 0;
	transition: background .25s ease;
}
.shfb-item:hover { transform: none; background: #fafafa; }

.shfb-dividers .shfb-item:not(:last-child) { border-right: 1px solid #ececec; }

.shfb-icon {
	flex: 0 0 auto;
	width: 34px; height: 34px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 0;
	background: transparent;
	color: #221d1e;
	line-height: 0;
	transition: none;
}
.shfb-item:hover .shfb-icon {
	background: transparent;
	transform: none;
	box-shadow: none;
}
/* Robust icon color: inherit so both <i> and inline <svg> pick up the tile color */
.shfb-icon i { font-size: 19px; color: inherit; line-height: 1; transition: none; }
.shfb-icon svg { width: 20px; height: 20px; fill: currentColor; transition: none; }
.shfb-item:hover .shfb-icon { color: #221d1e; }

/* -----------------------------------------------------------------
   Font Awesome safety net.
   Elementor can load a per-style FA sheet (which only maps glyph
   codepoints) without the base sheet that binds the font-family. When
   that happens the icon renders as an empty box. Re-declare the binding
   here for solid / regular / brands, listing BOTH the FA5 and FA6 family
   names so it works whichever version the site ships. Harmless when the
   real FA base is already present.
   ----------------------------------------------------------------- */
.shfb-icon i.fas,
.shfb-icon i.fa-solid {
	font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
	font-weight: 900;
}
.shfb-icon i.far,
.shfb-icon i.fa-regular {
	font-family: "Font Awesome 6 Free", "Font Awesome 5 Free", "FontAwesome";
	font-weight: 400;
}
.shfb-icon i.fab,
.shfb-icon i.fa-brands {
	font-family: "Font Awesome 6 Brands", "Font Awesome 5 Brands", "FontAwesome";
	font-weight: 400;
}
.shfb-icon i {
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
}

.shfb-text { display: flex !important; flex-direction: column !important; gap: 3px; min-width: 0; }

.shfb-title {
	display: block;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: #221d1e;
}
.shfb-subtitle { display: block; font-size: 12.5px; line-height: 1.4; color: #999; }

@media (max-width: 1024px) {
	.shfb-grid { grid-template-columns: repeat(2, 1fr); }
	.shfb-dividers .shfb-item:nth-child(2n) { border-right: none; }
	.shfb-dividers .shfb-item:nth-child(1),
	.shfb-dividers .shfb-item:nth-child(2) { border-bottom: 1px solid #ececec; }
}
@media (max-width: 600px) {
	.shfb-grid { grid-template-columns: 1fr; }
	.shfb-dividers .shfb-item { border-right: none !important; border-bottom: 1px solid #ececec; }
	.shfb-dividers .shfb-item:last-child { border-bottom: none; }
}

/* ============================= CTA BANNER ============================ */
.shcta {
	position: relative;
	overflow: hidden;
	background: radial-gradient(120% 140% at 100% 50%, #1f1f1f 0%, #111111 55%);
	border-radius: 20px;
}
.shcta::before {
	content: "";
	position: absolute; right: -10%; top: 50%; transform: translateY(-50%);
	width: 60%; height: 160%;
	background: radial-gradient(circle, color-mix(in srgb, var(--sh-accent) 18%, transparent) 0%, transparent 60%);
	pointer-events: none;
}

.shcta-inner {
	position: relative; z-index: 1;
	display: flex; align-items: center; justify-content: space-between;
	gap: 48px; padding: 56px 60px;
}
.shcta-text { max-width: 560px; flex: 1 1 auto; }

.shcta-eyebrow {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
	color: var(--sh-accent); margin-bottom: 20px;
}
.shcta-eyebrow::before {
	content: ""; width: 28px; height: 2px; background: var(--sh-accent); border-radius: 2px;
}

/* Fluid, controlled heading — no more oversized wall of caps.
   Georgian reads better in mixed case, so drop the uppercase transform. */
.shcta-heading {
	margin: 0 0 30px;
	font-size: clamp(24px, 2.4vw + 12px, 36px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0;
	text-transform: none;
	color: #fff;
	text-wrap: balance;
}

.shcta-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

.shcta-btn-primary {
	display: inline-flex; align-items: center; gap: 8px;
	padding: 12px 26px;
	font-size: 13.5px; font-weight: 700; letter-spacing: .2px; text-transform: none;
	text-decoration: none; color: #121212;
	background: var(--sh-accent);
	border-radius: 100px;
	box-shadow: 0 10px 24px -10px color-mix(in srgb, var(--sh-accent) 70%, transparent);
	transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.shcta-btn-primary:hover {
	transform: translateY(-2px);
	filter: brightness(1.05);
	box-shadow: 0 16px 34px -10px color-mix(in srgb, var(--sh-accent) 65%, transparent);
}

.shcta-btn-secondary {
	display: inline-flex; align-items: center; gap: 8px;
	font-size: 13.5px; font-weight: 700; letter-spacing: .2px; text-transform: none;
	text-decoration: none; color: #fff; opacity: .82;
	transition: opacity .25s ease, gap .25s ease;
}
.shcta-btn-secondary:hover { opacity: 1; gap: 12px; }

.shcta-media { flex: 0 0 auto; display: flex; align-items: center; justify-content: center; gap: 20px; max-width: 44%; }
.shcta-img { max-height: 210px; width: auto; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(0,0,0,.45)); }

@media (max-width: 1024px) {
	.shcta-inner { padding: 46px 40px; gap: 32px; }
	.shcta-img { max-height: 160px; }
}
@media (max-width: 767px) {
	.shcta { border-radius: 16px; }
	.shcta-inner { flex-direction: column; align-items: flex-start; padding: 36px 26px; gap: 28px; }
	.shcta-text { max-width: 100%; }
	.shcta-media { max-width: 100%; justify-content: center; flex-wrap: wrap; order: -1; }
	.shcta-img { max-height: 130px; }
	.shcta-btn-primary { padding: 14px 28px; }
}

/* ======================== CATEGORIES CAROUSEL ======================== */
.shcc-head {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 20px; margin-bottom: 30px;
}
.shcc-title {
	margin: 0 0 6px;
	font-size: 28px; font-weight: 800; line-height: 1.15;
	letter-spacing: .5px; text-transform: uppercase;
	color: var(--sh-dark);
}
.shcc-subtitle { margin: 0; font-size: 15px; color: #888; }

.shcc-nav { display: flex; gap: 10px; flex: 0 0 auto; }
.shcc-arrow {
	width: 40px; height: 40px; border: 1px solid #e2e2e2; border-radius: 50%;
	background: #fff; color: var(--sh-dark);
	font-size: 20px; line-height: 1; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: background .25s ease, border-color .25s ease, color .25s ease, transform .2s ease;
}
.shcc-arrow:hover { color: #fff; background: var(--sh-accent); border-color: var(--sh-accent); transform: scale(1.06); }
.shcc-arrow.is-disabled, .shcc-arrow:disabled { opacity: .35; cursor: default; pointer-events: none; }
.shcc-arrow.is-disabled:hover, .shcc-arrow:disabled:hover { color: var(--sh-dark); background: #fff; border-color: #e2e2e2; transform: none; }

.shcc-carousel { overflow: hidden; width: 100%; }
.shcc-track { display: flex; gap: 20px; will-change: transform; }

.shcc-card {
	flex: 0 0 calc((100% - 100px) / 6);
	max-width: calc((100% - 100px) / 6);
	display: flex; flex-direction: column; align-items: center; gap: 12px;
	text-decoration: none;
}

.shcc-card-img {
	width: 100%; aspect-ratio: 1 / 1; max-height: 190px;
	background: #f6f6f6; border-radius: 16px;
	display: flex; align-items: center; justify-content: center; overflow: hidden;
	transition: box-shadow .3s ease, transform .3s ease, background .3s ease;
}
.shcc-card:hover .shcc-card-img {
	box-shadow: 0 14px 30px rgba(0,0,0,.10);
	transform: translateY(-4px);
	background: color-mix(in srgb, var(--sh-accent) 8%, #fff);
}
.shcc-card-img img { width: 65%; height: 65%; object-fit: contain; transition: transform .3s ease; }
.shcc-card:hover .shcc-card-img img { transform: scale(1.06); }

.shcc-label {
	font-size: 13px; font-weight: 700; text-align: center; line-height: 1.3;
	letter-spacing: .5px; text-transform: uppercase;
	color: var(--sh-dark);
	transition: color .25s ease;
}
.shcc-card:hover .shcc-label { color: var(--sh-accent); }

@media (max-width: 1024px) {
	.shcc-card { flex-basis: calc((100% - 40px) / 3); max-width: calc((100% - 40px) / 3); }
}
@media (max-width: 600px) {
	.shcc-card { flex-basis: calc((100% - 20px) / 2); max-width: calc((100% - 20px) / 2); }
	.shcc-title { font-size: 23px; }
}

/* ============================ BLOG POSTS ============================ */
.shbp { width: 100%; }

.shbp-head {
	display: flex; align-items: flex-end; justify-content: space-between;
	gap: 20px; margin-bottom: 30px;
}
.shbp-title {
	margin: 0 0 6px;
	font-size: 28px; font-weight: 800; line-height: 1.15;
	letter-spacing: .5px; text-transform: uppercase;
	color: var(--sh-dark, #111);
}
.shbp-subtitle { margin: 0; font-size: 15px; color: #888; }

.shbp-nav { display: flex; gap: 10px; flex: 0 0 auto; }
.shbp-cnav {
	width: 40px; height: 40px; border: 1px solid #e2e2e2; border-radius: 50%;
	background: #fff; color: var(--sh-dark, #111);
	font-size: 20px; line-height: 1; cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	transition: background .25s ease, border-color .25s ease, color .25s ease, transform .2s ease;
}
.shbp-cnav:hover {
	color: #fff;
	background: var(--sh-accent, #FF6900);
	border-color: var(--sh-accent, #FF6900);
	transform: scale(1.06);
}

/* Grid */
.shbp-grid {
	display: grid;
	grid-template-columns: repeat(var(--shbp-cols, 3), 1fr);
	gap: 32px 28px;
}

/* Card */
.shbp-card { min-width: 0; }
.shbp-card-link { text-decoration: none; display: block; }

.shbp-img {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 11;
	background-color: #f2f2f2;
	background-size: cover;
	background-position: center;
	border-radius: 14px;
	overflow: hidden;
	margin-bottom: 18px;
	transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.shbp-card:hover .shbp-img { transform: translateY(-4px); }

.shbp-arrow {
	position: absolute; top: 14px; right: 14px;
	width: 34px; height: 34px;
	display: flex; align-items: center; justify-content: center;
	background: #fff; color: var(--sh-accent, #FF6900);
	border-radius: 50%; font-size: 17px; font-weight: 700;
	opacity: 0;
	transform: translateY(-6px) scale(.85);
	transition: opacity .3s ease, transform .3s ease;
}
.shbp-card:hover .shbp-arrow { opacity: 1; transform: translateY(0) scale(1); }

.shbp-card-title {
	margin: 0 0 10px;
	font-size: 19px; font-weight: 700; line-height: 1.3;
	letter-spacing: .2px;
	color: var(--sh-dark, #111);
	transition: color .2s ease;
}
.shbp-card:hover .shbp-card-title { color: var(--sh-accent, #FF6900); }

.shbp-excerpt {
	margin: 0;
	font-size: 14px; line-height: 1.6; color: #777;
	display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
	overflow: hidden;
}

/* Load more */
.shbp-loadmore-wrap { display: flex; justify-content: center; margin-top: 40px; }
.shbp-loadmore {
	font-family: var(--sh-font, inherit);
	font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
	color: #fff; background: var(--sh-accent, #FF6900);
	border: none; cursor: pointer;
	padding: 14px 36px; border-radius: 40px;
	box-shadow: 0 6px 18px rgba(255,105,0,.18);
	transition: transform .25s ease, box-shadow .25s ease, filter .25s ease;
}
.shbp-loadmore:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 12px 28px rgba(255,105,0,.3); }
.shbp-loadmore.is-loading { opacity: .7; cursor: wait; }

/* Carousel mode reuses .shcc engine; size the cards */
.shbp-carousel .shbp-card {
	flex: 0 0 calc((100% - 56px) / 3);
	max-width: calc((100% - 56px) / 3);
}

@media (max-width: 1024px) {
	.shbp-grid { grid-template-columns: repeat(2, 1fr) !important; }
	.shbp-carousel .shbp-card { flex-basis: calc((100% - 28px) / 2); max-width: calc((100% - 28px) / 2); }
}
@media (max-width: 600px) {
	.shbp-grid { grid-template-columns: 1fr !important; }
	.shbp-carousel .shbp-card { flex-basis: 100%; max-width: 100%; }
	.shbp-title { font-size: 23px; }
}

/* =====================================================================
   DACHI HEADINGS + ANIMATED UNDERLINE  (v1.7.0)
   Applies the self-hosted Dachi display font to every heading and gives
   each one a modern left-anchored underline that draws in on scroll.
   The @font-face + --shhc-heading-font var are injected by the plugin PHP.
   ===================================================================== */
.elementor h1, .elementor h2, .elementor h3,
.elementor h4, .elementor h5, .elementor h6,
.elementor .headlines,
.shhc-title, .shcta-heading, .shcc-title, .shmm-panel-title {
	font-family: var(--shhc-heading-font, 'Dachi', 'Noto Sans Georgian', sans-serif) !important;
}

/* Modern animated underline for headline elements.
   Add the class `sh-headline` (or keep your existing `.headlines`) to any
   heading you want the effect on. Underline grows from the left. */
.headlines,
.sh-headline {
	position: relative;
	display: inline-block;
	text-align: left;
	padding-bottom: 14px;
}
.headlines::after,
.sh-headline::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	height: 4px;
	width: 100%;
	max-width: 340px;
	border-radius: 4px;
	background: linear-gradient(90deg,
		var(--color-main, #FF6900) 0%,
		color-mix(in srgb, var(--color-main, #FF6900) 55%, transparent) 100%);
	transform: scaleX(0);
	transform-origin: left center;
	transition: transform .9s cubic-bezier(.22,1,.36,1);
}
/* Draw the line in when the heading scrolls into view (JS adds .sh-in),
   and also on hover for immediate feedback in the editor. */
.headlines.sh-in::after,
.sh-headline.sh-in::after,
.headlines:hover::after,
.sh-headline:hover::after {
	transform: scaleX(1);
}
@media (prefers-reduced-motion: reduce) {
	.headlines::after, .sh-headline::after { transition: none; transform: scaleX(1); }
}

/* =====================================================================
   MEGA MENU — Gaspar-style flat panel, SafetyHub colors  (v1.7.1)
   White full-width card panel · full-height column dividers ·
   bare icons · bold label + soft badge · muted description.
   ===================================================================== */
.shmm {
	--sh-accent: var(--color-main, #FF6900);
	--sh-dark: var(--color-dark, #111111);
	--sh-line: rgba(17,17,17,.08);
	--sh-font: "Noto Sans Georgian", -apple-system, BlinkMacSystemFont, sans-serif;
	position: relative;
	display: inline-block;
}
.shmm, .shmm * { font-family: var(--sh-font); box-sizing: border-box; }

/* ---- Trigger (nav-item look, like Gaspar's "Company ^") ---- */
.shmm-trigger {
	display: inline-flex; align-items: center; gap: 7px;
	background: none; border: 0; cursor: pointer;
	font-size: 15px; font-weight: 600; color: var(--sh-dark);
	padding: 12px 6px; line-height: 1;
	transition: color .2s ease;
}
.shmm-trigger:hover { color: var(--sh-accent); }
.shmm-trigger-link { color: inherit; text-decoration: none; }
.shmm-caret { transition: transform .28s ease; opacity: .55; }
.shmm.is-open .shmm-caret { transform: rotate(180deg); opacity: 1; }
.shmm.is-open .shmm-trigger { color: var(--sh-accent); }

/* ---- Panel: flat white sheet, soft shadow, generous air ---- */
.shmm-panel {
	background: #fff;
	border: 1px solid var(--sh-line);
	border-radius: 16px;
	box-shadow: 0 24px 60px -24px rgba(17,17,17,.22), 0 4px 14px -8px rgba(17,17,17,.10);
	padding: 8px;
}

.shmm--hover .shmm-panel {
	position: absolute;
	top: calc(100% + 10px);
	left: 50%;
	transform: translateX(-50%) translateY(8px);
	z-index: 999;
	width: max-content;
	min-width: min(1040px, 94vw);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity .28s ease, transform .28s cubic-bezier(.22,1,.36,1), visibility .28s;
}
.shmm--hover.is-open .shmm-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}

.shmm-panel-title {
	font-size: 12px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase;
	color: #A6A6A6; padding: 18px 26px 0;
}

/* ---- Card grid: equal columns, full-height thin dividers ---- */
.shmm-grid {
	display: grid;
	grid-template-columns: repeat(var(--shmm-cols, 4), 1fr);
	gap: 0;
}
.shmm-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	padding: 30px 28px 34px;
	text-decoration: none;
	border-radius: 12px;
	transition: background .22s ease;
}
/* Full-height divider between columns, exactly like the reference */
.shmm-grid .shmm-card + .shmm-card { border-left: 1px solid var(--sh-line); border-radius: 0; }
.shmm-grid .shmm-card:first-child { border-radius: 12px 0 0 12px; }
.shmm-grid .shmm-card:last-child  { border-radius: 0 12px 12px 0; }
.shmm-card:hover { background: #FAFAF9; }

/* ---- Icon: bare, no box — just the uploaded image, modest size ---- */
.shmm-card-icon {
	display: inline-flex; align-items: center; justify-content: flex-start;
	width: 34px; height: 34px;
}
.shmm-card-icon img {
	width: 100%; height: 100%; object-fit: contain;
	transition: transform .25s ease;
}
.shmm-card:hover .shmm-card-icon img { transform: translateY(-2px); }

.shmm-card-text { display: flex; flex-direction: column; gap: 8px; }
.shmm-card-label {
	display: inline-flex; align-items: center; gap: 8px; flex-wrap: wrap;
	font-size: 15px; font-weight: 700; color: var(--sh-dark); line-height: 1.3;
	transition: color .22s ease;
}
.shmm-card:hover .shmm-card-label { color: var(--sh-accent); }
.shmm-card-desc {
	font-size: 13.5px; color: #8A8A8A; line-height: 1.65;
	max-width: 24ch;
}
.shmm-badge {
	font-size: 10.5px; font-weight: 700; letter-spacing: .2px;
	padding: 3px 9px; border-radius: 100px;
	color: var(--sh-accent);
	background: color-mix(in srgb, var(--sh-accent) 13%, transparent);
}

/* ---- Inline (always-open) mode — flows in place, reused in drawer ---- */
.shmm--inline { display: block; }
.shmm--inline .shmm-panel {
	position: static;
	opacity: 1; visibility: visible; pointer-events: auto;
	transform: none;
	min-width: 0; width: auto;
}

/* ---- Elementor editor: always show the panel so it can be edited ---- */
.elementor-editor-active .shmm--hover .shmm-panel,
body.elementor-editor-active .shmm .shmm-panel {
	position: static !important;
	opacity: 1 !important;
	visibility: visible !important;
	pointer-events: auto !important;
	transform: none !important;
	min-width: 0;
	width: auto;
	margin-top: 10px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.shmm-grid { grid-template-columns: repeat(var(--shmm-cols-t, 3), 1fr); }
	.shmm--hover .shmm-panel { min-width: min(760px, 94vw); }
	.shmm-card { padding: 26px 22px 28px; }
}
@media (max-width: 767px) {
	.shmm-grid { grid-template-columns: repeat(var(--shmm-cols-m, 2), 1fr); }
	/* On phones dividers become a hairline grid */
	.shmm-grid .shmm-card + .shmm-card { border-left: 0; }
	.shmm-grid .shmm-card:nth-child(even) { border-left: 1px solid var(--sh-line); }
	.shmm-grid .shmm-card:nth-child(n+3) { border-top: 1px solid var(--sh-line); }
	.shmm-grid .shmm-card { border-radius: 0; }
	.shmm-card { padding: 20px 18px 22px; gap: 12px; }
	.shmm-card-icon { width: 30px; height: 30px; }
	.shmm-card-label { font-size: 14px; }
	.shmm-card-desc { font-size: 12.5px; max-width: none; }
	/* Hover dropdown becomes a full-width tap sheet */
	.shmm--hover .shmm-panel {
		position: fixed;
		left: 10px; right: 10px;
		top: auto;
		transform: translateY(8px);
		min-width: 0; width: auto;
		max-height: 72vh;
		overflow-y: auto;
	}
	.shmm--hover.is-open .shmm-panel { transform: translateY(0); }
}
/* =====================================================================
   EXTRA CTA MOBILE POLISH  (v1.7.0)
   ===================================================================== */
@media (max-width: 480px) {
	.shcta-inner { padding: 30px 20px; gap: 22px; }
	.shcta-heading { font-size: clamp(20px, 6vw, 26px); margin-bottom: 22px; }
	.shcta-eyebrow { font-size: 11px; letter-spacing: 1.5px; margin-bottom: 16px; }
	.shcta-actions { gap: 14px; width: 100%; }
	.shcta-btn-primary { width: 100%; justify-content: center; padding: 15px 24px; }
	.shcta-btn-secondary { width: 100%; justify-content: center; }
	.shcta-img { max-height: 110px; }
}

/* =====================================================================
   HEADER NAV — Gaspar-style floating bar + full-width mega panel (v1.8.0)
   ===================================================================== */
.shnav {
	--sh-accent: var(--color-main, #FF6900);
	--sh-dark: var(--color-dark, #111111);
	--sh-line: rgba(17,17,17,.08);
	--sh-font: "Noto Sans Georgian", -apple-system, BlinkMacSystemFont, sans-serif;
	position: relative;
	width: 100%;
}
.shnav, .shnav * { font-family: var(--sh-font); box-sizing: border-box; }

/* ---- Sticky mode ---- */
.shnav--sticky {
	position: sticky;
	top: 0;
	z-index: 1000;
	padding: 10px 0;
	transition: padding .25s ease;
}
.shnav--sticky.is-stuck { padding: 6px 0; }
.shnav--sticky.is-stuck .shnav-bar {
	box-shadow: 0 8px 30px -12px rgba(17,17,17,.28);
}
/* When sticky, keep the bar readable over any hero behind it */
.shnav--sticky .shnav-bar { transition: box-shadow .25s ease, padding .25s ease; }

/* ---- The floating white bar ---- */
.shnav-bar {
	display: flex;
	align-items: center;
	gap: 28px;
	background: #fff;
	border: 1px solid var(--sh-line);
	border-radius: 16px;
	box-shadow: 0 10px 30px -18px rgba(17,17,17,.18);
	padding: 12px 22px;
	position: relative;
	z-index: 20;
}

.shnav-logo { display: inline-flex; align-items: center; text-decoration: none; flex: 0 0 auto; }
.shnav-logo img { height: 38px; width: auto; display: block; }
.shnav-logo-text { font-size: 20px; font-weight: 800; color: var(--sh-dark); }

/* ---- Centered menu ---- */
.shnav-menu {
	display: flex;
	align-items: center;
	gap: 6px;
	flex: 1 1 auto;
	justify-content: center;
	min-width: 0;
}
.shnav-item {
	display: inline-flex; align-items: center; gap: 7px;
	background: none; border: 0; cursor: pointer;
	font-size: 14.5px; font-weight: 600; color: #3A3A3A;
	text-decoration: none;
	padding: 10px 14px; border-radius: 10px;
	line-height: 1;
	transition: color .2s ease, background .2s ease;
	white-space: nowrap;
}
.shnav-item:hover { color: var(--sh-accent); background: #FAFAF9; }
.shnav-item.is-open { color: var(--sh-accent); }
.shnav-item .shmm-caret { opacity: .5; transition: transform .28s ease, opacity .2s; }
.shnav-item.is-open .shmm-caret { transform: rotate(180deg); opacity: 1; }

/* ---- Regular submenu dropdown (items with children) ---- */
.shnav-item-wrap { position: relative; display: inline-flex; }
.shnav-item-wrap .shnav-sub {
	position: absolute;
	top: calc(100% + 12px); left: 50%;
	transform: translateX(-50%) translateY(8px);
	min-width: 200px;
	background: #fff;
	border: 1px solid rgba(17,17,17,.08);
	border-radius: 12px;
	box-shadow: 0 20px 44px -20px rgba(17,17,17,.28);
	padding: 8px;
	display: flex; flex-direction: column;
	opacity: 0; visibility: hidden; pointer-events: none;
	transition: opacity .22s ease, transform .22s cubic-bezier(.22,1,.36,1), visibility .22s;
	z-index: 30;
}
/* little hover bridge so the gap doesn't drop the menu */
.shnav-item-wrap::after {
	content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px;
}
.shnav-item-wrap:hover .shnav-sub,
.shnav-item-wrap.is-open .shnav-sub {
	opacity: 1; visibility: visible; pointer-events: auto;
	transform: translateX(-50%) translateY(0);
}
.shnav-item-wrap:hover .shnav-item--has-sub .shmm-caret,
.shnav-item-wrap.is-open .shnav-item--has-sub .shmm-caret { transform: rotate(180deg); opacity: 1; }
.shnav-sub-link {
	display: block;
	padding: 10px 14px;
	font-size: 14px; font-weight: 500; color: #3A3A3A;
	text-decoration: none; white-space: nowrap;
	border-radius: 8px;
	transition: color .18s ease, background .18s ease;
}
.shnav-sub-link:hover { color: var(--sh-accent); background: #FAFAF9; }

/* ---- Right actions ---- */
.shnav-actions { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }

/* ---- Account / Wishlist / Cart — clean minimal icons ---- */
.shnav-woo { display: flex; align-items: center; gap: 2px; }
.shnav-woo-link {
	display: inline-flex; align-items: center; justify-content: center;
	position: relative;
	width: 40px; height: 40px;
	color: #221d1e;
	text-decoration: none;
	border-radius: 8px;
	transition: background .2s ease;
}
.shnav-woo-link:hover { background: #f3f3f3; }
.shnav-woo-link svg { display: block; }
.shnav-woo-count {
	position: absolute; top: 3px; right: 2px;
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 16px; height: 16px; padding: 0 4px;
	font-size: 10px; font-weight: 700; line-height: 1;
	color: var(--color-on-main, #1A1A1A);
	background: var(--sh-accent, var(--color-main, #FCC820));
	border-radius: 10px;
}
.shnav-woo-count[hidden] { display: none; }

.shnav-ghost {
	font-size: 14px; font-weight: 600; color: var(--sh-dark);
	text-decoration: none; white-space: nowrap;
	transition: color .2s ease;
}
.shnav-ghost:hover { color: var(--sh-accent); }
.shnav-pill {
	display: inline-flex; align-items: center;
	padding: 12px 26px;
	font-size: 13.5px; font-weight: 700;
	color: #fff; background: var(--sh-dark);
	border-radius: 100px;
	text-decoration: none; white-space: nowrap;
	transition: transform .2s ease, filter .2s ease;
}
.shnav-pill:hover { transform: translateY(-1px); filter: brightness(1.15); }
.shnav-search-toggle {
	display: inline-flex; align-items: center; justify-content: center;
	width: 38px; height: 38px;
	background: none; border: 0; border-radius: 50%;
	color: var(--sh-dark); cursor: pointer;
	transition: background .2s ease, color .2s ease;
}
.shnav-search-toggle:hover { background: #F4F4F2; color: var(--sh-accent); }

/* ---- Inline search row ---- */
.shnav-search {
	display: none;
	gap: 10px;
	margin-top: 10px;
	background: #fff;
	border: 1px solid var(--sh-line);
	border-radius: 14px;
	box-shadow: 0 10px 30px -18px rgba(17,17,17,.18);
	padding: 10px;
}
.shnav.search-open .shnav-search { display: flex; }
.shnav-search input[type="search"] {
	flex: 1 1 auto; border: 0; outline: 0;
	font-size: 15px; padding: 10px 14px;
	font-family: var(--sh-font);
}
.shnav-search button {
	flex: 0 0 auto;
	border: 0; cursor: pointer;
	padding: 10px 24px; border-radius: 10px;
	font-size: 13.5px; font-weight: 700;
	background: var(--sh-accent); color: #fff;
	font-family: var(--sh-font);
	transition: filter .2s ease;
}
.shnav-search button:hover { filter: brightness(1.06); }

/* ---- Full-width mega panel: spans the whole bar width ---- */
.shnav-mega.shmm-panel {
	position: absolute;
	top: calc(100% + 10px);
	left: 0; right: 0;
	z-index: 30;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(8px);
	transition: opacity .28s ease, transform .28s cubic-bezier(.22,1,.36,1), visibility .28s;
}
.shnav.mega-open .shnav-mega.shmm-panel {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(0);
}

/* ---- Burger (hidden on desktop) ---- */
.shnav-burger {
	display: none;
	flex-direction: column; justify-content: center; gap: 5px;
	width: 40px; height: 40px;
	background: none; border: 0; cursor: pointer;
	padding: 8px;
}
.shnav-burger span {
	display: block; height: 2px; width: 100%;
	background: var(--sh-dark); border-radius: 2px;
	transition: transform .3s ease, opacity .3s ease;
}
.shnav.drawer-open .shnav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.shnav.drawer-open .shnav-burger span:nth-child(2) { opacity: 0; }
.shnav.drawer-open .shnav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile drawer ---- */
.shnav-drawer {
	display: none;
	background: #fff;
	border: 1px solid var(--sh-line);
	border-radius: 16px;
	box-shadow: 0 24px 60px -24px rgba(17,17,17,.25);
	margin-top: 10px;
	padding: 18px;
	max-height: 76vh;
	overflow-y: auto;
}
.shnav.drawer-open .shnav-drawer { display: block; }
.shnav-drawer-menu { display: flex; flex-direction: column; }
.shnav-drawer-link {
	font-size: 16px; font-weight: 600; color: var(--sh-dark);
	text-decoration: none;
	padding: 14px 8px;
	border-bottom: 1px solid var(--sh-line);
	transition: color .2s ease;
}
.shnav-drawer-link:hover { color: var(--sh-accent); }

/* ---- Drawer expandable submenu groups ---- */
.shnav-drawer-group { display: flex; flex-direction: column; border-bottom: 1px solid var(--sh-line); }
.shnav-drawer-toggle {
	display: flex; align-items: center; justify-content: space-between;
	width: 100%; background: none; border: 0; cursor: pointer;
	font-size: 16px; font-weight: 600; color: var(--sh-dark);
	padding: 14px 8px; text-align: left;
	font-family: inherit;
}
.shnav-drawer-toggle .shmm-caret { opacity: .5; transition: transform .28s ease; }
.shnav-drawer-group.is-open .shnav-drawer-toggle { color: var(--sh-accent); }
.shnav-drawer-group.is-open .shnav-drawer-toggle .shmm-caret { transform: rotate(180deg); opacity: 1; }
.shnav-drawer-sub {
	display: grid; grid-template-rows: 0fr;
	transition: grid-template-rows .3s ease;
}
.shnav-drawer-group.is-open .shnav-drawer-sub { grid-template-rows: 1fr; }
.shnav-drawer-sub > * { overflow: hidden; }
.shnav-drawer-sublink {
	display: block;
	font-size: 15px; font-weight: 500; color: #555;
	text-decoration: none;
	padding: 11px 8px 11px 22px;
	transition: color .18s ease;
}
.shnav-drawer-sublink:first-child { padding-top: 4px; }
.shnav-drawer-sublink:last-child { padding-bottom: 14px; }
.shnav-drawer-sublink:hover { color: var(--sh-accent); }

.shnav-drawer-cats { margin-top: 18px; }
.shnav-drawer-cats-title {
	font-size: 12px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase;
	color: #A6A6A6; padding: 0 8px 10px;
}
.shnav-drawer-actions {
	display: flex; flex-direction: column; gap: 12px;
	margin-top: 20px; padding-top: 18px;
	border-top: 1px solid var(--sh-line);
}
.shnav-drawer-actions .shnav-pill,
.shnav-drawer-actions .shnav-ghost { justify-content: center; text-align: center; }

/* ---- Editor: show mega panel + keep bar interactive-looking ---- */
body.elementor-editor-active .shnav-mega.shmm-panel {
	position: static !important;
	opacity: 1 !important; visibility: visible !important;
	pointer-events: auto !important; transform: none !important;
	margin-top: 10px;
}

/* ---- Responsive collapse ---- */
@media (max-width: 1024px) {
	.shnav-menu, .shnav-ghost, .shnav-pill { display: none !important; }
	.shnav-burger { display: flex !important; flex: 0 0 auto; }
	.shnav-bar {
		gap: 10px; padding: 10px 14px;
		justify-content: space-between;
		flex-wrap: nowrap;
	}
	.shnav-logo { flex: 0 1 auto; min-width: 0; }
	.shnav-logo-text { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 20px; }
	.shnav-actions { gap: 6px; flex: 0 0 auto; }
	.shnav-mega.shmm-panel { display: none; }
	.shnav-drawer-actions .shnav-pill { display: inline-flex !important; }
	.shnav-drawer-actions .shnav-ghost { display: inline !important; }
}
@media (max-width: 480px) {
	/* Very small screens: logo + cart + burger only; the rest lives in the drawer */
	.shnav-search-toggle { display: none !important; }
	.shnav-woo { gap: 0; }
	.shnav-woo-link { width: 36px; height: 36px; }
	.shnav-woo-link svg { width: 18px; height: 18px; }
	.shnav-logo-text { font-size: 18px; max-width: 40vw; }
	.shnav-bar { padding: 8px 12px; }
	.shnav-burger { width: 36px; height: 36px; padding: 6px; }
}

/* =====================================================================
   FOOTER — modern dark footer  (v1.9.0)
   ===================================================================== */
.shft {
	--sh-accent: var(--color-main, #221D1E);
	--shft-bg: #111111;
	--shft-line: rgba(255,255,255,.09);
	--shft-text: rgba(255,255,255,.62);
	--sh-font: "Noto Sans Georgian", -apple-system, BlinkMacSystemFont, sans-serif;
	position: relative;
	overflow: hidden;
	background: var(--shft-bg);
	border-radius: 24px;
	color: #fff;
}
.shft, .shft * { font-family: var(--sh-font); box-sizing: border-box; }

/* Animated accent line at the very top — a flowing gradient that keeps moving */
.shft::before {
	content: "";
	position: absolute; left: 0; top: 0;
	width: 100%; height: 3px;
	--shft-scroll: 0%;
	background: linear-gradient(90deg,
		transparent 0%,
		var(--sh-accent) 18%,
		#ffe27a 38%,
		var(--sh-accent) 58%,
		transparent 100%);
	background-size: 200% 100%;
	background-position: var(--shft-scroll) 0;
	opacity: .95;
	pointer-events: none;
	animation: shftFlow 3.5s linear infinite;
}
@keyframes shftFlow {
	0%   { background-position: calc(var(--shft-scroll) + 200%) 0; }
	100% { background-position: calc(var(--shft-scroll) - 200%) 0; }
}
@media (prefers-reduced-motion: reduce) {
	.shft::before { animation: none; background: linear-gradient(90deg, var(--sh-accent) 0%, transparent 55%); }
}

.shft-inner {
	position: relative; z-index: 1;
	max-width: 1240px; margin: 0 auto;
	padding: 56px 40px 0;
}

/* ---- Main: brand + link columns ---- */
.shft-main {
	display: grid;
	grid-template-columns: 1fr 1.6fr;
	gap: 80px;
	padding-bottom: 44px;
}

.shft-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }
.shft-logo img { height: 42px; width: auto; display: block; }
.shft-logo-text { font-size: 24px; font-weight: 800; color: #fff; text-decoration: none; }
.shft-about { margin: 0; font-size: 14.5px; line-height: 1.75; color: var(--shft-text); max-width: 34ch; }

.shft-contact { display: flex; flex-direction: column; gap: 10px; }
.shft-contact-item {
	display: inline-flex; align-items: center; gap: 10px;
	font-size: 14px; font-weight: 600; color: #fff; text-decoration: none;
	transition: color .2s ease;
}
.shft-contact-item svg { color: var(--sh-accent); flex: 0 0 auto; }
.shft-contact-item:hover { color: var(--sh-accent); }

.shft-socials { display: flex; gap: 10px; margin-top: 4px; }
.shft-soc {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border: 1px solid var(--shft-line);
	border-radius: 12px;
	color: rgba(255,255,255,.6); text-decoration: none;
	transition: color .22s ease, border-color .22s ease;
}
.shft-soc i, .shft-soc svg { font-size: 15px; width: 15px; height: 15px; fill: currentColor; }
.shft-soc:hover {
	color: #fff;
	border-color: rgba(255,255,255,.35);
}

/* Link columns */
.shft-cols {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 32px;
	align-content: start;
}
.shft-col-title {
	position: relative;
	font-family: "Tbc", var(--sh-font);
	font-feature-settings: "case" 1;
	font-size: 15px; font-weight: 800; color: #fff;
	padding-bottom: 14px; margin-bottom: 18px;
}
/* Underline removed for the minimal look; titles stand on type alone */
.shft-col-title::after { content: none; }

/* ---- Payment methods (footer) ---- */
.shft-pay { margin-top: 26px; }
.shft-pay--right {
	display: flex; flex-direction: column; align-items: flex-end;
	margin: 6px 0 26px;
}
.shft-pay--right .shft-pay-row { justify-content: flex-end; }
@media (max-width: 767px) {
	.shft-pay--right { align-items: flex-start; }
	.shft-pay--right .shft-pay-row { justify-content: flex-start; }
}
.shft-pay-title {
	display: block;
	font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
	color: var(--shft-text);
	margin-bottom: 12px;
}
.shft-pay-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.shft-pay-chip {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 52px; height: 32px; padding: 0 10px;
	background: #fff;
	border-radius: 6px;
}
.shft-pay-chip img { max-height: 18px; max-width: 44px; width: auto; display: block; }
.shft-pay-label { font-size: 11px; font-weight: 800; letter-spacing: .02em; color: #1a1a1a; font-style: italic; }
.shft-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.shft-links a {
	display: inline-block;
	font-size: 14px; color: var(--shft-text); text-decoration: none;
	transition: color .22s ease;
}
/* Arrow slides in on hover */
.shft-links a:hover { color: #fff; }

/* ---- Newsletter band ---- */
.shft-news {
	display: flex; align-items: center; justify-content: space-between; gap: 32px;
	border-top: 1px solid var(--shft-line);
	padding: 34px 0;
	flex-wrap: wrap;
}
.shft-news-title { font-size: 19px; font-weight: 800; color: #fff; margin-bottom: 5px; }
.shft-news-sub { font-size: 13.5px; color: var(--shft-text); }
.shft-news-form {
	display: flex; gap: 8px;
	background: rgba(255,255,255,.06);
	border: 1px solid var(--shft-line);
	border-radius: 100px;
	padding: 6px;
	min-width: min(420px, 100%);
}
.shft-news-form input[type="email"] {
	flex: 1 1 auto; min-width: 0;
	background: none; border: 0; outline: 0;
	color: #fff; font-size: 14px;
	padding: 10px 18px;
	font-family: var(--sh-font);
}
.shft-news-form input[type="email"]::placeholder { color: rgba(255,255,255,.4); }
.shft-news-form button {
	flex: 0 0 auto;
	border: 0; cursor: pointer;
	padding: 11px 26px; border-radius: 100px;
	font-size: 13.5px; font-weight: 700;
	background: var(--sh-accent); color: #fff;
	font-family: var(--sh-font);
	transition: filter .2s ease, transform .2s ease;
}
.shft-news-form button:hover { filter: brightness(1.07); transform: translateY(-1px); }

/* ---- Bottom bar ---- */
.shft-bottom {
	display: flex; align-items: center; justify-content: space-between; gap: 20px;
	border-top: 1px solid var(--shft-line);
	padding: 22px 0 26px;
	flex-wrap: wrap;
}
.shft-copy { font-size: 13px; color: var(--shft-text); }
.shft-bottom-right { display: flex; align-items: center; gap: 18px; }
.shft-credit {
	font-size: 13px; color: var(--shft-text); text-decoration: underline;
	text-underline-offset: 3px;
	transition: color .2s ease;
}
.shft-credit:hover { color: #fff; }
.shft-top {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px;
	border: 1px solid var(--shft-line); border-radius: 12px;
	background: none; color: #fff; cursor: pointer;
	transition: background .22s ease, border-color .22s ease, transform .2s ease;
}
.shft-top:hover {
	background: var(--sh-accent);
	border-color: var(--sh-accent);
	transform: translateY(-3px);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
	.shft-inner { padding: 52px 32px 0; }
	.shft-main { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 767px) {
	.shft { border-radius: 18px; }
	.shft-inner { padding: 42px 22px 0; }
	.shft-cols { grid-template-columns: 1fr 1fr; gap: 30px; }
	.shft-news { flex-direction: column; align-items: stretch; }
	.shft-news-form { min-width: 0; }
	.shft-bottom { flex-direction: column; align-items: flex-start; gap: 14px; padding-bottom: 22px; }
}
@media (max-width: 480px) {
	.shft-cols { grid-template-columns: 1fr; }
}

/* =====================================================================
   LIGHT / MINIMAL VARIANTS — CTA + Footer + Orbit  (v2.1.0)
   Graphy-style: white cards, hairlines, muted grays, lots of air.
   ===================================================================== */

/* ---------- CTA: light theme ---------- */
.shcta--light {
	background: #FFFFFF;
	border: 1px solid rgba(17,17,17,.08);
	box-shadow: 0 30px 60px -40px rgba(17,17,17,.25);
}
.shcta--light::before { display: none; } /* kill the dark glow */
.shcta--light .shcta-eyebrow { color: #9A9A9A; }
.shcta--light .shcta-eyebrow::before { background: var(--sh-accent); }
.shcta--light .shcta-heading { color: #131313; font-weight: 800; }
/* Accent-colored emphasis: wrap part of the heading in **stars**? No —
   keep it simple; users can color words via Elementor if needed. */
.shcta--light .shcta-btn-primary {
	background: #131313; color: #fff;
	box-shadow: 0 10px 24px -14px rgba(17,17,17,.5);
}
.shcta--light .shcta-btn-primary:hover { filter: none; background: #000; }
.shcta--light .shcta-btn-secondary { color: #131313; opacity: .6; }
.shcta--light .shcta-btn-secondary:hover { opacity: 1; }

/* ---------- CTA: orbit graphic ---------- */
.shcta-orbit {
	position: relative;
	flex: 0 0 auto;
	width: 300px; height: 240px;
	display: flex; align-items: center; justify-content: center;
}
.shcta-orbit-core {
	position: absolute;
	width: 46px; height: 46px;
	border: 1.5px solid rgba(17,17,17,.18);
	border-radius: 14px;
	display: block;
}
.shcta-orbit-core::after {
	content: "";
	position: absolute; inset: 12px;
	border: 1.5px solid var(--sh-accent);
	border-radius: 6px;
	transform: rotate(45deg);
	opacity: .55;
}
.shcta-orbit-ring {
	position: absolute;
	border: 1px solid rgba(17,17,17,.10);
	border-radius: 50%;
	top: 50%; left: 50%;
	transform: translate(-50%, -50%);
}
.shcta-orbit-ring--1 { width: 120px; height: 120px; animation: shOrbitSpin 18s linear infinite; }
.shcta-orbit-ring--2 { width: 190px; height: 190px; animation: shOrbitSpin 26s linear infinite reverse; }
.shcta-orbit-ring--3 { width: 260px; height: 260px; animation: shOrbitSpin 34s linear infinite; }
.shcta-orbit-dot {
	position: absolute; top: -5px; left: 50%;
	width: 26px; height: 26px; margin-left: -13px;
	border-radius: 50%;
	background: var(--sh-accent);
	box-shadow: 0 6px 16px -6px color-mix(in srgb, var(--sh-accent) 70%, transparent);
}
.shcta-orbit-ring--2 .shcta-orbit-dot { background: #131313; width: 22px; height: 22px; margin-left: -11px; }
.shcta-orbit-ring--3 .shcta-orbit-dot { background: #fff; border: 1.5px solid rgba(17,17,17,.15); width: 20px; height: 20px; margin-left: -10px; }
@keyframes shOrbitSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
	.shcta-orbit-ring { animation: none !important; }
}
@media (max-width: 900px) {
	.shcta-orbit { display: none; }
}

/* ---------- Footer: light theme ---------- */
.shft--light {
	--shft-bg: #FFFFFF;
	--shft-line: rgba(17,17,17,.09);
	--shft-text: #6B6B6B;
	color: #131313;
	border-radius: 24px 24px 0 0;
	box-shadow: 0 -1px 0 rgba(17,17,17,.05);
}
.shft--light::before {
	background: linear-gradient(90deg, var(--sh-accent) 0%, transparent 45%);
	opacity: .8;
}
.shft--light .shft-logo-text { color: #131313; }
.shft--light .shft-about { color: var(--shft-text); }
.shft--light .shft-contact-item { color: #131313; }
.shft--light .shft-contact-item:hover { color: var(--sh-accent); }
.shft--light .shft-soc {
	border-color: var(--shft-line);
	color: #131313;
}
.shft--light .shft-soc:hover { color: #131313; border-color: rgba(0,0,0,.35); }
.shft--light .shft-col-title { color: #131313; }
.shft--light .shft-links a { color: var(--shft-text); }
.shft--light .shft-links a:hover { color: #131313; }
.shft--light .shft-news-title { color: #131313; }
.shft--light .shft-news-sub { color: var(--shft-text); }
.shft--light .shft-news-form {
	background: #F6F6F5;
	border-color: var(--shft-line);
}
.shft--light .shft-news-form input[type="email"] { color: #131313; }
.shft--light .shft-news-form input[type="email"]::placeholder { color: #A6A6A6; }
.shft--light .shft-copy { color: var(--shft-text); }
.shft--light .shft-credit { color: var(--shft-text); }
.shft--light .shft-credit:hover { color: #131313; }
.shft--light .shft-top {
	border-color: var(--shft-line);
	color: #131313;
}
.shft--light .shft-top:hover { background: var(--sh-accent); border-color: var(--sh-accent); color: #fff; }

/* -----------------------------------------------------------------
   BUTTONS: consistent minimal style everywhere (Farfetch-style)
   ----------------------------------------------------------------- */
.shhc-btn,
.shcta-btn-primary,
.skolka-button a,
form.shnav-search button,
.shnav-search button,
.shnav-pill {
	background: #221d1e !important;
	color: #ffffff !important;
	border: 1px solid #221d1e !important;
	border-radius: 6px !important;
	padding: 15px 28px !important;
	font-weight: 600 !important;
	box-shadow: none !important;
	letter-spacing: .02em;
	transition: background .2s, color .2s;
}
.shhc-btn:hover,
.shcta-btn-primary:hover,
.skolka-button a:hover,
.shnav-search button:hover,
.shnav-pill:hover {
	background: #000000 !important;
	color: #ffffff !important;
	border-color: #000000 !important;
	transform: none !important;
	filter: none !important;
}
/* strip decorative arrows baked into buttons */
.shhc-btn svg, .shcta-btn-primary svg, .skolka-button a svg { display: none !important; }
.shhc-btn::after, .shhc-btn::before { content: none !important; }
.shnav-pill { border-radius: 6px !important; padding: 12px 24px !important; font-size: 13.5px !important; }

/* =========================== BRANDS MARQUEE =========================== */
.shbr { width: 100%; }
.shbr-head { text-align: center; margin-bottom: 26px; }
.shbr-title {
	font-size: 13px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
	color: #999;
}
.shbr-viewport { position: relative; overflow: hidden; width: 100%; }

/* Optional soft edge fade */
.shbr--fade .shbr-viewport {
	-webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
	        mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.shbr-track {
	display: flex;
	align-items: center;
	gap: 72px;
	width: max-content;
	animation: shbrScroll var(--shbr-speed, 32s) linear infinite;
	animation-direction: var(--shbr-dir, normal);
}
/* Pause on hover */
.shbr--pause .shbr-viewport:hover .shbr-track { animation-play-state: paused; }

@keyframes shbrScroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-25%); } /* 4 sets in track, so -25% = exactly one set */
}

.shbr-item {
	flex: 0 0 auto;
	display: flex; flex-direction: column; align-items: center; gap: 10px;
	text-decoration: none;
}
.shbr-logo {
	display: flex; align-items: center; justify-content: center;
	transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.shbr-logo img {
	height: 44px; width: auto; display: block;
	object-fit: contain;
	transition: filter .4s ease, opacity .4s ease, transform .4s ease;
}
.shbr-logo-text {
	font-size: 20px; font-weight: 800; letter-spacing: .02em; color: #9a9a9a;
	transition: color .4s ease;
}

/* Grayscale until hover — the colourful reveal */
.shbr--gray .shbr-logo img { filter: grayscale(1); opacity: .55; }
.shbr-item:hover .shbr-logo img {
	filter: grayscale(0); opacity: 1;
	transform: translateY(-4px);
}
.shbr-item:hover .shbr-logo { transform: scale(1.06); }
.shbr--gray .shbr-item:hover .shbr-logo-text,
.shbr-item:hover .shbr-logo-text { color: var(--sh-accent, var(--color-main, #FCC820)); }

.shbr-name {
	font-size: 12px; font-weight: 600; color: #888;
	transition: color .3s ease;
}
.shbr-item:hover .shbr-name { color: #222; }

@media (prefers-reduced-motion: reduce) {
	.shbr-track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}

/* Mega panel empty-state hint */
.shmm-empty { padding: 40px; text-align: center; color: #999; font-size: 14px; }

/* =========================== PAGE HERO (interior banner) =========================== */
.shph {
	--sh-accent: var(--color-main, #FCC820);
	position: relative;
	width: 100%;
	/* leave room for the overlapping feature bar when present */
}
.shph--has-features { padding-bottom: 60px; }

.shph-banner {
	position: relative;
	overflow: hidden;
	min-height: 380px;
	display: flex;
	align-items: center;
	background: #1a1a1a;
	border-radius: 22px;
}
/* subtle radial warmth top-right like the reference */
.shph-banner::before {
	content: "";
	position: absolute; inset: 0; z-index: 0;
	background: radial-gradient(80% 120% at 92% 0%, rgba(252,200,32,.14) 0%, transparent 55%);
	pointer-events: none;
}

.shph-inner {
	position: relative; z-index: 1;
	width: 100%;
	max-width: 1240px; margin: 0 auto;
	display: grid;
	grid-template-columns: 1.1fr 1fr;
	align-items: center;
	gap: 40px;
	padding: 54px 60px;
}

.shph-text { max-width: 540px; }

.shph-eyebrow {
	display: inline-flex; align-items: center; gap: 12px;
	font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
	color: var(--sh-accent);
	margin-bottom: 20px;
}
.shph-eyebrow::before {
	content: ""; width: 34px; height: 2px; background: var(--sh-accent); border-radius: 2px;
}

.shph-heading {
	margin: 0 0 20px;
	font-size: clamp(28px, 3vw + 10px, 46px);
	font-weight: 800;
	line-height: 1.12;
	letter-spacing: 0;
	color: #fff;
	text-wrap: balance;
}

.shph-body {
	margin: 0;
	font-size: 16px; line-height: 1.75;
	color: rgba(255,255,255,.7);
	max-width: 44ch;
}

/* Right media with yellow accent shape behind */
.shph-media {
	position: relative;
	display: flex; align-items: center; justify-content: center;
	min-height: 100%;
	align-self: stretch;
}
.shph-accent-shape {
	position: absolute; z-index: 0;
	top: 50%; right: -8%;
	transform: translateY(-50%);
	width: 78%; aspect-ratio: 1 / 1;
	background: var(--sh-accent);
	border-radius: 42% 58% 55% 45% / 50% 46% 54% 50%;
	filter: none;
	opacity: .95;
}
.shph-img {
	position: relative; z-index: 1;
	max-width: 100%;
	max-height: 340px;
	width: auto; height: auto;
	object-fit: contain;
	filter: drop-shadow(0 26px 40px rgba(0,0,0,.45));
}

/* Overlapping feature bar */
.shph-features {
	position: relative;
	z-index: 3;
	margin: -60px 40px 0;
}
.shph-features-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	background: #fff;
	border: 1px solid #ececec;
	border-radius: 14px;
	box-shadow: 0 24px 60px -30px rgba(0,0,0,.28);
	overflow: hidden;
}
.shph-feature {
	display: flex; align-items: center; gap: 14px;
	padding: 22px 24px;
}
.shph-feature:not(:last-child) { border-right: 1px solid #f0f0f0; }
.shph-feature-icon {
	flex: 0 0 auto;
	width: 44px; height: 44px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
	background: #1a1a1a;
	color: var(--sh-accent);
}
.shph-feature-icon i { font-size: 18px; color: inherit; line-height: 1; }
.shph-feature-icon svg { width: 18px; height: 18px; fill: currentColor; }
/* Font Awesome safety net (same as feature bar) */
.shph-feature-icon i.fas, .shph-feature-icon i.fa-solid { font-family: "Font Awesome 6 Free","Font Awesome 5 Free","FontAwesome"; font-weight: 900; }
.shph-feature-icon i.far, .shph-feature-icon i.fa-regular { font-family: "Font Awesome 6 Free","Font Awesome 5 Free","FontAwesome"; font-weight: 400; }
.shph-feature-icon i.fab, .shph-feature-icon i.fa-brands { font-family: "Font Awesome 6 Brands","Font Awesome 5 Brands","FontAwesome"; font-weight: 400; }
.shph-feature-icon i { display: inline-block; font-style: normal; -webkit-font-smoothing: antialiased; }

.shph-feature-text { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.shph-feature-title { font-size: 13.5px; font-weight: 700; color: #1a1a1a; line-height: 1.3; }
.shph-feature-sub { font-size: 12.5px; color: #8a8a8a; line-height: 1.35; }

@media (max-width: 1024px) {
	.shph-inner { padding: 44px 36px; gap: 28px; }
	.shph-img { max-height: 260px; }
	.shph-features-grid { grid-template-columns: repeat(2, 1fr); }
	.shph-feature:nth-child(2n) { border-right: none; }
	.shph-feature:nth-child(-n+2) { border-bottom: 1px solid #f0f0f0; }
}
@media (max-width: 767px) {
	.shph-banner { border-radius: 16px; }
	.shph-inner { grid-template-columns: 1fr; padding: 34px 24px; }
	.shph-media { min-height: 200px; order: -1; }
	.shph-accent-shape { width: 62%; right: 6%; }
	.shph-img { max-height: 200px; }
	.shph--has-features { padding-bottom: 40px; }
	.shph-features { margin: -40px 16px 0; }
	.shph-features-grid { grid-template-columns: 1fr; }
	.shph-feature:nth-child(2n) { border-right: none; }
	.shph-feature:not(:last-child) { border-bottom: 1px solid #f0f0f0; border-right: none; }
}

/* =========================== SALE BANNER =========================== */
.shsb {
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	min-height: 420px;
	background: #1C1917;
	border-radius: 20px;
	overflow: hidden;
}
.shsb--no-image { grid-template-columns: 1fr; }
.shsb-content {
	display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
	padding: 56px 60px;
}
.shsb-badge {
	display: inline-block;
	padding: 6px 14px;
	background: #FCC820; color: #1A1A1A;
	border-radius: 100px;
	font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
	margin-bottom: 22px;
}
.shsb-heading {
	margin: 0 0 18px;
	font-size: clamp(28px, 3vw + 8px, 46px);
	font-weight: 800; line-height: 1.12; color: #fff;
	text-wrap: balance;
}
.shsb-text {
	margin: 0 0 30px;
	font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.72);
	max-width: 46ch;
}
.shsb-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.shsb-btn {
	display: inline-flex; align-items: center; justify-content: center;
	padding: 16px 34px;
	background: #fff; color: #111;
	font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
	text-decoration: none; border-radius: 6px;
	transition: background .2s ease, color .2s ease;
}
.shsb-btn:hover { background: #ededed; color: #000; }
.shsb-link2 {
	font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
	color: #fff; text-decoration: none; opacity: .85;
	transition: opacity .2s ease;
}
.shsb-link2:hover { opacity: 1; }
.shsb-media {
	background-size: cover; background-position: center;
	min-height: 100%;
}
@media (max-width: 900px) {
	.shsb { grid-template-columns: 1fr; }
	.shsb-media { min-height: 240px; order: -1; }
	.shsb-content { padding: 36px 26px; }
}

/* =========================== NEWSLETTER BANNER =========================== */
.shnl {
	background: #221D1E;
	border-radius: 20px;
	overflow: hidden;
}
.shnl-inner {
	display: flex; align-items: center; justify-content: space-between;
	gap: 40px; padding: 48px 60px;
	flex-wrap: wrap;
}
.shnl-copy { max-width: 560px; flex: 1 1 320px; }
.shnl-heading {
	margin: 0 0 12px;
	font-size: clamp(22px, 2vw + 8px, 34px);
	font-weight: 800; line-height: 1.2; color: #fff;
}
.shnl-text { margin: 0; font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.75); }
.shnl-form-wrap { flex: 0 1 520px; min-width: 300px; }
.shnl-form { display: flex; gap: 14px; }
.shnl-input {
	flex: 1 1 auto; min-width: 0;
	height: 56px; padding: 0 20px;
	border: none; border-radius: 8px;
	background: #fff; color: #111;
	font-size: 15px;
}
.shnl-input:focus { outline: 2px solid rgba(255,255,255,.4); }
.shnl-btn {
	flex: 0 0 auto;
	height: 56px; padding: 0 34px;
	border: none; border-radius: 8px; cursor: pointer;
	background: #111; color: #fff;
	font-size: 13px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
	transition: background .2s ease;
}
.shnl-btn:hover { background: #000; }
@media (max-width: 700px) {
	.shnl-inner { padding: 34px 24px; }
	.shnl-form { flex-direction: column; }
	.shnl-btn { width: 100%; }
}

/* Page hero: optional mobile hiding of images */
@media (max-width: 767px) {
	.shph--hide-media-m .shph-media { display: none !important; }
	.shph--hide-bg-m .shph-banner { background-image: none !important; }
	.shph--hide-bg-m .shph-banner::after { content: none !important; }
}
