/**
 * GM Eyewear — blocks.css
 * Catalog + PDP + Header/Footer styles.
 * Fonts: Inter + Playfair Display
 */

/* ── Google Fonts Import ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500&display=swap');

/* ═══════ CSS VARIABLES ═══════ */
:root {
	--gm-black: #0A0A0A;
	--gm-black-soft: #1A1A1A;
	--gm-gray-900: #2A2A2A;
	--gm-gray-700: #555;
	--gm-gray-500: #888;
	--gm-gray-400: #aaa;
	--gm-gray-300: #ccc;
	--gm-gray-200: #ddd;
	--gm-gray-100: #eee;
	--gm-gray-50: #f5f5f5;
	--gm-white: #fff;
	--gm-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--gm-font-display: 'Playfair Display', Georgia, serif;
}

/* ═══════════════════════════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-marquee {
	background: var(--gm-black);
	overflow: hidden;
	white-space: nowrap;
	padding: 10px 0;
}
.gm-marquee__track {
	display: inline-flex;
	gap: 56px;
	animation: gm-marquee var(--gm-speed, 28s) linear infinite;
}
.gm-marquee__item {
	font-family: var(--gm-font-body);
	font-size: 10px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gm-white);
	display: flex;
	align-items: center;
	gap: 12px;
}
.gm-marquee__diamond {
	font-size: 5px;
	opacity: .4;
}
@keyframes gm-marquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   HEADER NAV
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-site-header {
	position: relative;
	z-index: 100;
}
.gm-nav {
	position: sticky;
	top: 0;
	z-index: 100;
	background: rgba(255, 255, 255, .94);
	backdrop-filter: blur(16px);
	-webkit-backdrop-filter: blur(16px);
	border-bottom: 1px solid var(--gm-gray-100);
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.gm-nav__logo {
	font-family: var(--gm-font-body);
	font-weight: 600;
	font-size: 13px;
	letter-spacing: 4px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gm-black);
}
.gm-nav__logo-img {
	height: 50px;
	max-height: 50px;
	width: auto;
	max-width: 140px;
	object-fit: contain;
}
.gm-nav__links {
	display: flex;
	gap: 32px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.gm-nav__links li a {
	font-family: var(--gm-font-body);
	font-size: 11px;
	letter-spacing: 1.8px;
	text-transform: uppercase;
	color: var(--gm-gray-500);
	text-decoration: none;
	transition: color .3s;
}
.gm-nav__links li a:hover,
.gm-nav__links li.current-menu-item a,
.gm-nav__links li.current_page_item a {
	color: var(--gm-black);
}
.gm-nav__right {
	display: flex;
	align-items: center;
	gap: 20px;
}
/* Trending groups ticker */
.gm-trending {
	height: 20px !important;
	overflow: hidden !important;
	position: relative !important;
	min-width: 80px !important;
	max-width: 160px !important;
	margin-left: auto !important;
	text-align: right !important;
}
.gm-trending__track {
	position: relative;
}
.gm-trending__word {
	display: none;
	height: 20px;
	line-height: 20px;
	font-size: 11px;
	letter-spacing: 0.04em;
	color: var(--gm-black) !important;
	font-weight: 600 !important;
	background: none !important;
	border: none !important;
	padding: 0 !important;
	cursor: pointer;
	font-family: var(--gm-font-body) !important;
	font-size: 11px !important;
	white-space: nowrap;
	text-align: right;
	width: 100%;
	transition: opacity 0.2s;
}
.gm-trending__word:hover {
	opacity: 0.6 !important;
}
.gm-nav__right a,
.gm-nav__right button {
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gm-gray-500);
	text-decoration: none;
	transition: color .3s;
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
	position: relative;
}
.gm-nav__right a:hover,
.gm-nav__right button:hover {
	color: var(--gm-black);
}
.gm-nav__right svg {
	display: block;
}
.gm-nav__cart-count {
	position: absolute;
	top: -6px;
	right: -8px;
	min-width: 16px;
	height: 16px;
	padding: 0 3px;
	border-radius: 999px;
	background: var(--gm-black);
	color: var(--gm-white);
	font-size: 9px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--gm-font-body);
}
.gm-nav__hamburger {
	display: none;
	background: none;
	border: none;
	padding: 4px;
	cursor: pointer;
	color: var(--gm-black);
}
.gm-wishlist-count {
	position: absolute;
	top: -6px;
	right: -8px;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	background: var(--gm-black);
	color: var(--gm-white);
	font-size: 9px;
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--gm-font-body);
}

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE MENU
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-mobile-menu {
	position: fixed;
	top: 0; left: 0; right: 0; bottom: 0;
	background: var(--gm-white);
	z-index: 200;
	display: flex;
	flex-direction: column;
	transform: translateX(-100%);
	transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}
.gm-mobile-menu.is-open { transform: translateX(0); }
.gm-mobile-menu__head {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 20px;
	border-bottom: 1px solid var(--gm-gray-100);
}
.gm-mobile-menu__logo {
	font-family: var(--gm-font-body);
	font-weight: 600;
	font-size: 12px;
	letter-spacing: 3px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gm-black);
}
.gm-mobile-menu__close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--gm-gray-500);
	padding: 4px;
}
.gm-mobile-menu__links {
	list-style: none;
	padding: 24px 20px;
	margin: 0;
	flex: 1;
}
.gm-mobile-menu__links li a {
	display: block;
	padding: 14px 0;
	font-family: var(--gm-font-body);
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gm-black);
	text-decoration: none;
	border-bottom: 1px solid var(--gm-gray-100);
}
.gm-mobile-menu__footer {
	padding: 20px;
	border-top: 1px solid var(--gm-gray-100);
	display: flex;
	gap: 20px;
}
.gm-mobile-menu__footer a {
	font-family: var(--gm-font-body);
	font-size: 12px;
	color: var(--gm-gray-500);
	text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SEARCH PANEL
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-search-panel {
	position: fixed;
	inset: 0;
	z-index: 200;
	display: none;
}
.gm-search-panel.is-open { display: block; }
.gm-search-panel__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.45);
	cursor: pointer;
	z-index: 1;
}
.gm-search-panel__content {
	position: relative;
	z-index: 2;
	background: var(--gm-white);
	max-height: 85vh;
	overflow-y: auto;
	box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.gm-search-panel__form {
	max-width: 800px;
	margin: 0 auto;
	padding: 32px 48px 40px;
}
.gm-search-panel__close {
	position: absolute;
	top: 20px;
	right: 24px;
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--gm-black);
	z-index: 2;
}
.gm-search-panel__input-wrap {
	display: flex;
	align-items: center;
	border-bottom: 2px solid var(--gm-black);
	padding: 8px 0;
	gap: 12px;
}
.gm-search-panel__icon {
	flex-shrink: 0;
	color: var(--gm-gray-400);
}
.gm-search-panel__input {
	flex: 1;
	border: none !important;
	outline: none !important;
	box-shadow: none !important;
	background: transparent !important;
	font-size: 16px;
	font-family: var(--gm-font-body);
	letter-spacing: 0.02em;
	color: var(--gm-black);
	-webkit-appearance: none;
	border-radius: 0;
	margin: 0;
	padding: 0;
}
.gm-search-panel__input::placeholder {
	color: var(--gm-gray-400);
}
.gm-search-panel__loading {
	text-align: center;
	padding: 24px 0;
	color: var(--gm-gray-500);
	font-size: 13px;
}
/* Results */
.gm-search-panel__count {
	font-size: 12px;
	color: var(--gm-gray-500);
	margin: 20px 0 16px;
	letter-spacing: 0.04em;
}
.gm-search-panel__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 16px;
}
.gm-search-panel__item {
	text-decoration: none;
	color: inherit;
	display: flex;
	flex-direction: column;
}
.gm-search-panel__item-img {
	aspect-ratio: 1 / 1;
	background: var(--gm-gray-50);
	overflow: hidden;
	margin-bottom: 8px;
}
.gm-search-panel__item-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10%;
	transition: transform 0.4s ease;
}
.gm-search-panel__item:hover .gm-search-panel__item-img img {
	transform: scale(1.06);
}
.gm-search-panel__item-name {
	font-size: 12px;
	font-weight: 500;
	color: var(--gm-black);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-bottom: 4px;
}
.gm-search-panel__item-price {
	font-size: 12px;
	color: var(--gm-gray-700);
}
.gm-search-panel__item-price del { color: var(--gm-gray-400); font-size: 11px; }
.gm-search-panel__item-price ins { text-decoration: none; }
/* Load More */
.gm-search-panel__load-more-wrap {
	text-align: center;
	padding: 24px 0 8px;
}
.gm-search-panel__load-more {
	padding: 10px 32px;
	background: var(--gm-black);
	color: var(--gm-white);
	border: none;
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	cursor: pointer;
	transition: opacity 0.2s;
	font-family: var(--gm-font-body);
}
.gm-search-panel__load-more:hover { opacity: 0.8; }
/* No results */
.gm-search-panel__no-results {
	text-align: center;
	padding: 40px 0;
	color: var(--gm-gray-500);
	font-size: 14px;
}
.gm-search-panel__hint {
	font-size: 12px;
	color: var(--gm-gray-400);
	margin-top: 8px;
}
/* Search Trends */
.gm-search-trends {
	margin-top: 28px;
	border-top: 1px solid var(--gm-gray-100);
	padding-top: 20px;
}
.gm-search-trends__title {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin: 0 0 16px;
	color: var(--gm-black);
}
.gm-search-trends__grid {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	scrollbar-width: none;
	padding-bottom: 4px;
}
.gm-search-trends__grid::-webkit-scrollbar { display: none; }
.gm-search-trends__item {
	flex: 0 0 120px;
	text-align: center;
	text-decoration: none;
	color: inherit;
}
.gm-search-trends__img {
	aspect-ratio: 1 / 1;
	background: var(--gm-gray-50);
	overflow: hidden;
	margin-bottom: 8px;
}
.gm-search-trends__img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 10%;
	transition: transform 0.3s;
}
.gm-search-trends__item:hover .gm-search-trends__img img {
	transform: scale(1.06);
}
.gm-search-trends__name {
	font-size: 11px;
	color: var(--gm-black);
	display: block;
}
@media (max-width: 767px) {
	.gm-search-panel__form { padding: 20px 16px 32px; }
	.gm-search-panel__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.gm-search-trends__item { flex: 0 0 90px; }
	.gm-search-trends__grid { gap: 12px; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
	.gm-search-trends__item { scroll-snap-align: start; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   MINI CART PANEL
   ═══════════════════════════════════════════════════════════════════════════ */
.mini-cart-panel {
	position: fixed;
	top: 0; right: 0; bottom: 0; left: 0;
	z-index: 300;
	visibility: hidden;
	pointer-events: none;
}
.mini-cart-panel.is-open { visibility: visible; pointer-events: auto; }
.mini-cart-panel__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .4);
	opacity: 0;
	transition: opacity .3s;
}
.mini-cart-panel.is-open .mini-cart-panel__overlay { opacity: 1; }
.mini-cart-panel__content {
	position: absolute;
	top: 0; right: 0; bottom: 0;
	width: 420px;
	max-width: 90vw;
	background: var(--gm-white);
	transform: translateX(100%);
	transition: transform .35s cubic-bezier(.16, 1, .3, 1);
	display: flex;
	flex-direction: column;
}
.mini-cart-panel.is-open .mini-cart-panel__content { transform: translateX(0); }
.mini-cart-panel__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px 24px;
	border-bottom: 1px solid var(--gm-gray-100);
}
.mini-cart-panel__title {
	font-family: var(--gm-font-body);
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
}
.mini-cart-panel__close {
	background: none;
	border: none;
	font-size: 24px;
	cursor: pointer;
	color: var(--gm-gray-500);
}
.mini-cart-panel__body {
	flex: 1;
	overflow-y: auto;
	padding: 16px 24px;
}
.mini-cart-panel__loader {
	display: none;
	align-items: center;
	justify-content: center;
	padding: 40px;
}
.mini-cart-panel__loader-spinner {
	width: 24px;
	height: 24px;
	border: 2px solid var(--gm-gray-200);
	border-top-color: var(--gm-black);
	border-radius: 50%;
	animation: gm-spin .6s linear infinite;
}
@keyframes gm-spin { to { transform: rotate(360deg); } }
html.mini-cart-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════════════════════════
   SHOP / CATALOG LAYOUT
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-shop {
	font-family: var(--gm-font-body);
	-webkit-font-smoothing: antialiased;
}
/* Breadcrumb */
.gm-shop__breadcrumb-bar {
	border-bottom: 1px solid var(--gm-gray-100);
	max-width: 1320px;
	margin: 0 auto;
	padding: 12px 40px;
}
.gm-shop__breadcrumb {
	font-size: 11px;
	color: var(--gm-gray-400);
	letter-spacing: .5px;
}
.gm-shop__breadcrumb a {
	color: var(--gm-gray-400);
	text-decoration: none;
	transition: color .3s;
}
.gm-shop__breadcrumb a:hover { color: var(--gm-black); }
.gm-shop__breadcrumb-sep { margin: 0 8px; opacity: .4; }
.gm-shop__breadcrumb-current { color: var(--gm-gray-700); }

/* Page title */
.gm-shop__ptitle {
	max-width: 1320px;
	margin: 0 auto;
	padding: 28px 40px 24px;
	display: flex;
	align-items: baseline;
	justify-content: space-between;
}
.gm-shop__heading {
	font-family: var(--gm-font-display);
	font-size: 28px;
	font-weight: 400;
	margin: 0;
}
.gm-shop__count {
	font-size: 11px;
	color: var(--gm-gray-400);
	letter-spacing: .5px;
}

/* Catalog grid layout */
.gm-catalog {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px 56px;
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 36px;
	align-items: start;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SIDEBAR FILTERS
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-sidebar {
	position: static;
}
/* Active filter tags */
.gm-active-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	padding: 12px 0;
}
.gm-filter-tag {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 5px 12px;
	border: 1px solid var(--gm-gray-200);
	font-family: var(--gm-font-body);
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--gm-gray-700);
	cursor: pointer;
	transition: all .2s;
}
.gm-filter-tag:hover { border-color: var(--gm-black); color: var(--gm-black); }
.gm-filter-tag__x { font-size: 12px; color: var(--gm-gray-400); }
.gm-clear-all {
	font-family: var(--gm-font-body);
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gm-gray-400);
	background: none;
	border: none;
	border-bottom: 1px solid var(--gm-gray-200);
	padding-bottom: 2px;
	cursor: pointer;
	transition: all .2s;
	margin-top: 4px;
}
.gm-clear-all:hover { color: var(--gm-black); border-color: var(--gm-black); }

/* Filter groups */
.gm-filter-group {
	border-bottom: 1px solid var(--gm-gray-100);
	padding: 18px 0;
}
.gm-filter-group:first-child { padding-top: 0; }
.gm-filter-group__btn {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: none;
	border: none;
	padding: 0;
	font-family: var(--gm-font-body);
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gm-black);
	cursor: pointer;
}
.gm-filter-group__btn svg {
	transition: transform .3s;
	color: var(--gm-gray-400);
}
.gm-filter-group.is-open .gm-filter-group__btn svg { transform: rotate(180deg); }
.gm-filter-group__body {
	overflow: hidden;
	max-height: 0;
	transition: max-height .35s ease;
}
.gm-filter-group.is-open .gm-filter-group__body { max-height: 400px; }
.gm-filter-group__inner { padding: 14px 0 4px; }

/* Checkbox filters (Shape) */
.gm-fcheck {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 10px;
	cursor: pointer;
	font-family: var(--gm-font-body);
	font-size: 12px;
	color: var(--gm-gray-700);
	font-weight: 300;
	transition: color .2s;
}
.gm-fcheck:hover { color: var(--gm-black); }
.gm-fcheck input { display: none; }
.gm-fbox {
	width: 16px; height: 16px;
	border: 1.5px solid var(--gm-gray-300);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .2s;
	flex-shrink: 0;
}
.gm-fcheck input:checked + .gm-fbox { background: var(--gm-black); border-color: var(--gm-black); }
.gm-fcheck input:checked + .gm-fbox::after {
	content: '';
	width: 4px; height: 7px;
	border: solid var(--gm-white);
	border-width: 0 1.5px 1.5px 0;
	transform: rotate(45deg);
	margin-top: -1px;
}
.gm-fcount { margin-left: auto; font-size: 10px; color: var(--gm-gray-400); }

/* Color swatches */
.gm-color-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.gm-cswatch {
	width: 24px; height: 24px;
	border-radius: 50%;
	border: 2px solid transparent;
	outline: 1px solid rgba(0,0,0,.12);
	cursor: pointer;
	transition: all .2s;
	position: relative;
	background-size: cover;
	background-position: center;
}
.gm-cswatch:hover,
.gm-cswatch.is-active { border-color: var(--gm-black); transform: scale(1.1); }
.gm-cswatch.is-active::after {
	content: '\2713';
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	font-weight: 700;
	color: var(--gm-white);
	text-shadow: 0 0 2px rgba(0, 0, 0, .5);
}

/* Price Range */
.gm-price-range__row {
	display: flex;
	align-items: center;
	gap: 6px;
	margin-bottom: 12px;
}
.gm-price-range__input {
	flex: 1;
	height: 30px;
	border: 1px solid var(--gm-gray-200);
	padding: 0 6px;
	font-family: var(--gm-font-body);
	font-size: 11px;
	text-align: center;
	outline: none;
	transition: border-color .2s;
	min-width: 0;
}
.gm-price-range__input:focus { border-color: var(--gm-black); }
.gm-price-range__sep { font-size: 11px; color: var(--gm-gray-400); flex-shrink: 0; }
.gm-price-range__sliders {
	position: relative;
	width: 100%;
	height: 20px;
	margin-top: 8px;
}
.gm-price-range__sliders::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	height: 2px;
	background: var(--gm-gray-200);
	transform: translateY(-50%);
	border-radius: 1px;
}
.gm-price-range__sliders::after {
	content: '';
	position: absolute;
	top: 50%;
	left: var(--track-left, 0%);
	right: var(--track-right, 0%);
	height: 2px;
	background: var(--gm-black);
	transform: translateY(-50%);
	border-radius: 1px;
}
.gm-price-range__slider {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	-webkit-appearance: none;
	height: 20px;
	background: transparent;
	outline: none;
	pointer-events: none;
	z-index: 1;
}
.gm-price-range__slider--min { z-index: 2; }
.gm-price-range__slider--max { z-index: 2; }
.gm-price-range__slider::-webkit-slider-thumb {
	-webkit-appearance: none;
	width: 16px; height: 16px;
	border-radius: 50%;
	background: var(--gm-black);
	cursor: pointer;
	pointer-events: all;
	position: relative;
	z-index: 3;
}
.gm-price-range__slider::-moz-range-thumb {
	width: 16px; height: 16px;
	border-radius: 50%;
	background: var(--gm-black);
	cursor: pointer;
	pointer-events: all;
	border: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SORT BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-sort-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 20px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--gm-gray-100);
}
.gm-sort-right { display: flex; align-items: center; gap: 16px; }
.gm-sort-label {
	font-size: 10px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gm-gray-400);
}
.gm-sort-btn {
	border: 1px solid var(--gm-gray-200);
	padding: 7px 28px 7px 12px;
	font-family: var(--gm-font-body);
	font-size: 11px;
	color: var(--gm-black);
	background: var(--gm-white);
	cursor: pointer;
	outline: none;
	letter-spacing: .5px;
	display: flex;
	align-items: center;
	gap: 8px;
	position: relative;
}
.gm-sort-btn:focus { border-color: var(--gm-black); }
.gm-sort-btn svg { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); }
.gm-sort-panel {
	position: absolute;
	top: 100%; right: 0;
	background: var(--gm-white);
	border: 1px solid var(--gm-gray-200);
	min-width: 180px;
	z-index: 50;
	display: none;
}
.gm-sort-panel.is-open { display: block; }
.gm-sort-option {
	padding: 10px 16px;
	font-family: var(--gm-font-body);
	font-size: 12px;
	color: var(--gm-gray-700);
	cursor: pointer;
	transition: all .2s;
}
.gm-sort-option:hover { background: var(--gm-gray-50); color: var(--gm-black); }
.gm-sort-option.is-active { color: var(--gm-black); font-weight: 500; }

/* Filter toggle (mobile only) */
.gm-filter-toggle-btn {
	display: none;
	align-items: center;
	gap: 7px;
	padding: 7px 16px;
	border: 1px solid var(--gm-gray-200);
	background: var(--gm-white);
	font-family: var(--gm-font-body);
	font-size: 11px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--gm-black);
	cursor: pointer;
	transition: all .2s;
}
.gm-filter-toggle-btn:hover { border-color: var(--gm-black); }
.gm-filter-toggle-btn svg { flex-shrink: 0; }
.gm-filter-count {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 18px; height: 18px;
	border-radius: 50%;
	background: var(--gm-black);
	color: var(--gm-white);
	font-size: 9px;
	font-weight: 600;
}

/* View toggle */
.gm-view-toggle { display: flex; gap: 4px; }
.gm-view-btn {
	width: 32px; height: 32px;
	border: 1px solid var(--gm-gray-200);
	background: var(--gm-white);
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--gm-gray-400);
	transition: all .2s;
	cursor: pointer;
}
.gm-view-btn.is-active { border-color: var(--gm-black); color: var(--gm-black); }

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT GRID (CATALOG)
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-pgrid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.gm-pgrid.gm-pgrid--3col { grid-template-columns: repeat(3, 1fr); }

/* Product Card */
.gm-pcard { position: relative; cursor: pointer; }
.gm-pcard__img-wrap {
	aspect-ratio: 1 / 1;
	background: var(--gm-gray-50);
	overflow: hidden;
	border: 1px solid var(--gm-gray-100);
	position: relative;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gm-pcard__img-link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%; height: 100%;
}
.gm-pcard__img-link img {
	width: 100%; height: 100%;
	object-fit: cover;
	transition: transform .5s;
}
.gm-pcard:hover .gm-pcard__img-link img { transform: scale(1.06); }
.gm-pcard__placeholder {
	width: 55%; height: 55%;
	color: var(--gm-gray-300);
	transition: transform .5s, color .3s;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gm-pcard__placeholder svg { width: 100%; height: auto; }
.gm-pcard:hover .gm-pcard__placeholder { transform: scale(1.06); color: var(--gm-gray-400); }

/* Wishlist button */
.gm-pcard__wish {
	position: absolute;
	top: 8px; right: 8px;
	width: 28px; height: 28px;
	border: none;
	background: rgba(255, 255, 255, .85);
	backdrop-filter: blur(4px);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	opacity: 0;
	transition: opacity .25s;
	z-index: 2;
	padding: 0;
}
.gm-pcard__wish svg { width: 14px; height: 14px; color: var(--gm-gray-500); transition: color .2s; }
.gm-pcard:hover .gm-pcard__wish { opacity: 1; }
.gm-pcard__wish:hover svg { color: var(--gm-black); }
.gm-pcard__wish.is-active svg { fill: var(--gm-black); stroke: var(--gm-black); }

/* Quick View bar */
.gm-pcard__qv {
	position: absolute;
	bottom: 0; left: 0; right: 0;
	background: var(--gm-black);
	color: var(--gm-white);
	font-family: var(--gm-font-body);
	font-size: 9px;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
	padding: 10px;
	opacity: 0;
	transform: translateY(100%);
	transition: all .3s cubic-bezier(.16, 1, .3, 1);
	text-decoration: none;
	z-index: 2;
}
.gm-pcard:hover .gm-pcard__qv { opacity: 1; transform: translateY(0); }

/* Badge */
.gm-pcard__badge {
	position: absolute;
	top: 8px; left: 8px;
	font-family: var(--gm-font-body);
	font-size: 8px;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	font-weight: 600;
	background: var(--gm-black);
	color: var(--gm-white);
	padding: 4px 9px;
	z-index: 2;
}
.gm-pcard__badge--sale { background: #dc2626; }
.gm-pcard__badge--oos { background: var(--gm-gray-500); }

/* Card body */
.gm-pcard__body { padding: 0 2px; }
.gm-pcard__name {
	font-family: var(--gm-font-body);
	font-size: 14px;
	font-weight: 400;
	letter-spacing: .3px;
	margin: 0 0 3px;
}
.gm-pcard__name a { color: var(--gm-black); text-decoration: none; }
.gm-pcard__price {
	font-family: var(--gm-font-body);
	font-size: 14px;
	font-weight: 500;
}
.gm-pcard__price del {
	text-decoration: line-through;
	color: var(--gm-gray-400);
	font-weight: 300;
	margin-left: 6px;
	font-size: 13px;
}
.gm-pcard__price ins { text-decoration: none; }
.gm-pcard--oos .gm-pcard__img-link img { opacity: .5; }
.gm-pcard--oos .gm-pcard__name a { color: var(--gm-gray-500); }

/* ═══════════════════════════════════════════════════════════════════════════
   LOAD MORE
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-load-more-wrap { text-align: center; padding: 40px 0 0; }
.gm-load-more__btn {
	padding: 14px 48px;
	border: 1px solid var(--gm-gray-200);
	background: var(--gm-white);
	font-family: var(--gm-font-body);
	font-size: 11px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	color: var(--gm-black);
	transition: all .3s;
	cursor: pointer;
}
.gm-load-more__btn:hover { background: var(--gm-black); color: var(--gm-white); border-color: var(--gm-black); }
.gm-load-progress {
	font-family: var(--gm-font-body);
	font-size: 11px;
	color: var(--gm-gray-400);
	margin-top: 12px;
	letter-spacing: .5px;
}
.gm-load-more-wrap.is-loading .gm-load-more__btn { opacity: .5; pointer-events: none; }

/* No results */
.gm-shop__no-results { text-align: center; padding: 80px 20px; }
.gm-shop__no-results-heading {
	font-family: var(--gm-font-display);
	font-size: 24px;
	font-weight: 400;
	margin: 0 0 8px;
}
.gm-shop__no-results-sub { font-size: 13px; color: var(--gm-gray-500); }
.gm-shop__no-results-sub a { color: var(--gm-black); text-decoration: underline; }
.gm-grid-loading { opacity: .5; transition: opacity .2s; pointer-events: none; }

/* ═══════════════════════════════════════════════════════════════════════════
   MOBILE FILTER DRAWER
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-filter-drawer {
	position: fixed;
	inset: 0;
	z-index: 500;
	visibility: hidden;
	pointer-events: none;
}
.gm-filter-drawer.is-open { visibility: visible; pointer-events: auto; }
.gm-filter-drawer__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, .4);
	opacity: 0;
	transition: opacity .3s;
}
.gm-filter-drawer.is-open .gm-filter-drawer__overlay { opacity: 1; }
.gm-filter-drawer__panel {
	position: absolute;
	top: 0; bottom: 0; left: 0;
	width: 300px;
	max-width: 85vw;
	background: var(--gm-white);
	transform: translateX(-100%);
	transition: transform .35s cubic-bezier(.16, 1, .3, 1);
	overflow-y: auto;
	display: flex;
	flex-direction: column;
}
.gm-filter-drawer.is-open .gm-filter-drawer__panel { transform: translateX(0); }
.gm-filter-drawer__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border-bottom: 1px solid var(--gm-gray-100);
}
.gm-filter-drawer__title {
	font-family: var(--gm-font-body);
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}
.gm-filter-drawer__close { background: none; border: none; cursor: pointer; padding: 4px; }
.gm-filter-drawer__body { flex: 1; overflow-y: auto; padding: 0 20px 20px; }
.gm-filter-drawer__footer {
	display: flex;
	gap: 12px;
	padding: 16px 20px;
	border-top: 1px solid var(--gm-gray-100);
	background: var(--gm-white);
}
.gm-filter-drawer__apply {
	flex: 1;
	padding: 14px;
	background: var(--gm-black);
	color: var(--gm-white);
	border: none;
	font-family: var(--gm-font-body);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	cursor: pointer;
}
.gm-filter-drawer__clear-btn {
	padding: 14px 20px;
	background: none;
	border: 1px solid var(--gm-black);
	color: var(--gm-black);
	font-family: var(--gm-font-body);
	font-size: 13px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .1em;
	cursor: pointer;
}

/* SEO content */
.gm-cat-desc {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px 40px;
}
.gm-cat-desc__container {
	font-family: var(--gm-font-body);
	font-size: 13px;
	line-height: 1.7;
	color: var(--gm-gray-700);
}
.gm-cat-desc__summary { cursor: pointer; font-size: 12px; color: var(--gm-gray-500); margin-top: 8px; }
.gm-cat-desc__details[open] .gm-cat-desc__more { display: none; }
.gm-cat-desc__details:not([open]) .gm-cat-desc__less { display: none; }

/* Show more button */
.gm-filter-show-more {
	display: block;
	font-family: var(--gm-font-body);
	font-size: 11px;
	color: var(--gm-gray-500);
	background: none;
	border: none;
	border-bottom: 1px solid var(--gm-gray-200);
	padding: 0 0 2px;
	margin-top: 8px;
	cursor: pointer;
	transition: all .2s;
}
.gm-filter-show-more:hover { color: var(--gm-black); border-color: var(--gm-black); }

/* Sticky sort/filter toolbar — mobile only */
@media (max-width: 768px) {
	.gm-sort-bar.is-sticky {
		position: fixed;
		top: 0px;
		left: 0;
		right: 0;
		z-index: 120;
		background: #fff;
		border-bottom: 1px solid var(--gm-gray-100);
		padding: 12px 16px;
		margin-top: 0;
		transform: translateY(0);
		transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .3s ease;
	}
	.gm-sort-bar.is-sticky.is-hidden {
		transform: translateY(-100%);
		opacity: 0;
		pointer-events: none;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-footer { border-top: 1px solid var(--gm-gray-100); }
.gm-footer__inner {
	max-width: 1320px;
	margin: 0 auto;
	padding: 48px 40px 36px;
}
.gm-footer__top {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: 40px;
	margin-bottom: 36px;
}
.gm-footer__logo {
	font-family: var(--gm-font-body);
	font-weight: 600;
	font-size: 15px;
	letter-spacing: 5px;
	text-transform: uppercase;
	text-decoration: none;
	color: var(--gm-black);
	display: block;
	margin-bottom: 12px;
}
.gm-footer__tagline {
	font-family: var(--gm-font-body);
	font-size: 11px;
	color: var(--gm-gray-500);
	line-height: 1.7;
	font-weight: 300;
	max-width: 260px;
	margin: 0;
}
.gm-footer__col-title {
	font-family: var(--gm-font-body);
	font-size: 10px;
	letter-spacing: 2.5px;
	text-transform: uppercase;
	margin-bottom: 18px;
	font-weight: 600;
	color: var(--gm-black);
}
.gm-footer__col-list { list-style: none; margin: 0; padding: 0; }
.gm-footer__col-list li a {
	display: block;
	font-family: var(--gm-font-body);
	font-size: 12px;
	color: var(--gm-gray-500);
	margin-bottom: 10px;
	font-weight: 300;
	transition: color .3s;
	text-decoration: none;
}
.gm-footer__col-list li a:hover { color: var(--gm-black); }
.gm-footer__bottom {
	border-top: 1px solid var(--gm-gray-100);
	padding-top: 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 12px;
}
.gm-footer__copy { font-size: 11px; color: var(--gm-gray-400); margin: 0; }
.gm-footer__legal { display: flex; gap: 20px; }
.gm-footer__legal a {
	font-family: var(--gm-font-body);
	font-size: 10px;
	letter-spacing: 1px;
	text-transform: uppercase;
	color: var(--gm-gray-400);
	text-decoration: none;
	transition: color .3s;
}
.gm-footer__legal a:hover { color: var(--gm-black); }
.gm-footer__disclaimer {
	font-size: 9px;
	color: var(--gm-gray-400);
	line-height: 1.5;
	font-weight: 300;
	margin-top: 16px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATALOG RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
	.gm-nav { padding: 0 28px; }
	.gm-nav__links { display: none; }
	.gm-nav__hamburger { display: block; }
	.gm-nav { justify-content: flex-start; }
	.gm-nav__logo { order: 2; margin-left: 10px; }
	.gm-nav__hamburger { order: 1; }
	.gm-nav__right { order: 3; margin-left: auto; }
	.gm-trending { max-width: 120px !important; min-width: 60px !important; }
	.gm-nav__logo-img { max-height: 40px; height: 40px; }
	.gm-shop__breadcrumb-bar,
	.gm-shop__ptitle { padding-left: 28px; padding-right: 28px; }
	.gm-catalog { padding: 0 28px 56px; grid-template-columns: 200px 1fr; gap: 28px; }
	.gm-pgrid { grid-template-columns: repeat(3, 1fr); }
	.gm-footer__inner { padding: 36px 28px 28px; }
	.gm-footer__top { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
	.gm-catalog { grid-template-columns: 1fr; }
	.gm-sidebar { display: none; }
	.gm-filter-toggle-btn { display: inline-flex; }
	.gm-pgrid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}
@media (max-width: 640px) {
	.gm-filter-drawer__clear-btn,
	.gm-filter-drawer__apply { padding: 10px; font-size: 10px; }
	.gm-nav { padding: 0 16px; height: 50px; }
	.gm-shop__breadcrumb-bar,
	.gm-shop__ptitle,
	.gm-footer__inner,
	.gm-cat-desc { padding-left: 16px; padding-right: 16px; }
	.gm-catalog { padding: 0 16px 40px; }
	.gm-shop__heading { font-size: 22px; }
	.gm-footer__top { grid-template-columns: 1fr; gap: 28px; }
	.gm-sort-bar { gap: 10px; }
	.gm-view-toggle { display: none; }
	.gm-pcard__qv { display: none; }
	.gm-pcard__wish { opacity: 1; width: 24px; height: 24px; }
	.gm-pcard__badge { font-size: 7px; padding: 3px 7px; }
	.gm-pcard__name { font-size: 12px; }
	.gm-pcard__price { font-size: 12px; }
	.gm-pcard__price del { font-size: 11px; }
	.gm-load-more__btn { padding: 12px 32px; font-size: 10px; }
	.gm-load-progress { font-size: 10px; }
	.gm-footer__bottom { flex-direction: column; gap: 8px; text-align: center; }
	.gm-footer__disclaimer { text-align: center; }
	.gm-marquee__item { font-size: 9px; letter-spacing: 2px; }
}

/* ═══════ PDP WRAPPER ═══════ */
.gm-pdp {
	font-family: var(--gm-font-body);
	color: var(--gm-black);
	-webkit-font-smoothing: antialiased;
	overflow-x: hidden;
}
.gm-pdp *,
.gm-pdp *::before,
.gm-pdp *::after {
	box-sizing: border-box;
}
.gm-pdp a {
	color: inherit;
	text-decoration: none;
}
.gm-pdp img {
	display: block;
	max-width: 100%;
}
.gm-pdp button {
	font-family: var(--gm-font-body);
	cursor: pointer;
}

/* ═══════ BREADCRUMB ═══════ */
.gm-breadcrumb {
	border-bottom: 1px solid var(--gm-gray-100);
	padding: 12px 40px;
	max-width: 1320px;
	margin: 0 auto;
}
.gm-breadcrumb span {
	font-size: 11px;
	color: var(--gm-gray-400);
	letter-spacing: .5px;
}
.gm-breadcrumb a {
	color: var(--gm-gray-400);
	transition: color .3s;
}
.gm-breadcrumb a:hover {
	color: var(--gm-black);
}
.gm-breadcrumb__sep {
	margin: 0 8px;
	opacity: .4;
}
.gm-breadcrumb__current {
	color: var(--gm-gray-700);
}

/* ═══════ PRODUCT SECTION (Grid) ═══════ */
.gm-product-section {
	max-width: 1320px;
	margin: 0 auto;
	padding: 32px 40px 56px;
	overflow-x: hidden;
	display: grid;
	grid-template-columns: 1fr 440px;
	gap: 56px;
	align-items: start;
}

/* ═══════ GALLERY ═══════ */
.gm-gallery__main {
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: var(--gm-gray-50);
	overflow: hidden;
	cursor: crosshair;
	border: 1px solid var(--gm-gray-100);
}
.gm-gallery__main-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 8%;
	transition: transform .5s cubic-bezier(.16, 1, .3, 1), opacity .25s ease;
}
.gm-gallery__main:hover .gm-gallery__main-img {
	transform: scale(1.06);
}

/* Sale badge */
.gm-gallery__sale-badge {
	position: absolute;
	top: 16px;
	left: 16px;
	font-size: 10px;
	font-weight: 600;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	background: var(--gm-black);
	color: var(--gm-white);
	padding: 5px 12px;
	z-index: 2;
}

/* Wishlist button */
.gm-gallery__wish-btn {
	position: absolute;
	top: 14px;
	right: 14px;
	width: 36px;
	height: 36px;
	border: 1px solid var(--gm-gray-200);
	background: rgba(255, 255, 255, .9);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .25s;
	color: var(--gm-black);
	z-index: 2;
}
.gm-gallery__wish-btn:hover {
	background: var(--gm-gray-50);
	border-color: var(--gm-black);
}
.gm-gallery__wish-btn.wished {
	background: var(--gm-black);
	color: var(--gm-white);
	border-color: var(--gm-black);
}

/* Gallery arrows */
.gm-gallery__arrows {
	position: absolute;
	bottom: 16px;
	right: 16px;
	display: flex;
	gap: 6px;
	z-index: 2;
}
.gm-gallery__arrow {
	width: 36px;
	height: 36px;
	border: 1px solid var(--gm-gray-200);
	background: rgba(255, 255, 255, .9);
	backdrop-filter: blur(6px);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .25s;
	color: var(--gm-black);
}
.gm-gallery__arrow:hover {
	background: var(--gm-black);
	color: var(--gm-white);
	border-color: var(--gm-black);
}

/* Gallery counter */
.gm-gallery__counter {
	position: absolute;
	bottom: 22px;
	left: 16px;
	font-size: 11px;
	color: var(--gm-gray-500);
	letter-spacing: 2px;
	font-variant-numeric: tabular-nums;
	z-index: 2;
}

/* Thumbnails */
.gm-gallery__thumbs {
	display: flex;
	gap: 8px;
	margin-top: 10px;
}
.gm-gallery__thumb {
	width: 68px;
	height: 68px;
	border: 1.5px solid transparent;
	background: var(--gm-gray-50);
	padding: 5px;
	overflow: hidden;
	opacity: .5;
	transition: all .25s;
}
.gm-gallery__thumb.active {
	border-color: var(--gm-black);
	opacity: 1;
}
.gm-gallery__thumb:hover {
	opacity: 1;
}
.gm-gallery__thumb img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/* ═══════ PRODUCT INFO (Sticky) ═══════ */
.gm-product-info {
	position: sticky;
	top: 114px;
}
.gm-product-info__collab {
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gm-gray-500);
	margin-bottom: 10px;
	font-weight: 500;
}
.gm-product-info__title {
	font-family: var(--gm-font-display);
	font-size: 30px;
	font-weight: 400;
	line-height: 1.2;
	margin-bottom: 6px;
	letter-spacing: -.3px;
}
.gm-product-info__reviews-inline {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 18px;
}
.gm-product-info__stars {
	display: flex;
	gap: 1px;
	color: var(--gm-black);
}
.gm-product-info__reviews-count {
	font-size: 12px;
	color: var(--gm-gray-500);
	font-weight: 400;
	transition: color .3s;
}
.gm-product-info__reviews-count:hover {
	color: var(--gm-black);
}

/* Price */
.gm-product-info__price-row {
	display: flex;
	align-items: baseline;
	gap: 12px;
	margin-bottom: 6px;
}
.gm-product-info__price {
	font-size: 22px;
	font-weight: 500;
	letter-spacing: .5px;
}
.gm-product-info__price-old {
	font-size: 15px;
	color: var(--gm-gray-400);
	text-decoration: line-through;
	font-weight: 300;
}

/* Stock indicator */
.gm-product-info__stock {
	font-size: 11px;
	color: var(--gm-gray-500);
	letter-spacing: .5px;
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	gap: 7px;
}
.gm-product-info__stock-dot {
	width: 5px;
	height: 5px;
	border-radius: 50%;
	background: var(--gm-black);
	animation: gm-blink 2s ease-in-out infinite;
	flex-shrink: 0;
}
.gm-product-info__stock-dot--oos {
	background: #c00;
	animation: none;
}

@keyframes gm-blink {
	0%, 100% { opacity: 1; }
	50% { opacity: .3; }
}

/* Divider */
.gm-divider {
	height: 1px;
	background: var(--gm-gray-100);
	margin: 20px 0;
}

/* ═══════ PROMO BAR (Buy 2 Get 1 Free) ═══════ */
@keyframes gm-pulse-dot {
	0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
	50% { opacity: .7; transform: scale(.75); box-shadow: 0 0 0 5px rgba(34,197,94,0); }
}
@keyframes gm-shimmer {
	0% { background-position: 200% center; }
	100% { background-position: -200% center; }
}
.gm-promo-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #000;
	color: #fff;
	padding: 14px 18px;
	text-decoration: none;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	border: 1.5px dashed #22c55e;
	margin-bottom: 6px;
	transition: opacity .2s;
}
.gm-promo-bar:hover { opacity: .85; }
.gm-promo-bar::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.04) 50%, transparent 60%);
	background-size: 200% 100%;
	animation: gm-shimmer 3s ease-in-out infinite;
}
.gm-promo-bar__left {
	display: flex;
	align-items: center;
	gap: 10px;
}
.gm-promo-bar__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: #22c55e;
	flex-shrink: 0;
	animation: gm-pulse-dot 1.4s ease-in-out infinite;
}
.gm-promo-bar__text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}
.gm-promo-bar__title {
	font-family: var(--gm-font-body);
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0.06em;
	line-height: 1;
	color: #fff;
}
.gm-promo-bar__sub {
	font-family: var(--gm-font-body);
	font-size: 12px;
	color: rgba(255,255,255,0.6);
	font-weight: 300;
}
.gm-promo-bar__timer {
	display: flex;
	align-items: center;
	gap: 3px;
	flex-shrink: 0;
}
.gm-promo-bar__timer-group {
	display: flex;
	flex-direction: column;
	align-items: center;
}
.gm-promo-bar__timer-val {
	font-family: var(--gm-font-body);
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	letter-spacing: 0.04em;
	font-variant-numeric: tabular-nums;
}
.gm-promo-bar__timer-lbl {
	font-family: var(--gm-font-body);
	font-size: 7px;
	color: rgba(255,255,255,0.35);
	letter-spacing: 0.12em;
	text-transform: uppercase;
}
.gm-promo-bar__timer-sep {
	font-family: var(--gm-font-body);
	font-size: 14px;
	color: rgba(255,255,255,0.25);
	margin-bottom: 8px;
}
.gm-promo-bar__note {
	font-family: var(--gm-font-body);
	font-size: 10px;
	color: #aaa;
	letter-spacing: 0.06em;
	margin-bottom: 20px;
}
@media (max-width: 767px) {
	.gm-promo-bar { padding: 12px 14px; }
	.gm-promo-bar__title { font-size: 17px; }
	.gm-promo-bar__sub { font-size: 11px; }
}

/* Payment Methods */
.single-product__payment-methods {
	margin-top: 24px;
	padding: 24px 0;
	border-top: 1px solid var(--gm-gray-200);
	border-bottom: 1px solid var(--gm-gray-200);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.single-product__payment-content {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: flex-start;
}
.single-product__payment-label {
	font-family: var(--gm-font-body);
	font-size: 13px;
	font-weight: 600;
	color: var(--gm-black-soft);
	white-space: nowrap;
}
.single-product__payment-text {
	font-family: var(--gm-font-body);
	font-size: 12px;
	color: var(--gm-gray-500);
	white-space: nowrap;
}
.single-product__payment-icons {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-shrink: 0;
}
.single-product__payment-icon {
	display: flex;
	align-items: center;
	justify-content: center;
}
.single-product__payment-icon svg {
	display: block;
	width: 48px;
	height: 32px;
}


/* ═══════ PRODUCT GROUP VARIANTS ═══════ */
.gm-variants-block {
	margin-top: 18px;
	padding-top: 16px;
	border-top: 1px solid var(--gm-gray-100);
}
.gm-variants-label {
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gm-gray-500);
	margin-bottom: 10px;
	font-weight: 500;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.gm-variants-count {
	font-size: 10px;
	color: var(--gm-gray-400);
	font-weight: 300;
	letter-spacing: 0;
}
.gm-variants-grid {
	display: flex;
	gap: 8px;
	overflow-x: auto;
	scrollbar-width: none;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 4px;
}
.gm-variants-grid::-webkit-scrollbar { display: none; }
.gm-var-card {
	border: 1.5px solid var(--gm-gray-100);
	padding: 6px;
	cursor: pointer;
	transition: all .25s;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	position: relative;
	background: var(--gm-white);
	flex-shrink: 0;
	width: 100px;
	text-decoration: none;
	color: inherit;
}
.gm-var-card:hover { border-color: var(--gm-gray-300); }
.gm-var-card.active { border-color: var(--gm-black); }
.gm-var-img {
	width: 100%;
	aspect-ratio: 1 / 1;
	background: var(--gm-gray-50);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 5px;
}
.gm-var-img img {
	width: 80%;
	height: 80%;
	object-fit: contain;
	transition: transform .3s;
}
.gm-var-card:hover .gm-var-img img { transform: scale(1.05); }
.gm-var-name {
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .2px;
	margin: 0 0 1px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}
.gm-var-price {
	font-size: 10px;
	font-weight: 600;
	margin: 0;
}
.gm-var-price .old {
	text-decoration: line-through;
	color: var(--gm-gray-400);
	font-weight: 300;
	font-size: 9px;
	margin-left: 3px;
}
@media (max-width: 640px) {
	.gm-variants-block { margin-top: 14px; padding-top: 12px; }
	.gm-variants-grid { gap: 6px; }
	.gm-var-card { width: 88px; padding: 5px; border-width: 1px; }
	.gm-var-name { font-size: 8px; }
	.gm-var-price { font-size: 9px; }
	.gm-var-price .old { display: none; }
}

/* ═══════ CTA BUTTON ═══════ */
.gm-btn-add {
	width: 100%;
	height: 52px;
	background: var(--gm-black);
	color: var(--gm-white);
	border: none;
	font-size: 12px;
	font-weight: 500;
	letter-spacing: 3px;
	text-transform: uppercase;
	position: relative;
	overflow: hidden;
	transition: all .35s;
}
.gm-btn-add:hover {
	letter-spacing: 4.5px;
}
.gm-btn-add::after {
	content: '';
	position: absolute;
	top: 0;
	left: -100%;
	width: 100%;
	height: 100%;
	background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .06), transparent);
	transition: left .5s;
}
.gm-btn-add:hover::after {
	left: 100%;
}
.gm-btn-add.added {
	background: var(--gm-gray-700);
	pointer-events: none;
}
.gm-btn-add--disabled {
	background: var(--gm-gray-400);
	cursor: not-allowed;
}
.gm-btn-add--disabled:hover {
	letter-spacing: 3px;
}
.gm-btn-add--disabled::after {
	display: none;
}

/* ═══════ DELIVERY INFO ═══════ */
.gm-delivery-info {
	margin-top: 18px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 16px 0;
	border-top: 1px solid var(--gm-gray-100);
	border-bottom: 1px solid var(--gm-gray-100);
}
.gm-delivery-row {
	display: flex;
	align-items: center;
	gap: 10px;
	font-size: 12px;
	color: var(--gm-gray-700);
	font-weight: 300;
	letter-spacing: .3px;
}
.gm-delivery-row strong {
	font-weight: 500;
	color: var(--gm-black);
}
.gm-delivery-svg {
	flex-shrink: 0;
	color: var(--gm-black);
}

/* ═══════ META BLOCK ═══════ */
.gm-meta-block {
	margin-top: 20px;
}
.gm-meta-row {
	font-size: 11px;
	color: var(--gm-gray-500);
	margin-bottom: 6px;
	letter-spacing: .3px;
	line-height: 1.7;
}
.gm-meta-row strong {
	color: var(--gm-black);
	font-weight: 500;
	margin-right: 6px;
}
.gm-meta-row a {
	color: var(--gm-gray-500);
	border-bottom: 1px solid var(--gm-gray-200);
	transition: all .3s;
}
.gm-meta-row a:hover {
	color: var(--gm-black);
	border-color: var(--gm-black);
}

/* PDP color swatches (pa_frame-color, pa_lens-color) */
.gm-meta-row--swatches { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 4px; }
.gm-pdp-swatch {
	display: block;
	width: 24px;
	height: 24px;
	border-radius: 50%;
	border: 2px solid transparent;
	outline: 1px solid rgba(0,0,0,.15);
	background-size: cover;
	background-position: center;
	transition: border-color .15s, transform .15s;
}
.gm-pdp-swatch:hover { border-color: var(--gm-black); transform: scale(1.1); }

/* Trademark */
.gm-trademark {
	font-family: var(--gm-font-body);
	font-size: 12px;
	color: var(--gm-gray-400);
	line-height: 1.5;
	margin-top: 14px;
	font-weight: 300;
}
/* Hide theme's trademark <p> without class that follows .gm-product-info */
.gm-product-info > p:not([class]) { display: none !important; }
.single-product__trademark { display: none !important; }

/* ═══════ TABS SECTION ═══════ */
.gm-tabs-section {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px 56px;
}
.gm-tabs-nav {
	display: flex;
	gap: 0;
	border-bottom: 1px solid var(--gm-gray-200);
	margin-bottom: 32px;
}
.gm-tabs-nav button {
	padding: 14px 28px;
	background: none;
	border: none;
	font-size: 11px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--gm-gray-400);
	font-weight: 500;
	border-bottom: 2px solid transparent;
	transition: all .3s;
	margin-bottom: -1px;
}
.gm-tabs-nav button.active {
	color: var(--gm-black);
	border-bottom-color: var(--gm-black);
}
.gm-tabs-nav button:hover {
	color: var(--gm-black);
}
.gm-tab-panel {
	display: none;
}
.gm-tab-panel.active {
	display: block;
}
.gm-tab-panel p {
	font-size: 13px;
	line-height: 1.9;
	color: var(--gm-gray-700);
	font-weight: 300;
	max-width: 720px;
}
.gm-tab-panel h3 {
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 12px;
	letter-spacing: .5px;
}
.gm-tab-panel table {
	width: 100%;
	max-width: 600px;
	border-collapse: collapse;
	margin-top: 8px;
}
.gm-tab-panel table td {
	padding: 8px 0;
	font-size: 12px;
	border-bottom: 1px solid var(--gm-gray-100);
	color: var(--gm-gray-700);
	font-weight: 300;
}
.gm-tab-panel table td:first-child {
	width: 140px;
	color: var(--gm-black);
	font-weight: 400;
}
.gm-tab-note {
	font-size: 11px !important;
	color: var(--gm-gray-400) !important;
	font-style: italic;
}
.gm-auth-email {
	color: var(--gm-black) !important;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	border-bottom: 1px solid var(--gm-black) !important;
}

/* Payment icons */
.gm-payment-icons {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}
.gm-pay-icon {
	transition: transform .2s;
}
.gm-pay-icon:hover {
	transform: translateY(-2px);
}

/* ═══════ REVIEWS SECTION ═══════ */
.gm-reviews-section {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px 56px;
}
.gm-reviews__header-row {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 16px;
}
.gm-reviews__title {
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gm-gray-500);
	font-weight: 500;
}
.gm-reviews__arrows {
	display: flex;
	gap: 6px;
}
.gm-reviews__arrow {
	width: 36px;
	height: 36px;
	border: 1px solid var(--gm-gray-200);
	background: var(--gm-white);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all .25s;
	color: var(--gm-black);
	cursor: pointer;
}
.gm-reviews__arrow:hover {
	background: var(--gm-black);
	color: var(--gm-white);
	border-color: var(--gm-black);
}

/* Reviews summary */
.gm-reviews__summary {
	display: flex;
	align-items: center;
	gap: 16px;
	margin-bottom: 24px;
}
.gm-reviews__summary-stars {
	display: flex;
	gap: 2px;
	color: var(--gm-black);
}
.gm-reviews__count {
	font-size: 12px;
	color: var(--gm-gray-500);
}

/* Reviews carousel track */
.gm-reviews__track-wrap {
	overflow: hidden;
}
.gm-reviews__track {
	display: flex;
	gap: 20px;
	transition: transform .45s cubic-bezier(.16, 1, .3, 1);
}

/* Review card */
.gm-review-card {
	min-width: calc(33.333% - 14px);
	border: 1px solid var(--gm-gray-100);
	padding: 24px;
	background: var(--gm-gray-50);
	flex-shrink: 0;
}
.gm-review-card__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}
.gm-review-card__author {
	font-size: 12px;
	font-weight: 500;
	letter-spacing: .5px;
}
.gm-review-card__date {
	font-size: 11px;
	color: var(--gm-gray-400);
}
.gm-review-card__stars {
	display: flex;
	gap: 1px;
	margin-bottom: 10px;
}
.gm-review-card__stars svg {
	width: 12px;
	height: 12px;
	color: var(--gm-black);
}
.gm-review-card__text {
	font-size: 12px;
	line-height: 1.7;
	color: var(--gm-gray-700);
	font-weight: 300;
}
.gm-review-card__verified {
	font-size: 10px;
	color: var(--gm-gray-400);
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-top: 10px;
}
.gm-reviews__empty {
	font-size: 13px;
	color: var(--gm-gray-500);
	padding: 20px 0;
}

/* Reviews dots (mobile) */
.gm-reviews__dots {
	display: none;
	justify-content: center;
	gap: 8px;
	margin-top: 18px;
}
.gm-reviews__dot {
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--gm-gray-300);
	transition: background .3s;
	cursor: pointer;
}
.gm-reviews__dot.active {
	background: var(--gm-black);
}

/* ═══════ RELATED PRODUCTS ═══════ */
.gm-related-section {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 40px 72px;
}
.gm-related__title {
	font-size: 11px;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: var(--gm-gray-500);
	margin-bottom: 28px;
	font-weight: 500;
	text-align: center;
}
.gm-related__grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 20px;
}

/* Related card */
.gm-related-card {
	position: relative;
	cursor: pointer;
	display: block;
}
.gm-related-card__img-wrap {
	aspect-ratio: 1 / 1;
	background: var(--gm-gray-50);
	overflow: hidden;
	border: 1px solid var(--gm-gray-100);
	margin-bottom: 12px;
	position: relative;
}
.gm-related-card__img-wrap img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 12%;
	transition: transform .4s;
}
.gm-related-card:hover .gm-related-card__img-wrap img {
	transform: scale(1.05);
}
.gm-related-card__quick-view {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--gm-black);
	color: var(--gm-white);
	font-size: 10px;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: center;
	padding: 10px;
	opacity: 0;
	transform: translateY(100%);
	transition: all .35s cubic-bezier(.16, 1, .3, 1);
}
.gm-related-card:hover .gm-related-card__quick-view {
	opacity: 1;
	transform: translateY(0);
}
.gm-related-card__name {
	font-size: 12px;
	font-weight: 400;
	margin-bottom: 4px;
	letter-spacing: .3px;
}
.gm-related-card__price {
	font-size: 12px;
	font-weight: 500;
}
.gm-related-card__price-old {
	text-decoration: line-through;
	color: var(--gm-gray-400);
	font-weight: 300;
	margin-left: 8px;
}

/* ═══════ RESPONSIVE — 1024px ═══════ */
@media (max-width: 1024px) {
	.gm-product-section {
		grid-template-columns: 1fr;
		gap: 40px;
		padding: 24px 28px 48px;
	}
	.gm-product-info {
		position: static;
	}
	.gm-breadcrumb,
	.gm-tabs-section,
	.gm-related-section {
		padding-left: 28px;
		padding-right: 28px;
	}
	.gm-reviews-section {
		padding-left: 28px;
		padding-right: 28px;
	}
	.gm-review-card {
		min-width: calc(50% - 10px);
	}
	.gm-related__grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

/* ═══════ RESPONSIVE — 768px ═══════ */
@media (max-width: 768px) {
	.gm-related__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 16px;
	}
}

/* ═══════ RESPONSIVE — 640px ═══════ */
@media (max-width: 640px) {
	.gm-product-section {
		padding: 16px 16px 36px;
		max-width: 100vw;
	}
	.gm-product-info {
		max-width: 100%;
		overflow: hidden;
	}
	.gm-promo-bar {
		max-width: 100%;
		box-sizing: border-box;
	}
	.single-product__payment-methods {
		max-width: 100%;
		box-sizing: border-box;
		overflow: hidden;
	}
	.gm-variants-grid {
		max-width: 100%;
	}
	.gm-delivery-info {
		max-width: 100%;
		overflow: hidden;
	}
	.gm-breadcrumb,
	.gm-tabs-section,
	.gm-related-section {
		padding-left: 16px;
		padding-right: 16px;
	}
	.gm-reviews-section {
		padding-left: 16px;
		padding-right: 16px;
	}
	.gm-review-card {
		min-width: 100%;
	}
	.gm-reviews__dots {
		display: flex;
	}
	.gm-reviews__arrows {
		display: none;
	}
	.gm-product-info__title {
		font-size: 24px;
	}
	.gm-gallery__thumb {
		width: 52px;
		height: 52px;
	}
	.gm-tabs-nav {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
		gap: 0;
		flex-wrap: nowrap;
	}
	.gm-tabs-nav::-webkit-scrollbar {
		display: none;
	}
	.gm-tabs-nav button {
		padding: 12px 14px;
		font-size: 9px;
		letter-spacing: 1.2px;
		white-space: nowrap;
		flex-shrink: 0;
	}
	.gm-tab-panel table {
		display: block;
		width: 100%;
	}
	.gm-tab-panel table tr {
		display: flex;
		flex-direction: column;
		padding: 10px 0;
		border-bottom: 1px solid var(--gm-gray-100);
	}
	.gm-tab-panel table tr:last-child {
		border-bottom: none;
	}
	.single-product__payment-methods {
		display: flex !important;
		flex-direction: row !important;
		flex-wrap: nowrap !important;
		gap: 12px !important;
		margin-bottom: 24px;
		padding: 16px 0;
		border-top: 1px solid #c4c6cf;
		align-items: center !important;
	}
	.gm-tab-panel table td {
		border-bottom: none;
		padding: 2px 0;
		width: 100%;
	}
	.gm-tab-panel table td:first-child {
		font-size: 11px;
		margin-bottom: 2px;
	}
	.gm-tab-panel table td:last-child {
		font-size: 12px;
		color: var(--gm-gray-700);
	}
	.gm-tab-panel p {
		font-size: 12px;
		line-height: 1.8;
	}
	.gm-tab-panel h3 {
		font-size: 13px;
	}
	.gm-related__grid {
		grid-template-columns: repeat(2, 1fr);
		gap: 12px;
	}
	.gm-related-card__name {
		font-size: 10px;
	}
	.gm-related-card__price {
		font-size: 10px;
	}
	.gm-promo-block__top {
		flex-direction: column;
		gap: 4px;
	}
	.gm-promo-block__formula {
		font-size: 24px;
	}
	.gm-promo-timer {
		flex-wrap: wrap;
	}
	.gm-promo-timer__cell {
		width: 42px;
		padding: 5px 0;
	}
	.gm-promo-timer__num {
		font-size: 15px;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════
   GM FULL WIDTH PAGE TEMPLATE
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-page-fullwidth {
	width: 100%;
	max-width: 100%;
	padding: 0;
	margin: 0;
}
.gm-page-fullwidth .entry-content,
.gm-page-fullwidth .entry-content > *,
.gm-page-fullwidth .wp-block-group,
.gm-page-fullwidth .wp-block-cover,
.gm-page-fullwidth .wp-block-image,
.gm-page-fullwidth .wp-block-columns {
	max-width: 100% !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
	box-sizing: border-box;
}
/* Override theme container max-width on fullwidth pages */
.page-template-gm-fullwidth .container,
.page-template-gm-fullwidth .site-main,
.page-template-gm-fullwidth .entry-content,
.page-template-gm-fullwidth .wp-block-group__inner-container {
	max-width: 1320px !important;
	width: 100% !important;
	margin-left: auto !important;
	margin-right: auto !important;
	padding-left: 40px !important;
	padding-right: 40px !important;
	box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO CAROUSEL
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-hero {
	position: relative;
	height: 100vh;
	min-height: 500px;
	overflow: hidden;
}
.gm-hero__slide {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 1.4s ease;
	pointer-events: none;
}
.gm-hero__slide.is-active {
	opacity: 1;
	pointer-events: auto;
}
.gm-hero__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-color: #111;
	transform: scale(1);
	transition: transform 7s ease-out;
}
.gm-hero__slide.is-active .gm-hero__bg {
	transform: scale(1.05);
}
.gm-hero__bg-mobile {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	display: none;
}
.gm-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0,0,0,0.04) 0%, rgba(0,0,0,0.3) 100%);
	pointer-events: none;
}
.gm-hero__content {
	position: absolute;
	bottom: 86px;
	left: 56px;
	z-index: 2;
	max-width: 600px;
}
.gm-hero__subtitle {
	display: block;
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.68);
	font-weight: 500;
	margin-bottom: 12px;
}
.gm-hero__title {
	font-size: 44px;
	font-weight: 300;
	color: #fff;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	margin: 0 0 20px;
	line-height: 1.1;
}
.gm-hero__ctas {
	display: flex;
	gap: 12px;
}
.gm-hero__btn {
	display: inline-block;
	font-size: 10.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 13px 28px;
	cursor: pointer;
	transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.gm-hero__btn--primary {
	background: #fff;
	color: #000;
	border: 1px solid #fff;
}
.gm-hero__btn--primary:hover {
	background: transparent;
	color: #fff;
}
.gm-hero__btn--outline {
	background: transparent;
	color: #fff;
	border: 1px solid rgba(255,255,255,0.4);
}
.gm-hero__btn--outline:hover {
	border-color: #fff;
}
/* ── Hero Promo Slide ── */
.gm-hero__content--promo {
	bottom: auto;
	top: 50%;
	left: 56px;
	right: auto;
	transform: translateY(-50%);
	text-align: left;
	max-width: 700px;
}
.gm-hero__slide--promo.is-active .gm-hero__content--promo {
	opacity: 1;
	transform: translateY(-50%);
}
.gm-hero__promo-label {
	display: block;
	font-size: 12px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.7);
	margin-bottom: 16px;
}
.gm-hero__promo-heading {
	font-size: clamp(60px, 10vw, 120px);
	font-weight: 700;
	color: #fff;
	line-height: 0.9;
	text-transform: uppercase;
	margin: 0 0 16px;
}
.gm-hero__promo-text {
	font-size: clamp(24px, 5vw, 48px);
	font-weight: 700;
	color: #fff;
	letter-spacing: 0.06em;
	margin-bottom: 20px;
}
.gm-hero__promo-body {
	font-size: 14px;
	color: rgba(255,255,255,0.8);
	line-height: 1.7;
	max-width: 560px;
	margin: 0 0 28px;
}
.gm-hero__btn--white {
	display: inline-block;
	padding: 14px 40px;
	background: #fff;
	color: #000;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	transition: background 0.3s, color 0.3s;
}
.gm-hero__btn--white:hover {
	background: #000;
	color: #fff;
}
.gm-hero__timer-wrap {
	margin-top: 32px;
}
.gm-hero__timer-label {
	display: block;
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
	margin-bottom: 12px;
}
.gm-hero__timer {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}
.gm-hero__timer-block {
	min-width: 74px;
	border: 1px solid rgba(255,255,255,0.12);
	border-radius: 6px;
	padding: 18px 12px;
	background: rgba(255,255,255,0.08);
	text-align: center;
}
.gm-hero__timer-value {
	display: block;
	font-size: 42px;
	font-weight: 700;
	color: #fff;
	line-height: 1;
}
.gm-hero__timer-unit {
	display: block;
	font-size: 9px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
	margin-top: 6px;
}
.gm-hero__timer-sep {
	font-size: 32px;
	font-weight: 700;
	color: rgba(255,255,255,0.4);
	line-height: 1;
}

.gm-hero__dots {
	position: absolute;
	bottom: 36px;
	right: 56px;
	display: flex;
	align-items: center;
	gap: 6px;
	z-index: 3;
}
.gm-hero__dot {
	width: 7px;
	height: 2.5px;
	background: rgba(255,255,255,0.35);
	border: none;
	cursor: pointer;
	transition: width 0.35s ease, background 0.35s ease;
	padding: 0;
}
.gm-hero__dot.is-active {
	width: 24px;
	background: #fff;
}

/* Fade-in animation */
.gm-hero__subtitle,
.gm-hero__title,
.gm-hero__ctas {
	opacity: 0;
	transform: translateY(18px);
}
.gm-hero__slide.is-active .gm-hero__subtitle {
	transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
	opacity: 1;
	transform: none;
}
.gm-hero__slide.is-active .gm-hero__title {
	transition: opacity 0.7s 0.5s, transform 0.7s 0.5s;
	opacity: 1;
	transform: none;
}
.gm-hero__slide.is-active .gm-hero__ctas {
	transition: opacity 0.7s 0.7s, transform 0.7s 0.7s;
	opacity: 1;
	transform: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   PRODUCT SLIDER
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-homepage > *:not(:first-child),
.gm-page-fullwidth > *:not(:first-child) {
	margin-top: 6px;
}
.gm-slider {
	padding: 84px 0 44px;
	margin-top: 0 !important;
}
.gm-slider__header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	padding: 0 48px 28px;
	flex-wrap: wrap;
	gap: 12px;
}
.gm-slider__title {
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	line-height: 1;
	color: #000;
	margin: 0;
}
.gm-slider__view-all {
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	text-decoration: none;
	color: #888;
	border-bottom: 1px solid #ccc;
	padding-bottom: 2px;
	transition: color 0.3s, border-color 0.3s;
}
.gm-slider__view-all:hover {
	color: #000;
	border-color: #000;
}
.gm-slider__controls {
	display: flex;
	align-items: center;
	gap: 12px;
}
.gm-slider__arrow {
	width: 32px;
	height: 32px;
	border: 1px solid var(--gm-gray-200);
	background: none;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	color: var(--gm-black);
	transition: border-color 0.2s, opacity 0.2s;
}
.gm-slider__arrow:hover { border-color: var(--gm-black); }
.gm-slider__arrow:disabled { opacity: 0.25; cursor: default; }
.gm-slider__track-wrap {
	position: relative;
	padding: 10px;
}
.gm-slider__track {
	display: flex;
	overflow-x: auto;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	gap: 16px;
	padding: 0 48px;
}
.gm-slider__track::-webkit-scrollbar {
	display: none;
}

/* ── Slider Card (reuses gm-pcard from catalog) ──────────────────────────── */
.gm-slider__card {
	scroll-snap-align: start;
	flex: 0 0 calc((100vw - 96px - 64px) / 5);
	min-width: 180px;
}
.gm-product-card__img-wrap {
	position: relative;
	overflow: hidden;
	aspect-ratio: 1 / 1;
	background: #f5f5f5;
	display: block;
}
.gm-slider[data-lookbook="1"] .gm-product-card__img-wrap {
	aspect-ratio: 3 / 4;
}
.gm-product-card__img-link img,
.gm-product-card__main-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	padding: 12%;
	display: block;
	transition: transform 0.7s ease;
}
.gm-slider[data-lookbook="1"] .gm-product-card__img-link img,
.gm-slider[data-lookbook="1"] .gm-product-card__main-img {
	object-fit: cover;
	padding: 0;
}
.gm-product-card:hover .gm-product-card__img-link img,
.gm-product-card:hover .gm-product-card__main-img {
	transform: scale(1.04);
}
.gm-product-card__lookbook-img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0;
	transition: opacity 0.4s ease;
}
.gm-product-card:hover .gm-product-card__lookbook-img {
	opacity: 1;
}
.gm-product-card__tag {
	position: absolute;
	top: 10px;
	left: 10px;
	background: rgba(255,255,255,0.9);
	color: #000;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 3px 8px;
	z-index: 2;
}
.gm-product-card__wishlist {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 2;
	background: none;
	border: none;
	cursor: pointer;
	padding: 4px;
	color: #999;
	transition: color 0.2s;
}
.gm-product-card__wishlist:hover,
.gm-product-card__wishlist[aria-pressed="true"] {
	color: #000;
}
.gm-product-card__wishlist[aria-pressed="true"] svg {
	fill: #000;
}
.gm-product-card__body {
	padding: 11px 2px 0;
}
.gm-product-card__name {
	font-size: 12.5px;
	font-weight: 500;
	letter-spacing: 0.01em;
	margin: 0;
	color: #000;
}
.gm-product-card__name a {
	color: inherit;
	text-decoration: none;
}
.gm-product-card__cat {
	font-size: 10.5px;
	color: #999;
	margin: 2px 0 0;
}
.gm-product-card__price {
	display: flex;
	align-items: center;
	gap: 6px;
	margin: 4px 0 0;
}
.gm-product-card__price .woocommerce-Price-amount {
	font-size: 12.5px;
	font-weight: 400;
	color: #000;
}
.gm-product-card__price del .woocommerce-Price-amount {
	font-size: 11px;
	color: #bbb;
}
.gm-product-card__price ins {
	text-decoration: none;
}
.gm-product-card__add {
	display: none;
}
.gm-product-card__sale-badge,
.gm-product-card__oos-badge {
	position: absolute;
	top: 10px;
	left: 10px;
	font-size: 9px;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	padding: 3px 8px;
	z-index: 2;
}
.gm-product-card__sale-badge {
	background: #c0392b;
	color: #fff;
}
.gm-product-card__oos-badge {
	background: rgba(0,0,0,0.6);
	color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-stats {
	background: #000;
	color: #fff;
}
.gm-stats__grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
}
.gm-stat {
	padding: clamp(28px, 5vw, 40px) clamp(20px, 4vw, 32px);
	border-right: 1px solid #333;
	display: flex;
	flex-direction: column;
	gap: 6px;
}
.gm-stat:last-child {
	border-right: none;
}
.gm-stat__num {
	font-size: clamp(44px, 6vw, 56px);
	font-weight: 300;
	line-height: 1;
	color: rgba(255,255,255,0.5);
}
.gm-stat__label {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}
.gm-stat__desc {
	font-size: 12px;
	color: #8e8e8e;
	font-weight: 300;
	line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════════════════════════
   EDITORIAL
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-editorial__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.gm-editorial__image-col {
	overflow: hidden;
	height: 520px;
}
.gm-editorial__image-col img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.gm-editorial__content {
	padding: clamp(36px, 6vw, 60px) clamp(24px, 6vw, 56px);
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.gm-editorial__subtitle {
	font-size: 10px;
	letter-spacing: 0.2em;
	text-transform: uppercase;
	color: #999;
	margin-bottom: 14px;
}
.gm-editorial__title {
	font-size: clamp(28px, 4vw, 40px);
	font-weight: 300;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	margin: 0 0 16px;
	line-height: 1.15;
}
.gm-editorial__text {
	font-size: 14px;
	color: #666;
	line-height: 1.75;
	font-weight: 300;
	max-width: 420px;
	margin-bottom: 28px;
}
/* Reversed layout */
.gm-editorial__grid--reversed .gm-editorial__image-col {
	order: 2;
}
.gm-editorial__grid--reversed .gm-editorial__content {
	order: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CALLOUT BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-callout {
	position: relative;
	overflow: hidden;
}
.gm-callout__bg {
	position: absolute;
	inset: 0;
	background-size: cover;
	background-position: center;
	background-color: #111;
	z-index: 0;
}
.gm-callout__overlay {
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,0.55);
	z-index: 1;
	pointer-events: none;
}
.gm-callout__inner {
	position: relative;
	z-index: 2;
	padding: clamp(72px, 12vw, 140px) 48px;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
}
.gm-callout__heading {
	font-size: clamp(40px, 7vw, 80px);
	font-weight: 300;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 0.93;
	color: #fff;
	margin-bottom: 20px;
}
.gm-callout__sub {
	font-size: clamp(13px, 1.2vw, 15px);
	color: rgba(255,255,255,0.55);
	font-weight: 300;
	line-height: 1.7;
	max-width: 480px;
	margin-bottom: 36px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   DUAL BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-dual {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 6px;
}
.gm-dual__card {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	text-decoration: none;
	display: block;
}
.gm-dual__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s ease;
}
.gm-dual__card:hover .gm-dual__img {
	transform: scale(1.04);
}
.gm-dual__img--mobile { display: none; }
.gm-dual__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 55%, rgba(0,0,0,0.36));
	pointer-events: none;
}
.gm-dual__content {
	position: absolute;
	bottom: 30px;
	left: 26px;
	z-index: 2;
}
.gm-dual__title {
	font-size: 26px;
	font-weight: 300;
	color: #fff;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 9px;
}
.gm-dual__link {
	font-size: 10.5px;
	letter-spacing: 0.14em;
	color: #fff;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	padding-bottom: 2px;
	text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BLEED BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-bleed {
	position: relative;
	height: var(--bleed-h, 90vh);
	overflow: hidden;
}
.gm-bleed__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1.6s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gm-bleed__img--mobile {
	display: none;
}
.gm-bleed:hover .gm-bleed__img {
	transform: scale(1.03);
}
.gm-bleed--dark .gm-bleed__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 40%, rgba(0,0,0,0.4));
	pointer-events: none;
}
.gm-bleed--light .gm-bleed__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 50%, rgba(0,0,0,0.15));
	pointer-events: none;
}
.gm-bleed__content {
	position: absolute;
	bottom: 50px;
	left: 56px;
	z-index: 2;
	max-width: 500px;
}
.gm-bleed__subtitle {
	font-size: 11px;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: rgba(255,255,255,0.68);
	margin-bottom: 10px;
}
.gm-bleed__title {
	font-size: 40px;
	font-weight: 300;
	color: #fff;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 18px;
	line-height: 1.1;
}
.gm-bleed__cta {
	display: inline-block;
	font-size: 10.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	text-decoration: none;
	color: #fff;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	padding-bottom: 2px;
}
.gm-bleed__cta:hover {
	border-color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRIPLE BANNER
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-triple {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap: 6px;
}
.gm-triple__card {
	position: relative;
	overflow: hidden;
	aspect-ratio: 4 / 5;
	text-decoration: none;
	display: block;
}
.gm-triple__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 1s ease;
}
.gm-triple__card:hover .gm-triple__img {
	transform: scale(1.04);
}
.gm-triple__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 55%, rgba(0,0,0,0.36));
	pointer-events: none;
}
.gm-triple__content {
	position: absolute;
	bottom: 30px;
	left: 26px;
	z-index: 2;
}
.gm-triple__title {
	font-size: 26px;
	font-weight: 300;
	color: #fff;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 9px;
}
.gm-triple__link {
	font-size: 10.5px;
	letter-spacing: 0.14em;
	color: #fff;
	text-transform: uppercase;
	border-bottom: 1px solid rgba(255,255,255,0.4);
	padding-bottom: 2px;
	text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════════════════════
   LOOKBOOK GRID
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-lookbook__grid {
	display: grid;
	grid-template-columns: 1.4fr 1fr;
	grid-template-rows: 1fr 1fr;
	gap: 6px;
	min-height: 82vh;
}
.gm-lookbook__cell--large {
	grid-row: 1 / 3;
}
.gm-lookbook__cell {
	overflow: hidden;
}
.gm-lookbook__img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.8s ease;
}
.gm-lookbook__cell:hover .gm-lookbook__img {
	transform: scale(1.03);
}
.gm-lookbook__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(transparent 50%, rgba(0,0,0,0.4));
	pointer-events: none;
	z-index: 1;
}
.gm-lookbook__cell {
	position: relative;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NEWSLETTER
   ═══════════════════════════════════════════════════════════════════════════ */
.gm-newsletter {
	padding: 84px 48px;
	text-align: center;
}
.gm-newsletter__inner {
	max-width: 380px;
	margin: 0 auto;
}
.gm-newsletter__heading {
	font-size: 28px;
	font-weight: 300;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	margin: 0 0 8px;
}
.gm-newsletter__sub {
	font-size: 13px;
	color: #888;
	line-height: 1.6;
	margin: 0 0 26px;
}
.gm-newsletter__form {
	max-width: 380px;
	margin: 0 auto;
}
.gm-newsletter__field {
	display: flex;
	border-bottom: 1px solid #ccc;
}
.gm-newsletter__input {
	flex: 1;
	border: none;
	padding: 10px 0;
	font-size: 13px;
	outline: none;
	background: transparent;
}
.gm-newsletter__input::placeholder {
	color: #bbb;
	letter-spacing: 0.06em;
}
.gm-newsletter__submit {
	background: none;
	color: #000;
	border: none;
	padding: 12px 18px;
	cursor: pointer;
	font-size: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}
.gm-newsletter__submit:hover {
	opacity: 0.6;
}
.gm-newsletter__success {
	font-size: 13px;
	color: #4a4;
	margin-top: 12px;
	display: none;
}
.gm-newsletter__success.is-visible {
	display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════════════════ */
[data-animate] {
	opacity: 0;
	transform: translateY(22px);
	transition: opacity 0.7s ease, transform 0.7s ease;
}
[data-animate].is-visible {
	opacity: 1;
	transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════════════════════
   HOMEPAGE RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
	.gm-slider__card {
		flex: 0 0 calc((100vw - 96px - 18px) / 4);
		min-width: 160px;
	}
}

@media (max-width: 767px) {
	/* Hero */
	.gm-hero {
		height: auto;
		min-height: 85vh;
	}
	.gm-hero__content {
		bottom: 68px;
		left: 24px;
	}
	.gm-hero__title {
		font-size: 28px;
	}
	.gm-hero__bg {
		display: none;
	}
	.gm-hero__bg-mobile {
		display: block;
	}
	.gm-hero__dots {
		right: 24px;
		bottom: 28px;
	}
	.gm-hero__content--promo {
		left: 24px;
		max-width: 90%;
	}
	.gm-hero__timer-block {
		min-width: 60px;
		padding: 12px 8px;
	}
	.gm-hero__timer-value {
		font-size: 30px;
	}
	.gm-hero__timer-sep {
		font-size: 24px;
	}

	/* Slider */
	.gm-slider {
		padding: 10px;
	}
	.gm-slider__header {
		padding: 0 20px 18px;
	}
	.gm-slider__title {
		font-size: 12px;
	}
	.gm-slider__arrow { display: none; }
	.gm-slider__track-wrap { padding: 0 0 0 10px; }
	.gm-slider__track {
		padding: 0;
		gap: 10px;
	}
	/* Mobile grid mode */
	.gm-slider--mobile-grid .gm-slider__track-wrap { padding: 0 10px; }
	.gm-slider--mobile-grid .gm-slider__track {
		display: grid;
		grid-template-columns: repeat(var(--gm-mobile-cols, 2), 1fr);
		overflow-x: visible;
		scroll-snap-type: none;
		gap: 10px;
	}
	.gm-slider--mobile-grid .gm-slider__card {
		flex: none;
		width: 100%;
		min-width: 0;
	}
	.gm-slider__card {
		flex: 0 0 44vw;
		min-width: 140px;
	}

	/* Stats */
	.gm-stats__grid {
		grid-template-columns: 1fr;
	}
	.gm-stat {
		border-right: none;
		border-bottom: 1px solid #222;
	}
	.gm-stat:last-child {
		border-bottom: none;
	}

	/* Editorial */
	.gm-editorial__grid,
	.gm-editorial__grid--reversed {
		grid-template-columns: 1fr;
	}
	.gm-editorial__image-col {
		order: 1 !important;
		height: 72vw;
	}
	.gm-editorial__content {
		order: 2 !important;
		padding: 36px 20px 40px;
	}

	/* Dual */
	.gm-dual {
		grid-template-columns: 1fr;
	}
	.gm-dual__card {
		aspect-ratio: 3 / 4;
	}
	.gm-dual__img--desktop { display: none; }
	.gm-dual__img--mobile { display: block; }
	.gm-dual__title {
		font-size: 22px;
	}

	/* Triple */
	.gm-triple {
		grid-template-columns: 1fr;
	}
	.gm-triple__card {
		aspect-ratio: 1 / 1;
	}
	.gm-triple__title {
		font-size: 22px;
	}

	/* Bleed */
	.gm-bleed {
		height: var(--bleed-h-mob, 75vh);
	}
	.gm-bleed__img--desktop {
		display: none;
	}
	.gm-bleed__img--mobile {
		display: block;
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	.gm-bleed__content {
		bottom: 30px;
		left: 24px;
	}
	.gm-bleed__title {
		font-size: 28px;
	}

	/* Lookbook */
	.gm-lookbook__grid {
		grid-template-columns: 1fr;
		grid-template-rows: auto;
		min-height: auto;
	}
	.gm-lookbook__cell--large {
		grid-row: auto;
	}

	/* Newsletter */
	.gm-newsletter {
		padding: 52px 20px;
	}
	.gm-newsletter__heading {
		font-size: 18px;
	}
}
