:root {
  --navy: #171a3a;
  --fg: #111111;
  --muted: #6b6b6b;
  --bg: #fafaf8;
  --bg-2: #f3f3ef;
  --border: #e6e6e2;
  --accent: #3d5afe;
  --card: #ffffff;
  --danger: #b91c1c;
  --radius: 10px;
  --radius-lg: 14px;
  --shadow: 0 1px 2px rgba(17, 17, 17, 0.04), 0 8px 24px rgba(17, 17, 17, 0.04);
  --font: "Manrope", "Segoe UI", system-ui, sans-serif;
  --header-h: 64px;
  --announce-h: 36px;
  --bottom-h: 64px;
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body.g-body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.5;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.g-wrap {
  width: min(1200px, calc(100% - 2rem));
  margin: 0 auto;
}

.g-announce {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
  min-height: var(--announce-h);
}

.g-announce p {
  margin: 0;
}

.g-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.g-header-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header-h);
}

.g-logo {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--navy);
}

.g-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: 0.5rem;
}

.g-nav-link {
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--fg);
}

.g-nav-link:hover,
.g-nav-link.is-on {
  background: var(--bg-2);
}

.g-header-tools {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.g-sell-link {
  display: none;
  margin-left: 0.35rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.84rem;
  font-weight: 650;
  color: var(--navy);
}

.g-icon-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: var(--fg);
}

.g-icon-btn:hover,
.g-icon-btn:focus-visible {
  background: var(--bg-2);
  outline: none;
}

.g-icon-btn svg {
  width: 18px;
  height: 18px;
}

.g-icon-btn.solid {
  background: var(--navy);
  color: #fff;
}

.g-count {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  display: none;
}

.g-count.is-on {
  display: block;
}

.g-menu-btn {
  display: inline-grid;
}

.g-search-bar {
  padding-bottom: 0.75rem;
}

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

.g-search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  height: 44px;
  padding: 0 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.g-search svg {
  width: 18px;
  height: 18px;
  color: var(--muted);
  flex: 0 0 auto;
}

.g-search input {
  flex: 1;
  border: 0;
  outline: 0;
  background: transparent;
  min-width: 0;
  font-size: 0.95rem;
  font-weight: 500;
}

.g-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0 0.85rem;
}

.g-mobile-nav:not([hidden]) {
  display: flex;
}

.g-mobile-nav a,
.g-mobile-nav button {
  text-align: left;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  font-weight: 600;
  background: var(--bg-2);
}

/* Buttons */
.g-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 1.15rem;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease;
}

.g-btn:hover {
  background: #10132c;
}

.g-btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.g-btn-outline:hover {
  background: var(--bg-2);
}

.g-btn-accent {
  background: var(--accent);
}

.g-btn-ghost {
  background: #fff;
  color: var(--navy);
  border: 1px solid var(--border);
}

/* Hero */
.g-hero {
  display: grid;
  gap: 1.5rem;
  padding: 1.5rem 0 0.5rem;
}

.g-kicker {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.g-hero-copy h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--navy);
  max-width: 12ch;
}

.g-hero-lede {
  margin: 0 0 1.35rem;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 36rem;
  font-weight: 500;
}

.g-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.g-hero-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  aspect-ratio: 4 / 5;
}

.g-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
}

/* Sections */
.g-section {
  padding: 2.25rem 0 0.5rem;
}

.g-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.g-section-head h2 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 750;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.g-section-meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.g-section-lede {
  margin: -0.35rem 0 1rem;
  color: var(--muted);
  max-width: 40rem;
}

.g-cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.g-cat-tile {
  position: relative;
  display: grid;
  place-items: end start;
  min-height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-2);
  text-align: left;
  padding: 1.1rem;
}

.g-cat-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.88;
}

.g-cat-tile span {
  position: relative;
  z-index: 1;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  background: rgba(250, 250, 248, 0.94);
  font-weight: 750;
  color: var(--navy);
}

.g-vto-band {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--navy);
  color: #fff;
}

.g-vto-band .g-kicker {
  color: rgba(255, 255, 255, 0.55);
}

.g-vto-band h2 {
  margin: 0 0 0.55rem;
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.02em;
}

.g-vto-band p {
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 36rem;
}

.g-vto-band .g-btn {
  background: #fff;
  color: var(--navy);
}

.g-seller-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.g-seller-cta h2 {
  margin: 0 0 0.35rem;
  color: var(--navy);
}

.g-seller-cta p {
  margin: 0;
  color: var(--muted);
  max-width: 36rem;
}

/* Shop layout / filters */
.g-shop-layout {
  display: grid;
  gap: 1.25rem;
}

.g-filters-side {
  display: none;
}

.g-filters-title {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  font-weight: 750;
}

.g-filter-group {
  margin-bottom: 1.1rem;
}

.g-label {
  margin: 0 0 0.45rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}

.g-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.g-chip {
  min-height: 34px;
  padding: 0 0.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  font-size: 0.84rem;
  font-weight: 600;
}

.g-chip.is-on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.g-sort-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
}

.g-sort select {
  min-height: 36px;
  padding: 0 0.7rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 600;
  font-size: 0.84rem;
}

.g-filter-open {
  display: inline-flex;
  min-height: 36px;
  padding: 0 0.85rem;
  font-size: 0.84rem;
}

/* Product grid / cards */
.g-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 0.7rem;
}

.g-card {
  display: flex;
  flex-direction: column;
  background: transparent;
}

.g-card-art {
  position: relative;
  aspect-ratio: 1 / 1.08;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  overflow: hidden;
}

.g-card-media {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 1.1rem;
}

.g-card-photo,
.g-card-art svg {
  width: min(100%, 220px);
  max-height: 72%;
  object-fit: contain;
  color: #222;
  transition: transform 0.25s ease;
}

.g-card:hover .g-card-photo {
  transform: scale(1.03);
}

.g-heart {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  display: grid;
  place-items: center;
  background: rgba(250, 250, 248, 0.92);
  color: var(--fg);
}

.g-heart svg {
  width: 16px;
  height: 16px;
}

.g-heart.is-on {
  color: #c21b4a;
}

.g-heart.is-on svg {
  fill: currentColor;
}

.g-card-vto {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
}

.g-card:hover .g-card-vto {
  display: flex;
}

.g-card-body {
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem 0.15rem 0.2rem;
}

.g-brand {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.g-card-body h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.g-price {
  margin: 0.15rem 0 0;
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--fg);
}

.g-seller-meta {
  margin: 0.15rem 0 0;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 550;
}

.g-seller-meta:hover {
  color: var(--navy);
}

/* Stores / brands */
.g-store-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.g-store-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  min-height: 150px;
}

.g-store-card h3 {
  margin: 0.15rem 0;
  font-size: 1.1rem;
  color: var(--navy);
}

.g-store-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.g-store-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.84rem;
  font-weight: 650;
}

.g-store-cta {
  color: var(--navy);
}

.g-store-hero {
  padding: 1.35rem 0 0.5rem;
}

.g-store-hero h1 {
  margin: 0.2rem 0;
  font-size: clamp(1.6rem, 4vw, 2.3rem);
  color: var(--navy);
}

.g-store-tagline {
  margin: 0;
  color: var(--muted);
}

.g-brand-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.g-brand-chip {
  min-height: 40px;
  padding: 0 0.95rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 650;
}

.g-brand-chip:hover {
  border-color: var(--navy);
}

/* Footer / bottom nav */
.g-footer {
  margin-top: 2.5rem;
  padding: 2.25rem 0 calc(2rem + var(--bottom-h));
  border-top: 1px solid var(--border);
}

.g-footer-grid {
  display: grid;
  gap: 1.5rem;
}

.g-footer strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.g-footer p {
  margin: 0 0 0.3rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.g-bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 55;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  min-height: var(--bottom-h);
  padding: 0.35rem 0.35rem calc(0.35rem + env(safe-area-inset-bottom, 0));
  background: rgba(250, 250, 248, 0.96);
  border-top: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

.g-bottom-nav a,
.g-bottom-nav button {
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--muted);
  padding: 0.35rem;
}

.g-bottom-nav .is-on,
.g-bottom-vto {
  color: var(--navy);
}

.g-bottom-vto span {
  padding: 0.25rem 0.45rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
}

/* Drawer */
.g-drawer {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: rgba(17, 17, 17, 0.35);
}

.g-drawer[hidden] {
  display: none !important;
}

.g-drawer-panel {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 82vh;
  overflow: auto;
  background: #fff;
  border-radius: 16px 16px 0 0;
  padding: 1rem 1rem 1.5rem;
}

.g-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

/* Shared pages */
.g-page-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0 0.75rem;
}

.g-page-head h1 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--navy);
}

.g-clear {
  min-height: 36px;
  padding: 0 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 650;
  font-size: 0.84rem;
}

.g-empty {
  text-align: center;
  padding: 2.5rem 1rem;
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.g-empty h1,
.g-empty h2 {
  margin: 0 0 0.45rem;
  color: var(--navy);
  font-size: 1.25rem;
}

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

.g-crumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 1rem 0 0.25rem;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 550;
}

.g-product {
  display: grid;
  gap: 1.25rem;
  padding: 0.5rem 0 2rem;
}

.g-stage {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 340px;
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  overflow: hidden;
}

.g-stage-photo,
.g-stage > svg {
  width: min(78%, 420px);
  max-height: 420px;
  object-fit: contain;
}

.g-stage-bar {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.g-badge {
  min-height: 28px;
  padding: 0 0.7rem;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-grid;
  place-items: center;
}

.g-stage-tools {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
}

.g-vto-pill {
  min-height: 42px;
  padding: 0 1.1rem;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  font-weight: 750;
}

.g-product-body {
  display: grid;
  gap: 1rem;
}

.g-product-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
}

.g-product-body h1 {
  margin: 0.15rem 0 0;
  font-size: clamp(1.45rem, 3vw, 2rem);
  color: var(--navy);
}

.g-product-price strong {
  font-size: 1.3rem;
}

.g-rating {
  display: none;
}

.g-desc {
  margin: 0;
  color: #444;
}

.g-seller-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.g-opts {
  display: grid;
  gap: 1rem;
}

.g-sizes,
.g-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.g-size {
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  font-weight: 700;
}

.g-size.is-on {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

.g-swatch {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px #ccc;
}

.g-swatch.is-on {
  box-shadow: 0 0 0 2px var(--navy);
}

.g-qty-row {
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.g-stepper {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
}

.g-stepper button {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  font-weight: 700;
}

.g-stepper span {
  min-width: 24px;
  text-align: center;
  font-weight: 700;
}

.g-buyrow {
  display: grid;
  gap: 0.55rem;
}

.g-hint {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.g-error {
  margin: 0;
  color: var(--danger);
  font-size: 0.88rem;
}

/* Cart */
.g-cart-group {
  margin-bottom: 0.85rem;
}

.g-cart-seller {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 750;
  color: var(--navy);
}

.g-cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.g-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 0.8rem;
  align-items: center;
  padding: 0.85rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.g-item-art {
  display: grid;
  place-items: center;
  width: 72px;
  height: 56px;
  border-radius: 8px;
  background: var(--bg-2);
}

.g-item-art img,
.g-item-art svg {
  width: 56px;
  height: 40px;
  object-fit: contain;
}

.g-item h2 {
  margin: 0;
  font-size: 0.98rem;
}

.g-item-side {
  text-align: right;
  display: grid;
  gap: 0.3rem;
}

.g-item .remove {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 650;
}

.g-sum {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
}

.g-sum-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.g-sum-row.total {
  font-size: 1.08rem;
  margin-bottom: 0.85rem;
}

.g-sum-free {
  color: #15803d;
  font-weight: 700;
}

.g-checkout {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.g-checkout h3 {
  margin: 0;
  font-size: 1rem;
  color: var(--navy);
}

.g-checkout label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.82rem;
  font-weight: 650;
  color: #444;
}

.g-checkout input,
.g-checkout textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem 0.8rem;
  background: var(--bg);
}

.g-checkout-note {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.g-toast {
  position: fixed;
  left: 50%;
  bottom: calc(var(--bottom-h) + 16px);
  transform: translateX(-50%) translateY(12px);
  z-index: 80;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
  font-weight: 650;
  opacity: 0;
  pointer-events: none;
  transition: 0.2s ease;
}

.g-toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.g-ribbon,
.g-promo-grid,
.g-promo,
.g-tryon-badge,
.g-avatar,
.g-dot-alert,
.g-greet,
.g-stats,
.g-stat {
  display: none !important;
}

@media (min-width: 900px) {
  .g-nav {
    display: flex;
  }

  .g-sell-link {
    display: inline-flex;
  }

  .g-menu-btn,
  .g-bottom-nav,
  .g-filter-open {
    display: none !important;
  }

  .g-mobile-nav {
    display: none !important;
  }

  .g-footer {
    padding-bottom: 2.5rem;
  }

  .g-toast {
    bottom: 24px;
  }

  .g-hero {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
  }

  .g-hero-visual {
    aspect-ratio: 4 / 5;
    max-height: 560px;
  }

  .g-cat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .g-shop-layout {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 1.75rem;
    align-items: start;
  }

  .g-filters-side {
    display: block;
    position: sticky;
    top: calc(var(--header-h) + 12px);
  }

  .g-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.15rem 1rem;
  }

  .g-card-vto {
    opacity: 0;
    display: flex;
    transition: opacity 0.2s ease;
  }

  .g-card:hover .g-card-vto {
    opacity: 1;
  }

  .g-store-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .g-footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .g-product {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2rem;
    align-items: start;
  }

  .g-stage {
    min-height: 520px;
  }

  .g-buyrow {
    grid-template-columns: 1fr 1.15fr;
  }

  .g-search-bar {
    display: block !important;
  }

  .g-search-bar[hidden] {
    display: block !important;
  }

  [data-search-toggle] {
    display: none;
  }
}

@media (min-width: 1100px) {
  .g-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 899px) {
  .g-card-vto {
    display: flex;
    font-size: 0.72rem;
    min-height: 32px;
  }
}
