@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&display=swap");

:root {
  --gm-ink: #14181f;
  --gm-body: #3d4450;
  --gm-muted: #6b7280;
  --gm-line: #e3e5e8;
  --gm-soft: #f5f6f7;
  --gm-page: #fbfbfa;
  --gm-navy: #10233f;
  --gm-navy-2: #1b3a63;
  --gm-amber: #f2b705;
  --gm-green: #1f7a44;
  --gm-radius: 10px;
  --gm-font: "Archivo", "Helvetica Neue", Arial, sans-serif;
}

html.gm-store,
body.gm-store {
  background: var(--gm-page) !important;
  color: var(--gm-ink) !important;
  font-family: var(--gm-font) !important;
}

body.gm-store :is(h1, h2, h3, h4, h5, h6, p, a, span, li, strong, em, small, b, button, input, select, label, summary, details) {
  font-family: var(--gm-font) !important;
}

body.gm-store :is(h1, h2, h3, h4) {
  color: var(--gm-ink) !important;
  text-transform: none !important;
  letter-spacing: -0.015em !important;
}

.gm-store svg[viewBox="0 0 24 24"] {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Announcement */
.gm-announce {
  position: relative;
  height: 36px;
  overflow: hidden;
  background: var(--gm-navy);
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.gm-announce > span {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gm-announce > span.is-on { opacity: 1; transform: none; }
.gm-announce a { color: var(--gm-amber); font-weight: 700; margin-left: 4px; text-decoration: none; }
html:not(.gm-js) .gm-announce > span:first-child { opacity: 1; transform: none; }

/* Header */
.gm-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: #fff;
  border-bottom: 1px solid var(--gm-line);
  transition: box-shadow 0.2s ease;
}

.gm-header.is-scrolled { box-shadow: 0 6px 20px rgba(16, 35, 63, 0.08); }

.gm-header-bar {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.gm-logo { flex: 0 0 auto; display: flex; }
.gm-logo img { height: 34px; width: auto; display: block; }

.gm-search {
  position: relative;
  flex: 1 1 auto;
  max-width: 560px;
  display: flex;
  align-items: center;
}

.gm-search > svg {
  position: absolute;
  left: 14px;
  width: 18px;
  height: 18px;
  color: var(--gm-muted);
  pointer-events: none;
}

.gm-search input {
  width: 100%;
  height: 44px;
  padding: 0 14px 0 42px;
  border: 1px solid #d7dadf !important;
  border-radius: 999px !important;
  background: var(--gm-soft) !important;
  color: var(--gm-ink) !important;
  font-size: 15px !important;
  outline: none;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.gm-search input:focus {
  background: #fff !important;
  border-color: var(--gm-navy-2) !important;
  box-shadow: 0 0 0 4px rgba(27, 58, 99, 0.12);
}

.gm-search-results {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 70;
  background: #fff;
  border: 1px solid var(--gm-line);
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(16, 24, 40, 0.16);
  padding: 6px;
  max-height: 70vh;
  overflow: auto;
}

.gm-search-results a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  border-radius: 10px;
  color: var(--gm-ink);
  text-decoration: none;
}

.gm-search-results a:hover { background: var(--gm-soft); }

.gm-search-results img {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  object-fit: contain;
  background: var(--gm-soft);
  border-radius: 8px;
}

.gm-search-results strong {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
}

.gm-search-results em { display: block; font-style: normal; color: var(--gm-muted); font-size: 13px; }

.gm-search-results .gm-search-all {
  justify-content: center;
  margin-top: 4px;
  border-top: 1px solid var(--gm-line);
  border-radius: 0 0 10px 10px;
  color: var(--gm-navy-2);
  font-weight: 700;
  font-size: 14px;
}

.gm-search-empty { margin: 0; padding: 14px; color: var(--gm-muted); font-size: 14px; }

.gm-tools { display: flex; align-items: center; gap: 6px; margin-left: auto; flex: 0 0 auto; }

.gm-tool {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--gm-ink) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
}

.gm-tool:hover { background: var(--gm-soft); }
.gm-tool svg, .gm-cart svg { width: 20px; height: 20px; }

body.gm-store .btn-cart-trigger.gm-cart {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: auto !important;
  height: 42px !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--gm-navy) !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  cursor: pointer;
}

body.gm-store .btn-cart-trigger.gm-cart:hover { background: var(--gm-navy-2) !important; }

body.gm-store .gm-cart .cart-badge-count {
  position: static !important;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 10px;
  background: var(--gm-amber) !important;
  color: var(--gm-navy) !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 20px;
  text-align: center;
}

.gm-nav { border-top: 1px solid #f0f1f3; }

.gm-nav-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gm-nav-inner a {
  position: relative;
  flex: 0 0 auto;
  padding: 13px 12px;
  color: var(--gm-body) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
}

.gm-nav-inner a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 0;
  height: 2px;
  background: var(--gm-navy);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.gm-nav-inner a:hover { color: var(--gm-ink) !important; }
.gm-nav-inner a:hover::after, .gm-nav-inner a[aria-current="page"]::after { transform: scaleX(1); }
.gm-nav-inner a[aria-current="page"] { color: var(--gm-ink) !important; }
.gm-nav-note { margin-left: auto; flex: 0 0 auto; color: var(--gm-muted); font-size: 13px; padding-left: 16px; }

.gm-menu-btn {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 1px solid var(--gm-line);
  border-radius: 999px;
  background: #fff;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}

.gm-menu-btn span { display: block; height: 2px; border-radius: 2px; background: var(--gm-ink); }

.mobile-menu-drawer { padding: 18px 18px 24px; box-sizing: border-box; overflow-y: auto; }

.gm-drawer-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.gm-drawer-head img { height: 28px; width: auto; }
.gm-drawer-head button { border: 0; background: transparent; font-size: 14px; font-weight: 700; cursor: pointer; }
.gm-header .gm-search.gm-search-drawer, .gm-search.gm-search-drawer { order: 0 !important; flex: 0 0 auto !important; max-width: none; margin: 4px 0 8px; }
.gm-drawer-nav { display: flex; flex-direction: column; }

.gm-drawer-nav a {
  padding: 14px 2px;
  border-bottom: 1px solid #eef0f2;
  color: var(--gm-ink) !important;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 600;
}

.gm-drawer-call {
  display: flex;
  justify-content: center;
  margin-top: 18px;
  padding: 13px;
  border-radius: 999px;
  background: var(--gm-navy);
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 700;
}

/* Buttons */
.gm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  background: var(--gm-navy);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 700;
  transition: background 0.15s ease, transform 0.15s ease;
}

.gm-btn:hover { background: var(--gm-navy-2); transform: translateY(-1px); }
.gm-btn-light { background: #fff; color: var(--gm-ink) !important; }
.gm-btn-light:hover { background: #f1f2f4; }
.gm-btn-ghost { background: rgba(255, 255, 255, 0.12); border: 1px solid rgba(255, 255, 255, 0.55); }
.gm-btn-ghost:hover { background: rgba(255, 255, 255, 0.22); }

.gm-link { color: var(--gm-navy-2) !important; font-size: 14px; font-weight: 700; text-decoration: none !important; white-space: nowrap; }
.gm-link:hover { text-decoration: underline !important; }

.gm-eyebrow {
  margin: 0 0 10px;
  color: var(--gm-navy-2) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em;
}

/* Home */
.gm-home { width: min(1240px, calc(100% - 40px)); margin: 20px auto 0; }

.gm-hero { display: grid; grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr); gap: 16px; }

.gm-hero-main {
  position: relative;
  min-height: 520px;
  border-radius: 18px;
  overflow: hidden;
  background: #1c2733;
}

.gm-hero-main > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

.gm-hero-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 30, 0.82) 0%, rgba(10, 18, 30, 0.55) 45%, rgba(10, 18, 30, 0.05) 100%);
}

.gm-hero-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  min-height: 520px;
  max-width: 540px;
  padding: 40px;
  box-sizing: border-box;
  color: #fff;
}

.gm-hero-copy .gm-eyebrow { color: var(--gm-amber) !important; }

body.gm-store .gm-hero-copy h1 {
  margin: 0;
  color: #fff !important;
  font-size: clamp(34px, 4.2vw, 54px) !important;
  font-weight: 800 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.03em !important;
}

.gm-hero-copy > p:not(.gm-eyebrow) { margin: 16px 0 0; color: rgba(255, 255, 255, 0.86); font-size: 17px; line-height: 1.5; }
.gm-hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }

.gm-hero-side { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }

.gm-promo {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 252px;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none !important;
}

.gm-promo img { position: absolute; inset: 0; width: 100%; height: 100%; transition: transform 0.5s ease; }
.gm-promo:hover img { transform: scale(1.04); }
.gm-promo-dark { background: #111; }
.gm-promo-dark img { object-fit: cover; }
.gm-promo-dark::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0) 65%); }
.gm-promo-light { background: #eef1f4; }
.gm-promo-light img { object-fit: contain; padding: 18px 18px 90px 40%; box-sizing: border-box; }
.gm-promo-copy { position: relative; z-index: 1; display: block; padding: 22px; }
.gm-promo-copy em { display: block; font-style: normal; font-size: 13px; font-weight: 700; }
.gm-promo-copy strong { display: block; margin: 4px 0 6px; font-size: 22px; font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
.gm-promo-copy > span { font-size: 14px; font-weight: 600; }
.gm-promo-dark .gm-promo-copy { color: #fff; }
.gm-promo-dark .gm-promo-copy em { color: var(--gm-amber); }
.gm-promo-light .gm-promo-copy { color: var(--gm-ink); max-width: 60%; }
.gm-promo-light .gm-promo-copy em { color: var(--gm-navy-2); }
.gm-promo-copy > span::after { content: " →"; transition: margin 0.2s ease; }
.gm-promo:hover .gm-promo-copy > span::after { margin-left: 4px; }

.gm-promise {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 16px 0 0;
  background: #fff;
  border: 1px solid var(--gm-line);
  border-radius: 14px;
}

.gm-promise > div { display: flex; align-items: center; gap: 14px; padding: 18px 20px; }
.gm-promise > div + div { border-left: 1px solid var(--gm-line); }

.gm-promise svg {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  padding: 9px;
  box-sizing: border-box;
  border-radius: 50%;
  background: #eef3f9;
  color: var(--gm-navy-2);
}

.gm-promise p { margin: 0; }
.gm-promise strong { display: block; font-size: 15px; font-weight: 700; }
.gm-promise span { color: var(--gm-muted); font-size: 13px; }

.gm-section { margin-top: 56px; }

.gm-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
body.gm-store .gm-section-head h2 { margin: 0; font-size: clamp(24px, 2.4vw, 32px) !important; font-weight: 800 !important; }
.gm-section-head p { margin: 6px 0 0; color: var(--gm-muted); font-size: 15px; }

.gm-depts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

.gm-dept {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--gm-line);
  border-radius: 16px;
  overflow: hidden;
  color: var(--gm-ink) !important;
  text-decoration: none !important;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gm-dept:hover { transform: translateY(-3px); border-color: #cfd5dd; box-shadow: 0 16px 32px rgba(16, 24, 40, 0.1); }

.gm-dept-image {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4 / 3;
  background: radial-gradient(circle at 50% 60%, #ffffff 0%, #eef1f4 70%);
}

.gm-dept-image img { width: 78%; height: 78%; object-fit: contain; transition: transform 0.35s ease; mix-blend-mode: multiply; }
.gm-dept:hover .gm-dept-image img { transform: scale(1.05); }
.gm-dept-copy { display: block; padding: 16px 18px 18px; }
.gm-dept-copy strong { display: block; font-size: 18px; font-weight: 800; }
.gm-dept-copy span { display: block; margin-top: 2px; color: var(--gm-muted); font-size: 14px; }
.gm-dept-copy em { display: inline-block; margin-top: 10px; color: var(--gm-navy-2); font-style: normal; font-size: 13px; font-weight: 700; }

.gm-rail-nav { display: flex; gap: 8px; }

.gm-rail-nav button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gm-line);
  border-radius: 50%;
  background: #fff;
  color: var(--gm-ink);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.gm-rail-nav button:hover { background: var(--gm-soft); border-color: #cfd5dd; }
.gm-rail-nav svg { width: 20px; height: 20px; }

.gm-tabs { display: flex; gap: 8px; margin-bottom: 16px; overflow-x: auto; scrollbar-width: none; }

.gm-tabs button {
  flex: 0 0 auto;
  height: 38px;
  padding: 0 16px;
  border: 1px solid var(--gm-line);
  border-radius: 999px;
  background: #fff;
  color: var(--gm-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
}

.gm-tabs button:hover { border-color: #c4cad3; color: var(--gm-ink); }
.gm-tabs button[aria-selected="true"] { background: var(--gm-ink); border-color: var(--gm-ink); color: #fff; }

.gm-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 48px) / 4);
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 4px 2px 14px;
  scrollbar-width: thin;
}

.gm-rail > .gm-card { scroll-snap-align: start; }

/* Product card */
.gm-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  border: 1px solid var(--gm-line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.gm-card:hover { transform: translateY(-3px); border-color: #cfd5dd; box-shadow: 0 16px 32px rgba(16, 24, 40, 0.1); }

.gm-card-image {
  position: relative;
  display: block;
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 55%, #ffffff 0%, #f1f3f5 75%);
  overflow: hidden;
}

body.gm-store .gm-card-image img {
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  padding: 18px;
  box-sizing: border-box;
  object-fit: contain !important;
  mix-blend-mode: multiply;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gm-card:hover .gm-card-image img { transform: scale(1.04); }
.gm-card-image .gm-card-alt { opacity: 0; }
.gm-card:hover .gm-card-image .gm-card-alt { opacity: 1; }
.gm-card:hover .gm-card-image img:first-child:not(:only-of-type) { opacity: 0; }

.gm-card-flag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--gm-line);
  color: var(--gm-muted);
  font-size: 12px;
  font-weight: 700;
}

.gm-card-body { display: flex; flex-direction: column; gap: 6px; flex: 1; padding: 14px 16px 16px; }
.gm-card-dept { color: var(--gm-muted); font-size: 12px; font-weight: 600; }

body.gm-store .gm-card-title {
  margin: 0;
  min-height: 2.7em;
  font-size: 15px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  letter-spacing: 0 !important;
}

.gm-card-title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--gm-ink) !important;
  text-decoration: none !important;
}

.gm-card-title a:hover { text-decoration: underline !important; }
.gm-card-price { margin-top: 4px; font-size: 20px; font-weight: 800; letter-spacing: -0.01em; }
.gm-card-stock { display: flex; align-items: center; gap: 7px; color: var(--gm-green); font-size: 13px; font-weight: 600; }
.gm-card-stock i { width: 8px; height: 8px; border-radius: 50%; background: currentColor; box-shadow: 0 0 0 3px rgba(31, 122, 68, 0.15); }
.gm-card.is-out .gm-card-stock { color: var(--gm-muted); }
.gm-card.is-out .gm-card-stock i { box-shadow: none; }
.gm-card.is-out .gm-card-image img { opacity: 0.7; }

body.gm-store .gm-card .gm-add,
body.gm-store .gm-card .gm-card-more {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 42px !important;
  margin-top: auto !important;
  padding: 0 14px !important;
  border-radius: 999px !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
  transform: none !important;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.gm-card-body > .gm-add, .gm-card-body > .gm-card-more { margin-top: 10px; }
body.gm-store .gm-card .gm-add { background: var(--gm-navy) !important; border: 0 !important; color: #fff !important; }
body.gm-store .gm-card .gm-add:hover { background: var(--gm-navy-2) !important; }
body.gm-store .gm-card .gm-add.is-added { background: var(--gm-green) !important; }
body.gm-store .gm-card .gm-card-more { background: #fff !important; border: 1px solid #d7dadf !important; color: var(--gm-ink) !important; }
body.gm-store .gm-card .gm-card-more:hover { border-color: var(--gm-ink) !important; }

/* Story */
.gm-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  margin-top: 56px;
  background: #0f1b2b;
  border-radius: 20px;
  overflow: hidden;
  color: #fff;
}

.gm-story-image { min-height: 420px; }
.gm-story-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gm-story-copy { display: flex; flex-direction: column; justify-content: center; padding: 44px; }
.gm-story-copy .gm-eyebrow { color: var(--gm-amber) !important; }
body.gm-store .gm-story-copy h2 { margin: 0; color: #fff !important; font-size: clamp(26px, 2.6vw, 36px) !important; font-weight: 800 !important; line-height: 1.1 !important; }
.gm-story-copy > p:not(.gm-eyebrow) { margin: 14px 0 0; color: rgba(255, 255, 255, 0.8); font-size: 16px; line-height: 1.55; }
.gm-story-copy .gm-btn { align-self: flex-start; margin-top: 26px; background: #fff; color: var(--gm-ink) !important; }
.gm-story-copy .gm-btn:hover { background: #eef1f4; }

.gm-checks { margin: 20px 0 0; padding: 0; list-style: none; display: grid; gap: 10px; }
.gm-checks li { position: relative; padding-left: 28px; color: rgba(255, 255, 255, 0.92); font-size: 15px; }

.gm-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gm-amber) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310233f' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-10'/%3E%3C/svg%3E") center / 10px no-repeat;
}

/* Sizer */
.gm-sizer {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 56px;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--gm-line);
  border-radius: 20px;
}

body.gm-store .gm-sizer h2 { margin: 0; font-size: clamp(24px, 2.4vw, 32px) !important; font-weight: 800 !important; }
.gm-sizer-pick > p:not(.gm-eyebrow):not(.gm-fine) { margin: 10px 0 0; color: var(--gm-body); font-size: 15px; line-height: 1.5; }
.gm-sizer-options { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.gm-chip { position: relative; cursor: pointer; }
.gm-chip input { position: absolute; opacity: 0; pointer-events: none; }

.gm-chip > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 14px;
  border: 1px solid #d7dadf;
  border-radius: 999px;
  background: #fff;
  color: var(--gm-ink);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.15s ease;
  user-select: none;
}

.gm-chip > span small { color: var(--gm-muted); font-size: 12px; font-weight: 600; }
.gm-chip:hover > span { border-color: var(--gm-ink); }
.gm-chip input:checked + span { background: var(--gm-navy); border-color: var(--gm-navy); color: #fff; }
.gm-chip input:checked + span small { color: rgba(255, 255, 255, 0.75); }
.gm-chip input:focus-visible + span { box-shadow: 0 0 0 3px rgba(27, 58, 99, 0.3); }
.gm-fine { margin: 16px 0 0; color: var(--gm-muted); font-size: 13px; line-height: 1.5; }

.gm-sizer-result { padding: 24px; background: var(--gm-soft); border-radius: 16px; align-self: start; }
.gm-meter { display: flex; align-items: baseline; gap: 10px; }
.gm-meter-num { font-size: 40px; font-weight: 800; letter-spacing: -0.03em; }
.gm-meter-label { color: var(--gm-muted); font-size: 14px; font-weight: 600; }
.gm-meter-bar { height: 10px; margin: 12px 0 16px; background: #e2e6eb; border-radius: 99px; overflow: hidden; }
.gm-meter-bar i { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--gm-green), #3fae6a); border-radius: 99px; transition: width 0.35s ease; }
.gm-meter-bar i.is-over { background: linear-gradient(90deg, #d97706, #dc2626); }
.gm-sizer-note { margin: 0; color: var(--gm-body); font-size: 14px; line-height: 1.5; }
.gm-sizer-note a { color: var(--gm-navy-2); font-weight: 700; }
.gm-sizer-list { display: grid; gap: 8px; margin-top: 14px; }

.gm-sizer-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--gm-line);
  border-radius: 12px;
  color: var(--gm-ink) !important;
  text-decoration: none !important;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.gm-sizer-item:hover { border-color: var(--gm-ink); transform: translateX(2px); }
.gm-sizer-item img { width: 56px; height: 56px; flex: 0 0 56px; object-fit: contain; background: var(--gm-soft); border-radius: 8px; }
.gm-sizer-item strong { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; font-size: 14px; font-weight: 700; }
.gm-sizer-item em { display: block; font-style: normal; color: var(--gm-body); font-size: 13px; }
.gm-sizer-item small { font-size: 12px; font-weight: 700; }
.gm-sizer-item small.is-in { color: var(--gm-green); }
.gm-sizer-item small.is-out { color: var(--gm-muted); }

/* Steps */
.gm-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.gm-steps li { position: relative; padding: 22px; background: #fff; border: 1px solid var(--gm-line); border-radius: 16px; }

.gm-steps li > span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--gm-navy);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
}

.gm-steps li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 40px;
  right: -17px;
  width: 18px;
  height: 2px;
  background: #cfd5dd;
}

.gm-steps strong { display: block; font-size: 16px; font-weight: 700; }
.gm-steps p { margin: 6px 0 0; color: var(--gm-muted); font-size: 14px; line-height: 1.5; }

/* FAQ + contact */
.gm-split { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr); gap: 24px; margin-top: 56px; align-items: start; }
body.gm-store .gm-faq h2 { margin: 0 0 14px; font-size: clamp(24px, 2.4vw, 32px) !important; font-weight: 800 !important; }
.gm-faq details { border-top: 1px solid var(--gm-line); }
.gm-faq details:last-child { border-bottom: 1px solid var(--gm-line); }

.gm-faq summary {
  position: relative;
  padding: 18px 40px 18px 0;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  cursor: pointer;
}

.gm-faq summary::-webkit-details-marker { display: none; }

.gm-faq summary::after {
  content: "";
  position: absolute;
  right: 6px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--gm-ink);
  border-bottom: 2px solid var(--gm-ink);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.gm-faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.gm-faq details p { margin: 0 0 18px; max-width: 62ch; color: var(--gm-body); font-size: 15px; line-height: 1.6; }

.gm-contact-card { background: #fff; border: 1px solid var(--gm-line); border-radius: 20px; overflow: hidden; }
.gm-contact-card > img { display: block; width: 100%; height: 180px; object-fit: cover; }
.gm-contact-card > div { padding: 22px; }
body.gm-store .gm-contact-card h3 { margin: 0; font-size: 22px !important; font-weight: 800 !important; }
.gm-contact-card p { margin: 8px 0 14px; color: var(--gm-body); font-size: 15px; line-height: 1.5; }

.gm-contact-line {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid #eef0f2;
  color: var(--gm-ink) !important;
  text-decoration: none !important;
  font-size: 15px;
}

.gm-contact-line b { width: 56px; flex: 0 0 56px; color: var(--gm-muted); font-size: 13px; font-weight: 600; }
.gm-contact-card .gm-btn { width: 100%; margin-top: 14px; box-sizing: border-box; }

/* Catalog */
.gm-catalog { width: min(1240px, calc(100% - 40px)); margin: 18px auto 0; }
.gm-crumbs { display: flex; align-items: center; gap: 8px; color: var(--gm-muted); font-size: 13px; }
.gm-crumbs a { color: var(--gm-muted) !important; text-decoration: none !important; }
.gm-crumbs a:hover { color: var(--gm-ink) !important; }
.gm-crumbs [aria-current] { color: var(--gm-ink); font-weight: 600; }

.gm-catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 14px 0 22px;
  padding: 28px 30px;
  border-radius: 18px;
  background: linear-gradient(120deg, #10233f 0%, #1b3a63 100%);
  color: #fff;
}

body.gm-store .gm-catalog-head h1 { margin: 0; color: #fff !important; font-size: clamp(28px, 3vw, 40px) !important; font-weight: 800 !important; }
.gm-catalog-head p { margin: 6px 0 0; color: rgba(255, 255, 255, 0.8); font-size: 15px; }
.gm-catalog-head .gm-catalog-meta { margin: 0; padding: 8px 14px; border-radius: 999px; background: rgba(255, 255, 255, 0.12); color: #fff; font-size: 14px; font-weight: 600; white-space: nowrap; }

.gm-catalog-layout { display: grid; grid-template-columns: 240px minmax(0, 1fr); gap: 24px; align-items: start; }
.gm-filters { position: sticky; top: 132px; display: grid; gap: 18px; }
.gm-filter-group { padding: 16px; background: #fff; border: 1px solid var(--gm-line); border-radius: 14px; }
.gm-filter-group > strong { display: block; margin-bottom: 10px; font-size: 14px; font-weight: 700; }

.gm-filter-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--gm-body) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 600;
}

.gm-filter-link em { font-style: normal; color: var(--gm-muted); font-size: 12px; font-weight: 600; }
.gm-filter-link:hover { background: var(--gm-soft); color: var(--gm-ink) !important; }
.gm-filter-link[aria-current="page"] { background: var(--gm-navy); color: #fff !important; }
.gm-filter-link[aria-current="page"] em { color: rgba(255, 255, 255, 0.75); }
.gm-check { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; cursor: pointer; }
.gm-check input { width: 18px; height: 18px; accent-color: var(--gm-navy); }
.gm-price-pills { display: flex; flex-wrap: wrap; gap: 6px; }

.gm-price-pills button {
  height: 34px;
  padding: 0 12px;
  border: 1px solid #d7dadf;
  border-radius: 999px;
  background: #fff;
  color: var(--gm-ink);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.gm-price-pills button:hover { border-color: var(--gm-ink); }
.gm-price-pills button[aria-pressed="true"] { background: var(--gm-navy); border-color: var(--gm-navy); color: #fff; }
.gm-filter-help { padding: 16px; border-radius: 14px; background: #eef3f9; }
.gm-filter-help strong { font-size: 14px; }
.gm-filter-help p { margin: 6px 0 0; color: var(--gm-body); font-size: 13px; line-height: 1.5; }
.gm-filter-help a { color: var(--gm-navy-2); font-weight: 700; }

.gm-toolbar { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.gm-toolbar-search { position: relative; flex: 1 1 auto; max-width: 360px; display: flex; align-items: center; }
.gm-toolbar-search svg { position: absolute; left: 12px; width: 16px; height: 16px; color: var(--gm-muted); }

.gm-toolbar-search input {
  width: 100%;
  height: 40px;
  padding: 0 12px 0 36px;
  border: 1px solid #d7dadf !important;
  border-radius: 999px !important;
  background: #fff !important;
  font-size: 14px !important;
  outline: none;
}

.gm-toolbar-search input:focus { border-color: var(--gm-navy-2) !important; box-shadow: 0 0 0 3px rgba(27, 58, 99, 0.12); }
.gm-toolbar-count { color: var(--gm-muted); font-size: 14px; font-weight: 600; }
.gm-toolbar-sort { display: flex; align-items: center; gap: 8px; margin-left: auto; font-size: 14px; font-weight: 600; }

.gm-toolbar-sort select {
  height: 40px;
  padding: 0 34px 0 14px;
  border: 1px solid #d7dadf;
  border-radius: 999px;
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2314181f' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") right 12px center / 14px no-repeat;
  color: var(--gm-ink);
  font-size: 14px;
  font-weight: 600;
  appearance: none;
  cursor: pointer;
}

.gm-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.gm-grid > .gm-card[hidden] { display: none; }
.gm-empty { padding: 44px 24px; text-align: center; background: #fff; border: 1px dashed #cfd5dd; border-radius: 16px; }
body.gm-store .gm-empty h2 { margin: 0; font-size: 20px !important; font-weight: 800 !important; }
.gm-empty p { margin: 8px 0 16px; color: var(--gm-muted); }

/* Footer */
.gm-footer { margin-top: 72px; background: #0f1b2b; color: rgba(255, 255, 255, 0.78); }

.gm-footer-promise {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.gm-footer-promise strong { display: block; color: #fff; font-size: 15px; font-weight: 700; }
.gm-footer-promise span { font-size: 13px; }

.gm-footer-inner {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 32px;
  padding: 40px 0 28px;
}

.gm-footer-brand img { height: 30px; width: auto; padding: 8px 12px; background: #fff; border-radius: 8px; }
.gm-footer-brand p { margin: 16px 0 0 !important; max-width: 34ch; font-size: 14px; line-height: 1.6; }
.gm-footer-brand .gm-footer-address { color: rgba(255, 255, 255, 0.6); }
.gm-footer-inner > div > strong { display: block; margin-bottom: 12px; color: #fff; font-size: 14px; font-weight: 700; }
.gm-footer-inner a { display: block; padding: 5px 0; color: rgba(255, 255, 255, 0.78) !important; text-decoration: none !important; font-size: 14px; }
.gm-footer-inner a:hover { color: #fff !important; }
.gm-footer-hours { display: block; padding: 5px 0; color: rgba(255, 255, 255, 0.6); font-size: 14px; }

.gm-footer-base {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.gm-pay { display: flex; gap: 6px; }
.gm-pay i { padding: 4px 8px; border-radius: 6px; background: rgba(255, 255, 255, 0.1); color: #fff; font-style: normal; font-size: 12px; font-weight: 700; }

/* Reveal */
.gm-reveal-ready .gm-reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.gm-reveal-ready .gm-reveal.is-in { opacity: 1; transform: none; }

/* Cart drawer and product page, aligned to the store */
body.gm-store [style*="f59e0b"] { background: var(--gm-navy) !important; color: #fff !important; box-shadow: none !important; text-transform: none !important; letter-spacing: 0 !important; border-radius: 999px !important; }
body.gm-store .cart-drawer { background: #fff !important; color: var(--gm-ink) !important; }
body.gm-store .cart-header { background: var(--gm-navy) !important; }
body.gm-store .cart-title { color: #fff !important; text-transform: none !important; letter-spacing: 0 !important; }
body.gm-store .cart-total-label { text-transform: none !important; letter-spacing: 0 !important; }
body.gm-store .btn-checkout { border-radius: 999px !important; text-transform: none !important; letter-spacing: 0 !important; }

body.gm-store .promo-strip { background: var(--gm-navy) !important; color: #fff !important; text-transform: none !important; letter-spacing: 0 !important; font-weight: 500 !important; font-size: 13px !important; }
body.gm-store .app-header { background: #fff !important; box-shadow: none !important; border-bottom: 1px solid var(--gm-line) !important; }
body.gm-store .product-primary-nav { background: #fff !important; border-top: 1px solid #f0f1f3 !important; }
body.gm-store .product-primary-nav a { color: var(--gm-body) !important; text-transform: none !important; letter-spacing: 0 !important; font-weight: 600 !important; }
body.gm-store .call-btn, body.gm-store .cart-btn { border-radius: 999px !important; box-shadow: none !important; }
body.gm-store .cart-btn { background: var(--gm-navy) !important; color: #fff !important; border: 0 !important; }
body.gm-store .call-btn { background: #fff !important; color: var(--gm-ink) !important; border: 1px solid var(--gm-line) !important; }
body.gm-store.store-product-page { background: var(--gm-page) !important; }
body.gm-store .primary-buy-btn { background: var(--gm-navy) !important; color: #fff !important; border: 0 !important; border-radius: 999px !important; box-shadow: none !important; text-transform: none !important; letter-spacing: 0 !important; }
body.gm-store .primary-buy-btn:hover { background: var(--gm-navy-2) !important; }
body.gm-store .pdp-cinematic-section { background: #fff !important; color: var(--gm-ink) !important; border: 1px solid var(--gm-line) !important; border-radius: 20px !important; box-shadow: none !important; }
body.gm-store .pdp-cinematic-h2, body.gm-store .pdp-cinematic-text { color: var(--gm-ink) !important; text-transform: none !important; }
body.gm-store .pdp-cinematic-eyebrow, body.gm-store .pdp-eyebrow-tag { color: var(--gm-navy-2) !important; letter-spacing: 0 !important; text-transform: none !important; }
body.gm-store .product-title { text-transform: none !important; letter-spacing: -0.02em !important; font-weight: 800 !important; }

/* Responsive */
@media (max-width: 1100px) {
  .gm-tool span, .gm-nav-note { display: none; }
  .gm-rail { grid-auto-columns: calc((100% - 32px) / 3); }
  .gm-catalog-layout { grid-template-columns: 210px minmax(0, 1fr); }
  .gm-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .gm-header-bar { flex-wrap: wrap; gap: 10px 12px; min-height: 0; padding: 10px 0; }
  .gm-menu-btn { display: flex; }
  .gm-logo { margin-right: auto; }
  .gm-logo img { height: 28px; }
  .gm-tool { display: none; }
  .gm-cart-label { display: none; }
  .gm-search { order: 5; flex-basis: 100%; max-width: none; }
  .gm-nav { display: none; }
  .gm-hero { grid-template-columns: 1fr; }
  .gm-hero-main, .gm-hero-copy { min-height: 440px; }
  .gm-hero-side { grid-template-columns: 1fr 1fr; grid-template-rows: none; }
  .gm-promise { grid-template-columns: 1fr 1fr; }
  .gm-promise > div:nth-child(3) { border-left: 0; }
  .gm-promise > div:nth-child(n + 3) { border-top: 1px solid var(--gm-line); }
  .gm-depts { grid-template-columns: 1fr 1fr; }
  .gm-rail { grid-auto-columns: calc((100% - 16px) / 2); }
  .gm-story, .gm-sizer, .gm-split { grid-template-columns: 1fr; }
  .gm-story-image { min-height: 260px; }
  .gm-steps { grid-template-columns: 1fr 1fr; }
  .gm-steps li::after { display: none; }
  .gm-catalog-layout { grid-template-columns: 1fr; }
  .gm-filters { position: static; grid-template-columns: 1fr 1fr; }
  .gm-filter-help { display: none; }
  .gm-footer-promise, .gm-footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .gm-home, .gm-catalog { width: calc(100% - 24px); }
  .gm-header-bar, .gm-nav-inner, .gm-footer-inner, .gm-footer-promise, .gm-footer-base { width: calc(100% - 24px); }
  .gm-hero-copy { padding: 24px; }
  .gm-hero-main, .gm-hero-copy { min-height: 420px; }
  .gm-hero-side { grid-template-columns: 1fr; }
  .gm-promo { min-height: 200px; }
  .gm-promise { grid-template-columns: 1fr; }
  .gm-promise > div + div { border-left: 0; border-top: 1px solid var(--gm-line); }
  .gm-section { margin-top: 40px; }
  .gm-rail-nav { display: none; }
  .gm-rail { grid-auto-columns: 72%; }
  .gm-story-copy, .gm-sizer { padding: 24px; }
  .gm-steps { grid-template-columns: 1fr; }
  .gm-catalog-head { flex-direction: column; align-items: flex-start; padding: 22px; }
  .gm-filters { grid-template-columns: 1fr; }
  .gm-toolbar { flex-wrap: wrap; }
  .gm-toolbar-search { max-width: none; flex-basis: 100%; }
  .gm-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .gm-card-body { padding: 12px; }
  .gm-card-price { font-size: 17px; }
  .gm-footer-inner { grid-template-columns: 1fr 1fr; }
  .gm-footer-brand { grid-column: 1 / -1; }
  .gm-footer-promise { grid-template-columns: 1fr; }
  .gm-footer-base { flex-direction: column; align-items: flex-start; }
}
