:root {
	--nex-bg: #0c0c0c;
	--nex-panel: #151313;
	--nex-ink: #f7f3ec;
	--nex-muted: #b7bcc4;
	--nex-soft: #d7e2ea;
	--nex-paper: #fff;
	--nex-paper-ink: #0c0c0c;
	--nex-line: rgba(215, 226, 234, 0.18);
	--nex-deep-line: rgba(255, 255, 255, 0.09);
	--nex-accent: #b600a8;
	--nex-accent-2: #be4c00;
	--nex-max: 1340px;
	--nex-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
	background: var(--nex-bg);
	scroll-behavior: smooth;
}

body {
	min-width: 0;
	min-height: 100vh;
	overflow-x: hidden;
	background: var(--nex-bg);
	color: var(--nex-ink);
	font-family: "Kanit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
	font-size: 15px;
	line-height: 1.5;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

body.nav-open,
html.nav-open {
	overflow: hidden;
}

img,
svg {
	display: block;
	max-width: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover,
a:focus-visible {
	text-decoration: none;
}

button,
input {
	font: inherit;
}

input,
textarea,
select {
	color: var(--nex-ink);
}

:focus-visible {
	outline: 2px solid var(--nex-soft);
	outline-offset: 4px;
}

.screen-reader-text,
.skip-link:not(:focus) {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

.skip-link:focus {
	position: fixed;
	z-index: 1000;
	top: 12px;
	left: 12px;
	padding: 10px 14px;
	border-radius: 999px;
	background: var(--nex-ink);
	color: var(--nex-bg);
}

.gradient-heading,
.shop-hero-ghost {
	background: linear-gradient(180deg, #646973 0%, #bbccd7 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
}

.shop-kicker {
	color: var(--nex-soft);
	font-size: clamp(0.74rem, 1.15vw, 1rem);
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
}

.site-header {
	position: sticky;
	top: 0;
	z-index: 80;
	border-bottom: 1px solid var(--nex-deep-line);
	background: rgba(12, 12, 12, 0.82);
	backdrop-filter: blur(20px);
	transition: transform 260ms var(--nex-ease), box-shadow 260ms var(--nex-ease);
}

.site-header.is-condensed {
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
}

.site-header.is-hidden {
	transform: translateY(-100%);
}

.top-app-strip {
	position: relative;
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	min-height: 30px;
	padding: 0 18px;
	border-bottom: 1px solid var(--nex-deep-line);
	background: #090909;
	color: var(--nex-soft);
	font-size: 0.7rem;
	font-weight: 700;
	text-align: center;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.top-app-strip a {
	justify-self: center;
	opacity: 0.9;
}

.country-pill {
	width: 15px;
	height: 15px;
	border-radius: 50%;
	background:
		linear-gradient(90deg, transparent 43%, #fff 43% 56%, transparent 56%),
		linear-gradient(180deg, #273b7a 0 48%, #fff 48% 52%, #bd2334 52%);
	border: 1px solid rgba(255, 255, 255, 0.75);
}

.service-strip {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	min-height: 34px;
	border-bottom: 1px solid var(--nex-deep-line);
	color: var(--nex-muted);
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.service-strip a {
	display: grid;
	place-items: center;
	padding: 7px 12px;
	text-align: center;
}

.service-strip a + a {
	border-left: 1px solid var(--nex-deep-line);
}

.header-main {
	display: grid;
	grid-template-columns: minmax(220px, 360px) 1fr auto;
	align-items: center;
	gap: 24px;
	min-height: 70px;
	max-width: var(--nex-max);
	margin: 0 auto;
	padding: 10px 22px;
}

.mobile-menu-button {
	display: none;
	width: 42px;
	height: 42px;
	padding: 10px;
	border: 1px solid var(--nex-line);
	border-radius: 50%;
	background: transparent;
	color: #fff;
}

.mobile-menu-button span:not(.screen-reader-text) {
	display: block;
	height: 1px;
	margin: 5px 0;
	background: currentColor;
}

.header-search {
	display: grid;
	grid-template-columns: 1fr 38px;
	align-items: center;
	max-width: 360px;
	height: 40px;
	border: 1px solid var(--nex-line);
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.055);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.header-search input {
	width: 100%;
	min-width: 0;
	height: 100%;
	padding: 0 14px;
	border: 0;
	background: transparent;
	color: var(--nex-ink);
	font-size: 0.86rem;
	outline: none;
}

.header-search input::placeholder {
	color: rgba(215, 226, 234, 0.56);
}

.header-search button {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--nex-soft);
	cursor: pointer;
}

.header-search svg,
.utility-actions svg {
	width: 20px;
	height: 20px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.brand-mark {
	justify-self: center;
	color: var(--nex-ink);
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(1.8rem, 4vw, 3.3rem);
	font-weight: 400;
	line-height: 1;
	letter-spacing: -0.02em;
	text-transform: uppercase;
}

.brand-mark img {
	max-height: 40px;
	width: auto;
}

.utility-actions {
	display: grid;
	grid-auto-flow: column;
	align-items: center;
	gap: 14px;
	color: var(--nex-soft);
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.utility-actions > a:not(.checkout-button) {
	position: relative;
	display: grid;
	place-items: center;
	width: 42px;
	height: 42px;
	border: 1px solid var(--nex-line);
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.045);
	transition: transform 180ms var(--nex-ease), background-color 180ms var(--nex-ease);
}

.utility-actions > a:not(.checkout-button):hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.09);
}

.bag-count {
	position: absolute;
	top: 1px;
	right: 0;
	min-width: 17px;
	height: 17px;
	border-radius: 999px;
	background: #fff;
	color: #101010;
	font-size: 0.65rem;
	line-height: 17px;
	text-align: center;
}

.checkout-button,
.gradient-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 22px;
	border-radius: 999px;
	background: linear-gradient(123deg, #18011f 7%, #b600a8 37%, #7621b0 72%, #be4c00 100%);
	box-shadow: 0 4px 4px rgba(181, 1, 167, 0.25), 4px 4px 12px #7721b1 inset;
	color: #fff;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition: transform 180ms var(--nex-ease), filter 180ms var(--nex-ease);
}

.checkout-button:hover,
.gradient-pill:hover {
	transform: translateY(-2px);
	filter: brightness(1.08);
}

.outline-pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 22px;
	border: 1px solid var(--nex-line);
	border-radius: 999px;
	color: var(--nex-soft);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	transition: background-color 180ms var(--nex-ease), transform 180ms var(--nex-ease);
}

.outline-pill:hover {
	transform: translateY(-2px);
	background: rgba(255, 255, 255, 0.08);
}

.department-navigation {
	border-top: 1px solid var(--nex-deep-line);
}

.department-menu {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: clamp(16px, 3vw, 44px);
	min-height: 48px;
	max-width: var(--nex-max);
	margin: 0 auto;
	padding: 0 22px;
	list-style: none;
	color: var(--nex-muted);
	font-size: 0.76rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.16em;
}

.department-menu a {
	transition: color 180ms var(--nex-ease), opacity 180ms var(--nex-ease);
}

.department-menu a:hover,
.department-menu a:focus-visible {
	color: var(--nex-ink);
}

.department-menu li:last-child a {
	color: #f0a4d9;
}

.cinematic-storefront {
	overflow: clip;
	background: var(--nex-bg);
}

.shop-hero {
	position: relative;
	min-height: calc(100vh - 153px);
	overflow: hidden;
	padding: clamp(32px, 5vw, 70px) clamp(18px, 4vw, 56px);
	background:
		radial-gradient(circle at 50% 92%, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.05) 18%, rgba(255, 255, 255, 0) 43%),
		radial-gradient(circle at 76% 12%, rgba(182, 0, 168, 0.16) 0%, rgba(182, 0, 168, 0) 31%),
		linear-gradient(90deg, rgba(6, 5, 5, 0.92) 0%, rgba(18, 14, 15, 0.84) 48%, rgba(6, 5, 5, 0.92) 100%);
}

.shop-hero-grain {
	position: absolute;
	inset: 0;
	z-index: 5;
	pointer-events: none;
	opacity: 0.25;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.08'/%3E%3C/svg%3E");
	background-size: 200px 200px;
}

.shop-hero-eyebrow {
	position: relative;
	z-index: 20;
	color: var(--nex-soft);
	font-size: clamp(0.78rem, 1.3vw, 1rem);
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.shop-hero-ghost {
	position: absolute;
	z-index: 1;
	top: 11%;
	left: 50%;
	width: max-content;
	transform: translateX(-50%);
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(5.5rem, 21vw, 18rem);
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	white-space: nowrap;
	opacity: 0.95;
}

.shop-hero-stage {
	position: absolute;
	inset: 0;
	z-index: 10;
	pointer-events: none;
}

.shop-hero-model {
	position: absolute;
	left: 50%;
	bottom: 4%;
	width: min(42vw, 520px);
	height: auto;
	max-height: 84vh;
	object-fit: contain;
	transform: translate3d(-50%, 0, 0) scale(1);
	transform-origin: bottom center;
	opacity: 0;
	filter: drop-shadow(0 42px 58px rgba(0, 0, 0, 0.52));
	will-change: transform, opacity, filter;
	transition: transform 6200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 6200ms cubic-bezier(0.4, 0, 0.2, 1), filter 6200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-hero-model-link {
	display: block;
	pointer-events: auto;
	text-decoration: none;
}

.shop-hero-model-link .shop-hero-model-image {
	display: block;
	width: 100%;
	height: auto;
	max-height: 84vh;
	object-fit: contain;
	object-position: bottom center;
}

.shop-hero-model.is-center {
	z-index: 25;
	opacity: 1;
	transform: translate3d(-50%, 0, 0) scale(1.12);
}

.shop-hero-model.is-left {
	z-index: 12;
	opacity: 0.82;
	transform: translate3d(calc(-50% - 24vw), -8vh, 0) scale(0.34);
	filter: brightness(0.82) drop-shadow(0 20px 28px rgba(0, 0, 0, 0.4));
}

.shop-hero-model.is-right {
	z-index: 12;
	opacity: 0.82;
	transform: translate3d(calc(-50% + 24vw), -8vh, 0) scale(0.34);
	filter: brightness(0.82) drop-shadow(0 20px 28px rgba(0, 0, 0, 0.4));
}

.shop-hero-model.is-back {
	z-index: 6;
	opacity: 0.46;
	transform: translate3d(-50%, -8vh, 0) scale(0.25);
	filter: brightness(0.62) drop-shadow(0 18px 24px rgba(0, 0, 0, 0.4));
}

.shop-hero-copy {
	position: absolute;
	z-index: 30;
	left: clamp(18px, 7vw, 96px);
	bottom: clamp(30px, 9vh, 92px);
	max-width: min(360px, 86vw);
}

.shop-hero-copy p:not(.shop-kicker) {
	margin-top: 12px;
	color: rgba(215, 226, 234, 0.86);
	font-size: clamp(0.95rem, 1.4vw, 1.25rem);
	font-weight: 300;
	line-height: 1.6;
}

.shop-hero-actions {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	width: min(320px, 100%);
	gap: 12px;
	margin-top: 24px;
}

.shop-hero-actions .gradient-pill,
.shop-hero-actions .outline-pill {
	width: 100%;
	padding-inline: 12px;
}

.gigiwarm-split-hero-section {
	position: relative;
	overflow: hidden;
	background: #0c0c0c;
}

.gigiwarm-split-hero-section > .elementor-container,
.gigiwarm-split-hero-section .elementor-column,
.gigiwarm-split-hero-section .elementor-widget-wrap {
	position: static;
}

.gigiwarm-split-hero-section .elementor-widget-nex_gigiwarm_hero {
	position: relative;
	z-index: 1;
}

.gigiwarm-native-hero-eyebrow,
.gigiwarm-native-hero-title,
.gigiwarm-native-hero-brand,
.gigiwarm-native-hero-subtitle,
.gigiwarm-native-hero-primary,
.gigiwarm-native-hero-secondary {
	position: absolute;
	z-index: 40;
	width: auto;
	margin: 0;
}

.gigiwarm-native-hero-eyebrow {
	top: clamp(32px, 5vw, 70px);
	left: clamp(18px, 4vw, 56px);
}

.gigiwarm-native-hero-eyebrow .elementor-heading-title,
.gigiwarm-native-hero-brand .elementor-heading-title {
	color: var(--nex-soft);
	font-size: clamp(0.78rem, 1.3vw, 1rem);
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.gigiwarm-native-hero-title {
	z-index: 2;
	top: 11%;
	left: 0;
	right: 0;
	text-align: center;
	pointer-events: auto;
}

.gigiwarm-native-hero-title .elementor-heading-title {
	color: transparent;
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(5.5rem, 27vw, 22rem);
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(180deg, #646973 0%, #bbccd7 100%);
	-webkit-background-clip: text;
	background-clip: text;
	white-space: nowrap;
	opacity: 0.95;
}

.gigiwarm-native-hero-brand {
	left: clamp(18px, 7vw, 96px);
	bottom: clamp(162px, 23vh, 230px);
}

.gigiwarm-native-hero-subtitle {
	left: clamp(18px, 7vw, 96px);
	bottom: clamp(88px, 14vh, 150px);
	max-width: min(360px, 86vw);
	color: rgba(215, 226, 234, 0.86);
}

.gigiwarm-native-hero-subtitle .elementor-widget-container,
.gigiwarm-native-hero-subtitle p {
	color: inherit;
	font-size: clamp(0.95rem, 1.4vw, 1.25rem);
	font-weight: 300;
	line-height: 1.6;
}

.gigiwarm-native-hero-primary,
.gigiwarm-native-hero-secondary {
	bottom: clamp(30px, 9vh, 92px);
}

.gigiwarm-native-hero-primary {
	left: clamp(18px, 7vw, 96px);
}

.gigiwarm-native-hero-secondary {
	left: calc(clamp(18px, 7vw, 96px) + 148px);
}

.gigiwarm-native-hero-primary .elementor-button,
.gigiwarm-native-hero-secondary .elementor-button {
	min-height: 46px;
	padding: 0 22px;
	border-radius: 999px;
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gigiwarm-native-hero-primary .elementor-button {
	background: linear-gradient(123deg, #18011f 7%, #b600a8 37%, #7621b0 72%, #be4c00 100%);
	color: #fff;
	box-shadow: 0 0 0 2px #fff, inset 4px 4px 12px rgba(119, 33, 177, 0.82);
}

.gigiwarm-native-hero-secondary .elementor-button {
	border: 1px solid var(--nex-line);
	background: rgba(255, 255, 255, 0.06);
	color: var(--nex-soft);
}

.kinetic-marquee {
	overflow: hidden;
	border-top: 1px solid var(--nex-deep-line);
	border-bottom: 1px solid var(--nex-deep-line);
	background: #0a0a0a;
}

.kinetic-marquee .marquee-track {
	display: flex;
	width: max-content;
	padding: 20px 0;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	will-change: transform;
	animation: nex-marquee 52s linear infinite;
}

.marquee-set {
	display: flex;
	flex: 0 0 auto;
	gap: clamp(26px, 5vw, 72px);
	padding-right: clamp(26px, 5vw, 72px);
}

.kinetic-marquee span {
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(2.6rem, 9vw, 9rem);
	line-height: 0.9;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	color: transparent;
	-webkit-text-stroke: 1px rgba(215, 226, 234, 0.5);
	white-space: nowrap;
}

@keyframes nex-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-50%, 0, 0);
	}
}

.store-story {
	display: grid;
	grid-template-columns: 1fr minmax(260px, 520px);
	gap: clamp(32px, 8vw, 120px);
	max-width: var(--nex-max);
	margin: 0 auto;
	padding: clamp(70px, 12vw, 160px) clamp(18px, 4vw, 56px);
	align-items: end;
}

.gradient-heading {
	margin-top: 12px;
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(3.4rem, 11vw, 10rem);
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}

.store-story > p,
.section-heading > p:not(.shop-kicker) {
	color: rgba(215, 226, 234, 0.82);
	font-size: clamp(1.1rem, 2vw, 1.6rem);
	font-weight: 300;
	line-height: 1.55;
}

.image-marquee {
	display: grid;
	gap: 12px;
	overflow: hidden;
	padding: clamp(58px, 8vw, 110px) 0 clamp(20px, 4vw, 52px);
	background: #0c0c0c;
}

.image-marquee-row {
	display: flex;
	width: max-content;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	will-change: transform;
	animation: nex-image-marquee 78s linear infinite;
}

.image-marquee-set {
	display: flex;
	flex: 0 0 auto;
	gap: 12px;
	padding-right: 12px;
	contain: layout paint style;
}

.image-marquee-row-reverse {
	animation-name: nex-image-marquee-reverse;
	animation-duration: 84s;
}

.image-marquee figure {
	display: grid;
	place-items: end center;
	flex: 0 0 auto;
	width: clamp(230px, 30vw, 420px);
	height: clamp(150px, 19vw, 270px);
	overflow: hidden;
	border: 1px solid var(--nex-line);
	border-radius: 24px;
	background:
		radial-gradient(circle at 50% 95%, rgba(255, 255, 255, 0.24), transparent 48%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	contain: paint;
}

.image-marquee img {
	width: auto;
	height: 118%;
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 24px 24px rgba(0, 0, 0, 0.42));
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
}

.image-marquee-link {
	display: grid;
	place-items: end center;
	width: 100%;
	height: 100%;
}

@keyframes nex-image-marquee {
	from {
		transform: translate3d(0, 0, 0);
	}
	to {
		transform: translate3d(-50%, 0, 0);
	}
}

@keyframes nex-image-marquee-reverse {
	from {
		transform: translate3d(-50%, 0, 0);
	}
	to {
		transform: translate3d(0, 0, 0);
	}
}

.cinematic-about {
	position: relative;
	min-height: 100vh;
	overflow: hidden;
}

.cinematic-about > div:not(.about-decor),
.cinematic-about > p {
	position: relative;
	z-index: 2;
}

.about-decor {
	position: absolute;
	inset: 0;
	z-index: 1;
	pointer-events: none;
}

.about-decor img {
	position: absolute;
	width: clamp(90px, 14vw, 190px);
	opacity: 0.42;
	filter: drop-shadow(0 30px 38px rgba(0, 0, 0, 0.48));
}

.about-decor-1 {
	top: 6%;
	left: 2%;
	transform: rotate(-8deg);
}

.about-decor-2 {
	top: 8%;
	right: 4%;
	transform: rotate(7deg);
}

.about-decor-3 {
	bottom: 8%;
	left: 10%;
	transform: rotate(5deg);
}

.about-decor-4 {
	right: 9%;
	bottom: 6%;
	transform: rotate(-6deg);
}

.gigiwarm-split-story-section {
	position: relative;
	overflow: hidden;
	background: #0c0c0c;
	--gigiwarm-story-inset: max(
		clamp(18px, 4vw, 56px),
		calc((100vw - var(--nex-max)) / 2 + clamp(18px, 4vw, 56px))
	);
}

.gigiwarm-split-story-section > .elementor-container,
.gigiwarm-split-story-section .elementor-column,
.gigiwarm-split-story-section .elementor-widget-wrap {
	position: static;
}

.gigiwarm-split-story-section .elementor-widget-nex_gigiwarm_story {
	position: relative;
	z-index: 1;
}

.gigiwarm-native-story-kicker,
.gigiwarm-native-story-heading,
.gigiwarm-native-story-text {
	position: absolute;
	z-index: 3;
	margin: 0;
}

.gigiwarm-native-story-kicker {
	left: var(--gigiwarm-story-inset);
	top: clamp(90px, 16vh, 180px);
}

.gigiwarm-native-story-kicker .elementor-heading-title,
.gigiwarm-native-lookbook-kicker .elementor-heading-title,
.gigiwarm-native-products-kicker .elementor-heading-title {
	color: var(--nex-soft);
	font-size: clamp(0.78rem, 1.2vw, 0.96rem);
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
}

.gigiwarm-native-story-heading {
	left: var(--gigiwarm-story-inset);
	top: clamp(118px, 21vh, 230px);
	width: clamp(260px, calc(100vw - 752px), 588px);
}

.gigiwarm-native-story-heading .elementor-heading-title,
.gigiwarm-native-lookbook-heading .elementor-heading-title,
.gigiwarm-native-products-heading .elementor-heading-title {
	color: transparent;
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(3.4rem, 11vw, 10rem);
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	-webkit-text-fill-color: transparent;
	background: linear-gradient(180deg, #646973 0%, #bbccd7 100%);
	-webkit-background-clip: text;
	background-clip: text;
}

.gigiwarm-native-story-text {
	right: var(--gigiwarm-story-inset);
	bottom: clamp(86px, 14vh, 180px);
	max-width: min(520px, 86vw);
	color: rgba(215, 226, 234, 0.82);
}

.gigiwarm-native-story-text .elementor-widget-container,
.gigiwarm-native-story-text p {
	color: inherit;
	font-size: clamp(1.1rem, 2vw, 1.6rem);
	font-weight: 300;
	line-height: 1.55;
}

.services-panel {
	position: relative;
	z-index: 2;
	padding: clamp(76px, 12vw, 150px) clamp(18px, 4vw, 56px) clamp(96px, 14vw, 170px);
	border-radius: clamp(34px, 5vw, 70px) clamp(34px, 5vw, 70px) 0 0;
	background: #fff;
	color: #0c0c0c;
}

.services-panel .section-heading {
	margin-bottom: clamp(42px, 7vw, 92px);
	text-align: center;
}

.services-panel .shop-kicker {
	color: #6c556a;
}

.services-panel .section-heading h2 {
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(3.4rem, 12vw, 10rem);
	font-weight: 400;
	line-height: 0.9;
	letter-spacing: -0.03em;
	text-transform: uppercase;
}

.service-list {
	max-width: 1120px;
	margin: 0 auto;
	border-top: 1px solid rgba(12, 12, 12, 0.15);
}

.service-item {
	display: grid;
	grid-template-columns: minmax(100px, 0.35fr) minmax(0, 1fr);
	gap: clamp(22px, 5vw, 70px);
	align-items: center;
	padding: clamp(28px, 5vw, 56px) 0;
	border-bottom: 1px solid rgba(12, 12, 12, 0.15);
}

.service-item > span {
	color: #0c0c0c;
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(3.2rem, 10vw, 8.8rem);
	line-height: 0.86;
}

.service-item h3 {
	margin: 0 0 10px;
	font-size: clamp(1.1rem, 2.3vw, 2.1rem);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.service-item p {
	max-width: 720px;
	color: rgba(12, 12, 12, 0.62);
	font-size: clamp(0.92rem, 1.5vw, 1.2rem);
	font-weight: 300;
	line-height: 1.6;
}

.lookbook-stack {
	position: relative;
	z-index: 3;
	margin-top: -54px;
	padding: clamp(78px, 12vw, 160px) clamp(18px, 4vw, 56px);
	border-radius: clamp(34px, 5vw, 70px) clamp(34px, 5vw, 70px) 0 0;
	background: #0c0c0c;
}

.gigiwarm-split-lookbook-section {
	position: relative;
	margin-top: -54px;
	padding: clamp(78px, 12vw, 160px) clamp(18px, 4vw, 56px) 0;
	border-radius: clamp(34px, 5vw, 70px) clamp(34px, 5vw, 70px) 0 0;
	background: #0c0c0c;
}

.gigiwarm-split-lookbook-section .elementor-widget-wrap {
	display: block;
}

.gigiwarm-native-lookbook-kicker,
.gigiwarm-native-lookbook-heading,
.gigiwarm-native-lookbook-intro {
	max-width: var(--nex-max);
	margin-right: auto;
	margin-left: auto;
}

.gigiwarm-native-lookbook-heading {
	margin-top: 12px;
}

.gigiwarm-native-lookbook-intro {
	max-width: min(var(--nex-max), 740px);
	margin-top: 18px;
	margin-left: calc((100% - min(var(--nex-max), 100%)) / 2);
	color: rgba(215, 226, 234, 0.82);
}

.gigiwarm-native-lookbook-intro .elementor-widget-container,
.gigiwarm-native-lookbook-intro p {
	color: inherit;
	font-size: clamp(1.1rem, 2vw, 1.6rem);
	font-weight: 300;
	line-height: 1.55;
}

.gigiwarm-split-lookbook-section .lookbook-stack {
	margin-top: 0;
	padding: clamp(34px, 6vw, 76px) 0 clamp(78px, 12vw, 160px);
	border-radius: 0;
}

.lookbook-stack .section-heading {
	max-width: var(--nex-max);
}

.lookbook-cards {
	max-width: var(--nex-max);
	margin: 0 auto;
}

.lookbook-frame {
	position: relative;
	height: 85vh;
	min-height: 720px;
}

.lookbook-card {
	--lookbook-scale: 1;
	position: sticky;
	top: calc(clamp(88px, 10vw, 128px) + var(--lookbook-top-offset, 0px));
	display: flex;
	flex-direction: column;
	min-height: min(700px, calc(85vh - 64px));
	overflow: hidden;
	padding: clamp(16px, 3vw, 32px);
	border: 2px solid var(--nex-soft);
	border-radius: clamp(40px, 4vw, 60px);
	background: #0c0c0c;
	box-shadow: 0 38px 90px rgba(0, 0, 0, 0.45);
	transform: translate3d(0, 0, 0) scale(var(--lookbook-scale));
	transform-origin: top center;
	will-change: transform;
}

.lookbook-card-top {
	display: grid;
	grid-template-columns: minmax(82px, auto) minmax(110px, 0.45fr) minmax(180px, 1fr) auto;
	gap: clamp(14px, 2.4vw, 32px);
	align-items: center;
	min-height: clamp(88px, 10vw, 136px);
}

.lookbook-card-top > span {
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(3.2rem, 9vw, 8.5rem);
	line-height: 0.86;
	color: var(--nex-soft);
}

.lookbook-card-top p {
	color: rgba(215, 226, 234, 0.74);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.lookbook-card-top h3 {
	color: #fff;
	font-size: clamp(1.3rem, 3vw, 3.4rem);
	font-weight: 800;
	line-height: 0.95;
	text-transform: uppercase;
}

.lookbook-card-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.lookbook-media-grid {
	display: grid;
	grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
	grid-template-rows: clamp(130px, 16vw, 230px) clamp(160px, 22vw, 340px);
	gap: 14px;
	flex: 1;
	min-height: 0;
}

.lookbook-media-grid figure {
	display: grid;
	place-items: end center;
	overflow: hidden;
	border-radius: clamp(40px, 4vw, 60px);
	background:
		radial-gradient(circle at 50% 96%, rgba(255, 255, 255, 0.22), transparent 46%),
		linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
	min-height: 0;
}

.lookbook-media-grid img {
	width: auto;
	height: 112%;
	max-width: none;
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.46));
}

.lookbook-media-1 {
	grid-column: 1;
	grid-row: 1;
}

.lookbook-media-2 {
	grid-column: 1;
	grid-row: 2;
}

.lookbook-media-3 {
	grid-column: 2;
	grid-row: 1 / 3;
}

.lookbook-card .outline-pill {
	min-height: 46px;
	padding: 0 28px;
	border: 2px solid var(--nex-soft);
	color: var(--nex-soft);
	background: transparent;
	font-size: clamp(0.76rem, 1vw, 0.94rem);
	letter-spacing: 0.14em;
	white-space: nowrap;
}

.lookbook-card .outline-pill:hover {
	background: rgba(215, 226, 234, 0.1);
}

.collection-showcase {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	max-width: var(--nex-max);
	margin: 0 auto;
	padding: 0 clamp(18px, 4vw, 56px) clamp(78px, 10vw, 140px);
}

.collection-card {
	position: relative;
	min-height: clamp(470px, 54vw, 650px);
	overflow: hidden;
	border: 1px solid var(--nex-line);
	border-radius: clamp(28px, 4vw, 56px);
	background:
		radial-gradient(circle at 50% 92%, rgba(255, 255, 255, 0.18), transparent 36%),
		linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: transform 360ms var(--nex-ease), border-color 360ms var(--nex-ease);
}

.collection-card:hover {
	transform: translateY(-8px);
	border-color: rgba(215, 226, 234, 0.42);
}

.collection-number {
	position: absolute;
	z-index: 3;
	top: 24px;
	left: 24px;
	color: rgba(215, 226, 234, 0.42);
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(2.8rem, 7vw, 7rem);
	line-height: 0.9;
}

.collection-card img {
	position: absolute;
	z-index: 2;
	left: 50%;
	bottom: 18%;
	width: min(88%, 420px);
	max-height: 76%;
	object-fit: contain;
	transform: translateX(-50%);
	filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.5));
	transition: transform 460ms var(--nex-ease);
}

.collection-card:hover img {
	transform: translateX(-50%) scale(1.04);
}

.collection-content {
	position: absolute;
	z-index: 4;
	left: 24px;
	right: 24px;
	bottom: 24px;
	display: grid;
	gap: 8px;
}

.collection-content strong {
	color: #fff;
	font-size: clamp(1.3rem, 2.2vw, 2.4rem);
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.collection-content em {
	color: rgba(215, 226, 234, 0.75);
	font-style: normal;
	font-weight: 300;
	line-height: 1.45;
}

.commerce-essentials {
	padding: clamp(72px, 10vw, 140px) clamp(18px, 4vw, 56px);
	border-top: 1px solid var(--nex-deep-line);
	background:
		radial-gradient(circle at 18% 10%, rgba(182, 0, 168, 0.18), transparent 28%),
		radial-gradient(circle at 86% 70%, rgba(190, 76, 0, 0.14), transparent 30%),
		#0c0c0c;
}

.commerce-essentials .section-heading {
	margin-bottom: clamp(32px, 5vw, 64px);
}

.commerce-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	max-width: var(--nex-max);
	margin: 0 auto;
}

.commerce-card {
	position: relative;
	display: grid;
	align-content: end;
	min-height: clamp(250px, 28vw, 360px);
	overflow: hidden;
	padding: clamp(18px, 2.6vw, 32px);
	border: 1px solid var(--nex-line);
	border-radius: clamp(24px, 3vw, 42px);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025)),
		#111;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
	transition: transform 280ms var(--nex-ease), border-color 280ms var(--nex-ease), background-color 280ms var(--nex-ease);
}

.commerce-card::before {
	content: "";
	position: absolute;
	inset: 0;
	background: radial-gradient(circle at 50% 0%, rgba(215, 226, 234, 0.13), transparent 44%);
	pointer-events: none;
}

.commerce-card:hover {
	transform: translateY(-6px);
	border-color: rgba(215, 226, 234, 0.48);
	background-color: #151515;
}

.commerce-card-static:hover {
	transform: none;
	border-color: var(--nex-line);
}

.commerce-card span,
.commerce-card strong,
.commerce-card p {
	position: relative;
	z-index: 1;
}

.commerce-card span {
	position: absolute;
	top: 22px;
	left: 22px;
	color: rgba(215, 226, 234, 0.38);
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(2.4rem, 5vw, 5rem);
	line-height: 0.9;
}

.commerce-card strong {
	display: block;
	max-width: 260px;
	color: #fff;
	font-size: clamp(1.25rem, 2vw, 2rem);
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.commerce-card p {
	margin-top: 12px;
	color: rgba(215, 226, 234, 0.72);
	font-size: 0.96rem;
	font-weight: 300;
	line-height: 1.55;
}

.product-edit {
	padding: clamp(72px, 12vw, 160px) clamp(18px, 4vw, 56px);
	background: #fff;
	color: #0c0c0c;
	border-radius: clamp(34px, 5vw, 70px) clamp(34px, 5vw, 70px) 0 0;
}

.gigiwarm-split-products-section {
	padding: clamp(72px, 12vw, 160px) clamp(18px, 4vw, 56px) 0;
	border-radius: clamp(34px, 5vw, 70px) clamp(34px, 5vw, 70px) 0 0;
	background: #fff;
	color: #0c0c0c;
}

.gigiwarm-split-products-section .elementor-widget-wrap {
	display: block;
}

.gigiwarm-native-products-kicker,
.gigiwarm-native-products-heading,
.gigiwarm-native-products-text {
	max-width: var(--nex-max);
	margin-right: auto;
	margin-left: auto;
}

.gigiwarm-native-products-kicker .elementor-heading-title {
	color: #6c556a;
}

.gigiwarm-native-products-heading {
	margin-top: 12px;
}

.gigiwarm-native-products-heading .elementor-heading-title {
	background: none;
	color: #0c0c0c;
	-webkit-text-fill-color: currentColor;
}

.gigiwarm-native-products-text {
	max-width: min(var(--nex-max), 740px);
	margin-top: 18px;
	margin-left: calc((100% - min(var(--nex-max), 100%)) / 2);
	color: rgba(12, 12, 12, 0.64);
}

.gigiwarm-native-products-text .elementor-widget-container,
.gigiwarm-native-products-text p {
	color: inherit;
	font-size: clamp(1rem, 1.8vw, 1.25rem);
	font-weight: 300;
	line-height: 1.55;
}

.gigiwarm-split-products-section .product-edit {
	padding: clamp(34px, 6vw, 72px) 0 clamp(72px, 12vw, 160px);
	border-radius: 0;
}

.product-edit .shop-kicker {
	color: #6c556a;
}

.product-edit .gradient-heading {
	background: none;
	color: #0c0c0c;
	-webkit-text-fill-color: currentColor;
}

.section-heading {
	max-width: var(--nex-max);
	margin: 0 auto clamp(42px, 7vw, 90px);
}

.section-heading > p:not(.shop-kicker) {
	max-width: 740px;
	margin-top: 18px;
	color: rgba(12, 12, 12, 0.64);
}

.cinematic-products,
.woocommerce ul.products {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 18px;
	max-width: var(--nex-max);
	margin: 0 auto;
}

.cinematic-product-card,
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
	float: none;
	width: auto;
	margin: 0;
	padding: 16px;
	border: 1px solid rgba(12, 12, 12, 0.12);
	border-radius: 28px;
	background: #f7f4ef;
	text-align: left;
	transition: transform 260ms var(--nex-ease), box-shadow 260ms var(--nex-ease);
}

.cinematic-product-card:hover,
.woocommerce ul.products li.product:hover {
	transform: translateY(-6px);
	box-shadow: 0 22px 44px rgba(12, 12, 12, 0.12);
}

.cinematic-product-card img,
.woocommerce ul.products li.product a img {
	width: 100%;
	margin: 0 0 16px;
	aspect-ratio: 3 / 4;
	border-radius: 22px;
	object-fit: cover;
	background: #ece7dc;
}

.cinematic-product-card span,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
	display: block;
	padding: 0;
	color: #0c0c0c;
	font-size: 1rem;
	font-weight: 700;
	line-height: 1.2;
	text-transform: uppercase;
}

.cinematic-product-card strong,
.woocommerce ul.products li.product .price {
	display: block;
	margin-top: 8px;
	color: rgba(12, 12, 12, 0.62);
	font-size: 0.95rem;
	font-weight: 500;
}

.woocommerce ul.products li.product .button,
.woocommerce div.product form.cart .button,
.woocommerce a.button,
.woocommerce button.button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	margin-top: 14px;
	padding: 0 20px;
	border: 0;
	border-radius: 999px;
	background: #0c0c0c;
	color: #fff;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.empty-product-state {
	max-width: var(--nex-max);
	margin: 0 auto;
	padding: clamp(34px, 5vw, 70px);
	border: 1px solid rgba(12, 12, 12, 0.14);
	border-radius: 34px;
	background: #f7f4ef;
}

.empty-product-state h3 {
	margin-bottom: 10px;
	font-size: clamp(1.4rem, 3vw, 3rem);
	text-transform: uppercase;
}

.site-footer {
	border-top: 1px solid var(--nex-deep-line);
	background: #090909;
	color: var(--nex-muted);
}

.footer-inner {
	max-width: var(--nex-max);
	margin: 0 auto;
	padding: 42px clamp(18px, 4vw, 56px) 50px;
}

.footer-social {
	display: grid;
	grid-template-columns: 1fr auto;
	align-items: center;
	padding-bottom: 28px;
	border-bottom: 1px solid var(--nex-deep-line);
}

.footer-social h2,
.footer-columns h2 {
	margin: 0 0 14px;
	color: var(--nex-ink);
	font-size: 0.9rem;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.social-links {
	display: flex;
	gap: 10px;
}

.social-links a {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	border: 1px solid var(--nex-line);
	border-radius: 50%;
	color: var(--nex-soft);
	font-size: 0.72rem;
	font-weight: 800;
}

.footer-columns {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 28px;
	padding-top: 28px;
}

.footer-columns section,
.footer-menu {
	display: grid;
	align-content: start;
	gap: 10px;
	list-style: none;
}

.footer-columns a {
	color: var(--nex-muted);
	font-size: 0.92rem;
	font-weight: 300;
}

.footer-columns a:hover {
	color: var(--nex-ink);
}

.footer-fineprint {
	max-width: 760px;
	margin: 34px 0 0;
	color: rgba(215, 226, 234, 0.58);
	font-size: 0.86rem;
	font-weight: 300;
}

.content-layout,
.shop-layout {
	max-width: var(--nex-max);
	margin: 0 auto;
	padding: 54px var(--nex-content-padding, 24px) 90px;
}

.elementor-page-main {
	max-width: none;
	margin: 0;
	padding: 0;
}

.elementor-page-main .gigiwarm-elementor-section,
.elementor-widget-nex_gigiwarm_hero,
.elementor-widget-nex_gigiwarm_text_marquee,
.elementor-widget-nex_gigiwarm_image_marquee,
.elementor-widget-nex_gigiwarm_story,
.elementor-widget-nex_gigiwarm_services,
.elementor-widget-nex_gigiwarm_lookbook,
.elementor-widget-nex_gigiwarm_collections,
.elementor-widget-nex_gigiwarm_commerce,
.elementor-widget-nex_gigiwarm_products {
	width: 100%;
}

.elementor-page-main .elementor-widget-container {
	overflow: visible;
}

.elementor-page-main .gigiwarm-elementor-section > .elementor-container {
	max-width: none;
}

.elementor-canvas-template {
	background: var(--nex-bg);
}

.elementor-page-content,
.elementor-page-content .entry-content {
	margin: 0;
	padding: 0;
}

.page-layout {
	max-width: 980px;
}

.nex-layout-full-width .content-layout,
.nex-layout-full-width .shop-layout {
	max-width: none;
}

.nex-layout-canvas .content-layout,
.nex-layout-canvas .shop-layout {
	max-width: none;
	padding: 0;
}

.page-header h1 {
	margin: 0 0 26px;
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(3rem, 9vw, 8rem);
	font-weight: 400;
	line-height: 0.92;
	text-transform: uppercase;
}

.entry-content {
	color: rgba(247, 243, 236, 0.82);
	font-size: 1.05rem;
	font-weight: 300;
}

.entry-content > * + * {
	margin-top: 1.2em;
}

.shop-layout {
	display: grid;
	grid-template-columns: 250px minmax(0, 1fr);
	gap: 34px;
}

.shop-sidebar {
	padding-right: 24px;
	border-right: 1px solid var(--nex-deep-line);
}

.widget {
	margin-bottom: 28px;
	color: var(--nex-muted);
}

.widget-title {
	margin-bottom: 12px;
	color: var(--nex-ink);
	font-size: 0.95rem;
	text-transform: uppercase;
	letter-spacing: 0.12em;
}

.woocommerce .woocommerce-breadcrumb,
.woocommerce-result-count,
.woocommerce-ordering {
	color: var(--nex-muted);
}

.woocommerce div.product {
	color: var(--nex-ink);
}

.woocommerce div.product .product_title {
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(2.4rem, 6vw, 6rem);
	font-weight: 400;
	line-height: 0.95;
	text-transform: uppercase;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
	color: var(--nex-soft);
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce div.product .summary {
	color: rgba(247, 243, 236, 0.82);
}

.reveal-on-scroll {
	opacity: 0;
	transform: translate3d(0, 28px, 0);
	transition: opacity 700ms var(--nex-ease), transform 700ms var(--nex-ease);
}

.reveal-on-scroll.is-visible {
	opacity: 1;
	transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		transition-duration: 0.01ms !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/*
 * Elementor 4 applies a relative position to each widget instance. The
 * modular starter deliberately layers these widgets over their section and
 * card containers, so restore that positioning with a more specific scope.
 */
.elementor .gigiwarm-split-hero-section .elementor-widget.gigiwarm-native-hero-eyebrow,
.elementor .gigiwarm-split-hero-section .elementor-widget.gigiwarm-native-hero-title,
.elementor .gigiwarm-split-hero-section .elementor-widget.gigiwarm-native-hero-brand,
.elementor .gigiwarm-split-hero-section .elementor-widget.gigiwarm-native-hero-subtitle,
.elementor .gigiwarm-split-hero-section .elementor-widget.gigiwarm-native-hero-primary,
.elementor .gigiwarm-split-hero-section .elementor-widget.gigiwarm-native-hero-secondary,
.elementor .gigiwarm-split-story-section .elementor-widget.gigiwarm-native-story-kicker,
.elementor .gigiwarm-split-story-section .elementor-widget.gigiwarm-native-story-heading,
.elementor .gigiwarm-split-story-section .elementor-widget.gigiwarm-native-story-text,
.elementor .gigiwarm-modular-header .elementor-widget.gigiwarm-native-header-promo,
.elementor .gigiwarm-modular-header .elementor-widget.gigiwarm-native-header-service,
.elementor .gigiwarm-modular-header .elementor-widget.gigiwarm-native-header-brand,
.elementor .gigiwarm-modular-header .elementor-widget.gigiwarm-native-header-checkout,
.elementor .gigiwarm-lookbook-card .elementor-widget.gigiwarm-native-lookbook-number,
.elementor .gigiwarm-lookbook-card .elementor-widget.gigiwarm-native-lookbook-category,
.elementor .gigiwarm-lookbook-card .elementor-widget.gigiwarm-native-lookbook-title,
.elementor .gigiwarm-lookbook-card .elementor-widget.gigiwarm-native-lookbook-button,
.elementor .gigiwarm-lookbook-card .elementor-widget.gigiwarm-native-lookbook-text,
.elementor .gigiwarm-collection-card .elementor-widget.gigiwarm-native-collection-number,
.elementor .gigiwarm-collection-card .elementor-widget.gigiwarm-native-collection-image,
.elementor .gigiwarm-collection-card .elementor-widget.gigiwarm-native-collection-title,
.elementor .gigiwarm-collection-card .elementor-widget.gigiwarm-native-collection-text,
.elementor .gigiwarm-commerce-card .elementor-widget.gigiwarm-native-commerce-number {
	position: absolute;
}

.elementor .gigiwarm-split-story-section .elementor-widget.gigiwarm-native-story-heading {
	width: clamp(260px, calc(100vw - 752px), 588px);
}

@media (max-width: 980px) {
	.elementor .gigiwarm-split-story-section .elementor-widget.gigiwarm-native-story-kicker,
	.elementor .gigiwarm-split-story-section .elementor-widget.gigiwarm-native-story-heading,
	.elementor .gigiwarm-split-story-section .elementor-widget.gigiwarm-native-story-text,
	.elementor .gigiwarm-lookbook-card .elementor-widget.gigiwarm-native-lookbook-number,
	.elementor .gigiwarm-lookbook-card .elementor-widget.gigiwarm-native-lookbook-category,
	.elementor .gigiwarm-lookbook-card .elementor-widget.gigiwarm-native-lookbook-title,
	.elementor .gigiwarm-lookbook-card .elementor-widget.gigiwarm-native-lookbook-button {
		position: relative;
	}

	.elementor .gigiwarm-split-story-section .elementor-widget.gigiwarm-native-story-heading {
		width: auto;
	}
}

@media (max-width: 980px) {
	.service-strip {
		display: none;
	}

	.header-main {
		grid-template-columns: 46px 1fr auto;
		gap: 12px;
		padding: 10px 14px;
	}

	.mobile-menu-button {
		display: block;
	}

	.header-search {
		grid-column: 1 / -1;
		grid-row: 2;
		max-width: none;
	}

	.brand-mark {
		justify-self: start;
		font-size: 2rem;
	}

	.utility-actions {
		gap: 8px;
	}

	.utility-actions > a:not(.checkout-button) {
		width: 38px;
		height: 38px;
	}

	.checkout-button {
		display: none;
	}

	.department-navigation {
		position: fixed;
		z-index: 70;
		inset: 0;
		top: 111px;
		display: none;
		padding: 22px;
		background: rgba(12, 12, 12, 0.98);
	}

	.department-navigation.is-open {
		display: block;
	}

	.department-menu {
		display: grid;
		justify-content: stretch;
		gap: 0;
		min-height: 0;
		padding: 0;
		font-size: 1.25rem;
	}

	.department-menu li {
		border-bottom: 1px solid var(--nex-deep-line);
	}

	.department-menu a {
		display: block;
		padding: 16px 4px;
	}

	.shop-hero {
		min-height: calc(100vh - 111px);
	}

	.shop-hero-ghost {
		top: 12%;
		font-size: clamp(5.4rem, 28vw, 10rem);
	}

	.shop-hero-model {
		width: min(82vw, 430px);
		bottom: 25%;
	}

	.shop-hero-model.is-center {
		transform: translate3d(-50%, 0, 0) scale(1.02);
	}

	.shop-hero-model.is-left {
		transform: translate3d(calc(-50% - 31vw), -8vh, 0) scale(0.28);
	}

	.shop-hero-model.is-right {
		transform: translate3d(calc(-50% + 31vw), -8vh, 0) scale(0.28);
	}

	.shop-hero-copy {
		left: 18px;
		right: 18px;
		bottom: 26px;
	}

	.gigiwarm-native-hero-title {
		top: 12%;
	}

	.gigiwarm-native-hero-title .elementor-heading-title {
		font-size: clamp(5.4rem, 28vw, 10rem);
	}

	.gigiwarm-native-hero-brand {
		left: 18px;
		bottom: 170px;
	}

	.gigiwarm-native-hero-subtitle {
		left: 18px;
		right: 18px;
		bottom: 86px;
		max-width: none;
	}

	.gigiwarm-native-hero-primary,
	.gigiwarm-native-hero-secondary {
		bottom: 26px;
	}

	.gigiwarm-native-hero-primary {
		left: 18px;
	}

	.gigiwarm-native-hero-secondary {
		left: 170px;
	}

	.store-story {
		grid-template-columns: 1fr;
	}

	.cinematic-about {
		min-height: auto;
	}

	.gigiwarm-native-story-kicker,
	.gigiwarm-native-story-heading,
	.gigiwarm-native-story-text {
		position: relative;
		left: auto;
		right: auto;
		top: auto;
		bottom: auto;
		max-width: none;
		margin-right: 18px;
		margin-left: 18px;
	}

	.gigiwarm-native-story-heading {
		width: auto;
	}

	.gigiwarm-native-story-kicker {
		margin-top: -42px;
	}

	.gigiwarm-native-story-text {
		margin-top: 18px;
		margin-bottom: 58px;
	}

	.about-decor img {
		width: clamp(72px, 20vw, 130px);
		opacity: 0.26;
	}

	.service-item {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.lookbook-frame {
		height: auto;
		min-height: 0;
		margin-bottom: 24px;
	}

	.lookbook-card {
		position: relative;
		top: auto;
		min-height: 0;
		transform: none !important;
	}

	.lookbook-card-top {
		grid-template-columns: 1fr;
		gap: 12px;
	}

	.lookbook-card-top .outline-pill {
		width: max-content;
	}

	.lookbook-media-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(3, minmax(240px, 1fr));
		min-height: 0;
	}

	.lookbook-card-top {
		min-height: 0;
	}

	.lookbook-media-2,
	.lookbook-media-3 {
		grid-column: auto;
		grid-row: auto;
	}

	.collection-showcase,
	.commerce-grid,
	.cinematic-products,
	.woocommerce ul.products,
	.footer-columns {
		grid-template-columns: 1fr;
	}

	.collection-card {
		min-height: 520px;
	}

	.shop-layout {
		grid-template-columns: 1fr;
	}

	.shop-sidebar {
		border-right: 0;
		border-bottom: 1px solid var(--nex-deep-line);
		padding-right: 0;
		padding-bottom: 24px;
	}
}

@media (max-width: 620px) {
	.top-app-strip {
		font-size: 0.62rem;
		letter-spacing: 0.1em;
	}

	.utility-actions > a:not(.bag-link):not(.checkout-button) {
		display: none;
	}

	.shop-hero-actions {
		display: grid;
		grid-template-columns: 1fr;
	}

	.gigiwarm-native-hero-primary,
	.gigiwarm-native-hero-secondary {
		left: 18px;
		right: 18px;
		width: auto;
	}

	.gigiwarm-native-hero-primary {
		bottom: 78px;
	}

	.gigiwarm-native-hero-secondary {
		bottom: 24px;
	}

	.gigiwarm-native-hero-primary .elementor-button,
	.gigiwarm-native-hero-secondary .elementor-button {
		width: 100%;
	}

	.gradient-pill,
	.outline-pill {
		width: 100%;
	}

	.collection-card {
		min-height: 480px;
	}

	.commerce-card {
		min-height: 230px;
	}

	.image-marquee figure {
		width: 220px;
		height: 150px;
		border-radius: 18px;
	}

	.lookbook-media-grid {
		grid-template-rows: repeat(3, 250px);
	}

	.footer-social {
		grid-template-columns: 1fr;
		gap: 16px;
	}
}

/* Native Elementor blocks used by the modular starter templates. */
.gigiwarm-modular-header {
	position: relative;
	z-index: 80;
}

.gigiwarm-modular-header .gigiwarm-native-header-promo,
.gigiwarm-modular-header .gigiwarm-native-header-service,
.gigiwarm-modular-header .gigiwarm-native-header-brand,
.gigiwarm-modular-header .gigiwarm-native-header-checkout {
	position: absolute;
	z-index: 3;
	margin: 0;
}

.gigiwarm-native-header-promo {
	top: 3px;
	left: 50%;
	transform: translateX(-50%);
}

.gigiwarm-native-header-promo .elementor-button,
.gigiwarm-native-header-service .elementor-button {
	min-height: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	font: inherit;
	letter-spacing: inherit;
	text-transform: inherit;
}

.gigiwarm-native-header-promo .elementor-button {
	color: #fff;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.12em;
}

.gigiwarm-native-header-service {
	top: 31px;
}

.gigiwarm-native-header-service .elementor-button {
	color: var(--nex-muted);
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.gigiwarm-native-header-service-1 { left: 12%; }
.gigiwarm-native-header-service-2 { left: 34%; }
.gigiwarm-native-header-service-3 { right: 34%; }
.gigiwarm-native-header-service-4 { right: 12%; }

.gigiwarm-native-header-brand {
	top: 53px;
	left: 50%;
	transform: translateX(-50%);
}

.gigiwarm-native-header-brand .elementor-heading-title {
	color: var(--nex-ink);
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(1.8rem, 3vw, 3.2rem);
	font-weight: 400;
	letter-spacing: 0.04em;
	line-height: 1;
}

.gigiwarm-native-header-checkout {
	top: 65px;
	right: clamp(14px, 3vw, 36px);
}

.gigiwarm-native-header-checkout .elementor-button {
	min-height: 34px;
	padding: 0 14px;
	border-radius: 999px;
	background: #f7f3ec;
	color: #0c0c0c;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gigiwarm-menu-empty {
	margin: 0;
	padding: 14px 18px;
	color: var(--nex-muted);
	font-size: 0.82rem;
	text-align: center;
}

.gigiwarm-modular-services {
	padding: clamp(72px, 10vw, 140px) clamp(18px, 4vw, 56px);
	border-top: 1px solid var(--nex-deep-line);
	background: #fff;
	color: #0c0c0c;
}

.gigiwarm-modular-services > .elementor-container > .elementor-row > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap,
.gigiwarm-modular-services > .elementor-container > .elementor-column > .elementor-widget-wrap {
	display: grid;
	grid-template-columns: minmax(92px, 0.28fr) minmax(0, 1fr);
	column-gap: clamp(18px, 4vw, 62px);
	row-gap: 0;
	max-width: var(--nex-max);
	margin: 0 auto;
}

.gigiwarm-native-services-kicker,
.gigiwarm-native-services-heading {
	grid-column: 1 / -1;
}

.gigiwarm-native-services-kicker {
	margin-bottom: 12px;
	color: #6c556a;
	font-size: clamp(0.78rem, 1.2vw, 0.96rem);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gigiwarm-native-services-heading {
	margin-bottom: clamp(34px, 6vw, 78px);
}

.gigiwarm-native-services-heading .elementor-heading-title {
	color: #0c0c0c;
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(3.5rem, 10vw, 9rem);
	font-weight: 400;
	line-height: 0.9;
	text-transform: uppercase;
}

.gigiwarm-native-service-number {
	grid-column: 1;
	grid-row: span 2;
	align-self: start;
	padding-top: clamp(24px, 3vw, 42px);
	border-top: 1px solid rgba(12, 12, 12, 0.15);
	color: rgba(12, 12, 12, 0.56);
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(3rem, 8vw, 7.2rem);
	line-height: 0.82;
}

.gigiwarm-native-service-name,
.gigiwarm-native-service-text {
	grid-column: 2;
	border-top: 1px solid rgba(12, 12, 12, 0.15);
}

.gigiwarm-native-service-name {
	padding-top: clamp(24px, 3vw, 42px);
}

.gigiwarm-native-service-name .elementor-heading-title {
	color: #0c0c0c;
	font-size: clamp(1.2rem, 2.4vw, 2.3rem);
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
}

.gigiwarm-native-service-text {
	padding: 12px 0 clamp(24px, 3vw, 42px);
	border-top: 0;
	color: rgba(12, 12, 12, 0.64);
	font-size: clamp(0.9rem, 1.5vw, 1.16rem);
	font-weight: 300;
	line-height: 1.6;
}

.gigiwarm-modular-lookbook > .elementor-container > .elementor-row > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap,
.gigiwarm-modular-lookbook > .elementor-container > .elementor-column > .elementor-widget-wrap {
	display: block;
}

.gigiwarm-lookbook-frame {
	position: relative;
	height: 85vh;
	min-height: 720px;
	max-width: var(--nex-max);
	margin: 0 auto;
}

.gigiwarm-lookbook-card {
	--lookbook-scale: 1;
	position: sticky;
	top: clamp(88px, 10vw, 128px);
	min-height: min(700px, calc(85vh - 64px));
	overflow: hidden;
	padding: clamp(16px, 3vw, 32px);
	border: 2px solid var(--nex-soft);
	border-radius: clamp(40px, 4vw, 60px);
	background: #0c0c0c;
	box-shadow: 0 38px 90px rgba(0, 0, 0, 0.45);
	transform: translate3d(0, 0, 0) scale(var(--lookbook-scale));
	transform-origin: top center;
	will-change: transform;
}

.gigiwarm-lookbook-card .elementor-widget-wrap {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
	grid-template-rows: clamp(130px, 16vw, 230px) clamp(160px, 22vw, 340px);
	gap: 14px;
	min-height: min(630px, calc(85vh - 128px));
	padding-top: clamp(96px, 12vw, 136px);
}

.gigiwarm-native-lookbook-number,
.gigiwarm-native-lookbook-category,
.gigiwarm-native-lookbook-title,
.gigiwarm-native-lookbook-button {
	position: absolute;
	z-index: 2;
	top: 0;
}

.gigiwarm-native-lookbook-number {
	left: 0;
	color: var(--nex-soft);
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(3.2rem, 9vw, 8.5rem);
	line-height: 0.86;
}

.gigiwarm-native-lookbook-category {
	left: min(22%, 220px);
	padding-top: 10px;
	color: rgba(215, 226, 234, 0.74);
	font-size: clamp(0.76rem, 1vw, 0.94rem);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gigiwarm-native-lookbook-title {
	left: min(42%, 430px);
	max-width: 38%;
}

.gigiwarm-native-lookbook-title .elementor-heading-title {
	color: #fff;
	font-size: clamp(1.3rem, 3vw, 3.4rem);
	font-weight: 800;
	line-height: 0.95;
	text-transform: uppercase;
}

.gigiwarm-native-lookbook-button {
	right: 0;
}

.gigiwarm-native-lookbook-button .elementor-button {
	min-height: 46px;
	padding: 0 28px;
	border: 2px solid var(--nex-soft);
	border-radius: 999px;
	background: transparent;
	color: var(--nex-soft);
	font-size: clamp(0.76rem, 1vw, 0.94rem);
	letter-spacing: 0.14em;
	white-space: nowrap;
}

.gigiwarm-native-lookbook-text {
	position: absolute;
	width: 1px;
	height: 1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}

.gigiwarm-native-lookbook-image {
	display: grid;
	place-items: end center;
	overflow: hidden;
	border-radius: clamp(40px, 4vw, 60px);
	background: radial-gradient(circle at 50% 96%, rgba(255, 255, 255, 0.22), transparent 46%), linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035));
}

.gigiwarm-native-lookbook-image img {
	width: auto;
	height: 112%;
	max-width: none;
	object-fit: contain;
	object-position: bottom center;
	filter: drop-shadow(0 30px 32px rgba(0, 0, 0, 0.46));
}

.gigiwarm-native-lookbook-image-1 { grid-column: 1; grid-row: 1; }
.gigiwarm-native-lookbook-image-2 { grid-column: 1; grid-row: 2; }
.gigiwarm-native-lookbook-image-3 { grid-column: 2; grid-row: 1 / 3; }

.gigiwarm-modular-collections {
	padding: 0 clamp(18px, 4vw, 56px) clamp(78px, 10vw, 140px);
	background: #0c0c0c;
}

.gigiwarm-modular-collections > .elementor-container > .elementor-row > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap,
.gigiwarm-modular-collections > .elementor-container > .elementor-column > .elementor-widget-wrap {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 16px;
	max-width: var(--nex-max);
	margin: 0 auto;
}

.gigiwarm-collection-card {
	position: relative;
	min-height: clamp(470px, 54vw, 650px);
	overflow: hidden;
	border: 1px solid var(--nex-line);
	border-radius: clamp(28px, 4vw, 56px);
	background: radial-gradient(circle at 50% 92%, rgba(255, 255, 255, 0.18), transparent 36%), linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
	transition: transform 360ms var(--nex-ease), border-color 360ms var(--nex-ease);
}

.gigiwarm-collection-card:hover {
	transform: translateY(-8px);
	border-color: rgba(215, 226, 234, 0.42);
}

.gigiwarm-collection-card .elementor-widget-wrap {
	position: relative;
	min-height: clamp(470px, 54vw, 650px);
}

.gigiwarm-native-collection-number {
	position: absolute;
	z-index: 3;
	top: 24px;
	left: 24px;
	color: rgba(215, 226, 234, 0.42);
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(2.8rem, 7vw, 7rem);
	line-height: 0.9;
}

.gigiwarm-native-collection-image {
	position: absolute;
	z-index: 2;
	left: 50%;
	bottom: 18%;
	width: min(88%, 420px);
	max-height: 76%;
	transform: translateX(-50%);
	transition: transform 460ms var(--nex-ease);
}

.gigiwarm-native-collection-image img {
	width: 100%;
	max-height: 100%;
	object-fit: contain;
	filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.5));
}

.gigiwarm-collection-card:hover .gigiwarm-native-collection-image {
	transform: translateX(-50%) scale(1.04);
}

.gigiwarm-native-collection-title,
.gigiwarm-native-collection-text {
	position: absolute;
	z-index: 4;
	left: 24px;
	right: 24px;
}

.gigiwarm-native-collection-title { bottom: 64px; }
.gigiwarm-native-collection-text { bottom: 24px; }

.gigiwarm-native-collection-title .elementor-heading-title {
	color: #fff;
	font-size: clamp(1.3rem, 2.2vw, 2.4rem);
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.gigiwarm-native-collection-text {
	color: rgba(215, 226, 234, 0.75);
	font-weight: 300;
	line-height: 1.45;
}

.gigiwarm-modular-commerce {
	padding: clamp(72px, 10vw, 140px) clamp(18px, 4vw, 56px);
	border-top: 1px solid var(--nex-deep-line);
	background: radial-gradient(circle at 18% 10%, rgba(182, 0, 168, 0.18), transparent 28%), radial-gradient(circle at 86% 70%, rgba(190, 76, 0, 0.14), transparent 30%), #0c0c0c;
}

.gigiwarm-modular-commerce > .elementor-container > .elementor-row > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap,
.gigiwarm-modular-commerce > .elementor-container > .elementor-column > .elementor-widget-wrap {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	max-width: var(--nex-max);
	margin: 0 auto;
}

.gigiwarm-native-commerce-kicker,
.gigiwarm-native-commerce-heading {
	grid-column: 1 / -1;
}

.gigiwarm-native-commerce-kicker {
	margin-bottom: 10px;
	color: rgba(215, 226, 234, 0.74);
	font-size: clamp(0.78rem, 1.2vw, 0.96rem);
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}

.gigiwarm-native-commerce-heading {
	margin-bottom: clamp(24px, 4vw, 54px);
}

.gigiwarm-native-commerce-heading .elementor-heading-title {
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(3.5rem, 10vw, 9rem);
	font-weight: 400;
	line-height: 0.9;
	color: transparent;
	background: linear-gradient(180deg, #646973 0%, #bbccd7 100%);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	text-transform: uppercase;
}

.gigiwarm-commerce-card {
	position: relative;
	display: grid;
	align-content: end;
	min-height: clamp(250px, 28vw, 360px);
	overflow: hidden;
	padding: clamp(18px, 2.6vw, 32px);
	border: 1px solid var(--nex-line);
	border-radius: clamp(24px, 3vw, 42px);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.025)), #111;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.09);
	transition: transform 280ms var(--nex-ease), border-color 280ms var(--nex-ease), background-color 280ms var(--nex-ease);
}

.gigiwarm-commerce-card:hover {
	transform: translateY(-6px);
	border-color: rgba(215, 226, 234, 0.48);
	background-color: #151515;
}

.gigiwarm-commerce-card .elementor-widget-wrap {
	display: grid;
	align-content: end;
	min-height: 100%;
}

.gigiwarm-native-commerce-number {
	position: absolute;
	top: 22px;
	left: 22px;
	color: rgba(215, 226, 234, 0.38);
	font-family: "Anton", "Kanit", sans-serif;
	font-size: clamp(2.4rem, 5vw, 5rem);
	line-height: 0.9;
}

.gigiwarm-native-commerce-title .elementor-heading-title {
	max-width: 260px;
	color: #fff;
	font-size: clamp(1.25rem, 2vw, 2rem);
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.gigiwarm-native-commerce-text {
	margin-top: 12px;
	color: rgba(215, 226, 234, 0.72);
	font-size: 0.96rem;
	font-weight: 300;
	line-height: 1.55;
}

.gigiwarm-modular-footer {
	padding: 42px clamp(18px, 4vw, 56px) 50px;
	border-top: 1px solid var(--nex-deep-line);
	background: #090909;
	color: var(--nex-muted);
}

.gigiwarm-modular-footer > .elementor-container > .elementor-row > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap,
.gigiwarm-modular-footer > .elementor-container > .elementor-column > .elementor-widget-wrap {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 10px 28px;
	max-width: var(--nex-max);
	margin: 0 auto;
}

.gigiwarm-native-footer-social-heading,
.gigiwarm-native-footer-note {
	grid-column: 1 / -1;
}

.gigiwarm-native-footer-social-heading .elementor-heading-title,
.gigiwarm-native-footer-column-heading .elementor-heading-title {
	color: var(--nex-ink);
	font-size: 0.9rem;
	font-weight: 800;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.gigiwarm-native-footer-social {
	display: inline-grid;
	width: 38px;
	margin-right: 10px;
}

.gigiwarm-native-footer-social .elementor-button {
	display: grid;
	place-items: center;
	width: 38px;
	height: 38px;
	padding: 0;
	border: 1px solid var(--nex-line);
	border-radius: 50%;
	background: transparent;
	color: var(--nex-soft);
	font-size: 0.72rem;
	font-weight: 800;
}

.gigiwarm-native-footer-column-heading {
	margin-top: 18px;
}

.gigiwarm-native-footer-account-heading,
.gigiwarm-native-footer-account-menu { grid-column: 1; }
.gigiwarm-native-footer-help-heading,
.gigiwarm-native-footer-help-menu { grid-column: 2; }
.gigiwarm-native-footer-legal-heading,
.gigiwarm-native-footer-legal-menu { grid-column: 3; }
.gigiwarm-native-footer-departments-heading,
.gigiwarm-native-footer-departments-menu { grid-column: 4; }
.gigiwarm-native-footer-services-heading,
.gigiwarm-native-footer-services-menu { grid-column: 5; }

.gigiwarm-native-footer-menu .department-navigation {
	position: static;
	display: block;
	padding: 0;
	background: transparent;
}

.gigiwarm-native-footer-menu .department-menu {
	display: grid;
	justify-content: start;
	gap: 10px;
	padding: 0;
	font-size: 0.92rem;
	letter-spacing: 0;
	text-transform: none;
}

.gigiwarm-native-footer-menu .department-menu a {
	color: var(--nex-muted);
	font-weight: 300;
}

.gigiwarm-native-footer-note {
	margin-top: 24px;
	padding-top: 26px;
	border-top: 1px solid var(--nex-deep-line);
	color: rgba(215, 226, 234, 0.58);
	font-size: 0.86rem;
	font-weight: 300;
}

@media (max-width: 980px) {
	.gigiwarm-native-header-service,
	.gigiwarm-native-header-checkout {
		display: none;
	}

	.gigiwarm-native-header-brand {
		top: 56px;
		left: 76px;
		transform: none;
	}

	.gigiwarm-native-header-brand .elementor-heading-title {
		font-size: 2rem;
	}

	.gigiwarm-modular-services > .elementor-container > .elementor-row > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap,
	.gigiwarm-modular-services > .elementor-container > .elementor-column > .elementor-widget-wrap {
		grid-template-columns: 1fr;
	}

	.gigiwarm-native-service-number,
	.gigiwarm-native-service-name,
	.gigiwarm-native-service-text {
		grid-column: 1;
	}

	.gigiwarm-native-service-number {
		grid-row: auto;
		padding-bottom: 12px;
		border-bottom: 0;
	}

	.gigiwarm-native-service-name {
		padding-top: 0;
		border-top: 0;
	}

	.gigiwarm-modular-collections > .elementor-container > .elementor-row > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap,
	.gigiwarm-modular-collections > .elementor-container > .elementor-column > .elementor-widget-wrap,
	.gigiwarm-modular-commerce > .elementor-container > .elementor-row > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap,
	.gigiwarm-modular-commerce > .elementor-container > .elementor-column > .elementor-widget-wrap,
	.gigiwarm-modular-footer > .elementor-container > .elementor-row > .elementor-column > .elementor-column-wrap > .elementor-widget-wrap,
	.gigiwarm-modular-footer > .elementor-container > .elementor-column > .elementor-widget-wrap {
		grid-template-columns: 1fr;
	}

	.gigiwarm-native-commerce-kicker,
	.gigiwarm-native-commerce-heading,
	.gigiwarm-native-footer-social-heading,
	.gigiwarm-native-footer-note,
	.gigiwarm-native-footer-account-heading,
	.gigiwarm-native-footer-account-menu,
	.gigiwarm-native-footer-help-heading,
	.gigiwarm-native-footer-help-menu,
	.gigiwarm-native-footer-legal-heading,
	.gigiwarm-native-footer-legal-menu,
	.gigiwarm-native-footer-departments-heading,
	.gigiwarm-native-footer-departments-menu,
	.gigiwarm-native-footer-services-heading,
	.gigiwarm-native-footer-services-menu {
		grid-column: 1;
	}

	.gigiwarm-lookbook-frame {
		height: auto;
		min-height: 0;
		margin-bottom: 24px;
	}

	.gigiwarm-lookbook-card {
		position: relative;
		top: auto;
		min-height: 0;
		transform: none !important;
	}

	.gigiwarm-lookbook-card .elementor-widget-wrap {
		display: block;
		min-height: 0;
		padding-top: 0;
	}

	.gigiwarm-native-lookbook-number,
	.gigiwarm-native-lookbook-category,
	.gigiwarm-native-lookbook-title,
	.gigiwarm-native-lookbook-button {
		position: relative;
		inset: auto;
		max-width: none;
		margin-bottom: 12px;
	}

	.gigiwarm-native-lookbook-image {
		min-height: 250px;
		margin-top: 14px;
	}
}
