/* ==========================================================================
   Gold Grillz UK — global foundation
   Editorial jewellery chrome. Homepage body is rebuilt later.
   ========================================================================== */

:root {
  --bg: #f7f4ef;
  --bg-elevated: #fbf8f3;
  --bg-white: #ffffff;
  --ink: #1a1612;
  --ink-soft: #3c362f;
  --muted: #7a7268;
  --line: #e8e1d6;
  --line-strong: #cfc4b3;
  --gold: #a07a45;
  --gold-deep: #7f5e32;
  --gold-soft: #cbb48a;
  --klarna-bg: #f7f4ee;

  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: "DM Sans", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --text-xs: 0.6875rem;
  --text-sm: 0.8125rem;
  --text-base: 0.9375rem;
  --text-md: 1.0625rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;

  --leading-tight: 1.12;
  --leading-snug: 1.35;
  --leading-body: 1.65;

  --track-label: 0.14em;
  --track-nav: 0.01em;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 96px;

  --radius-xs: 2px;
  --radius-sm: 4px;
  --shadow-soft: 0 18px 40px rgba(26, 22, 18, 0.07);
  --shadow-drawer: 18px 0 40px rgba(26, 22, 18, 0.14);
  --shadow-sticky: 0 8px 24px rgba(26, 22, 18, 0.04);

  --container: 1420px;
  --header-main-h: 100px;
  --header-nav-h: 54px;
  --header-compact-h: 64px;
  --mobile-header-h: 64px;
  --bottom-nav-h: 64px;
  --touch: 44px;

  --motion-quick: 150ms;
  --motion-fast: 220ms;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);

  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  scroll-padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: clip;
  font-weight: 400;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button,
input {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: var(--leading-tight);
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: var(--ink);
  margin: 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 200;
  background: var(--ink);
  color: var(--bg-white);
  padding: 10px 16px;
  font-size: var(--text-sm);
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

@media (min-width: 768px) {
  .container {
    width: min(100% - 72px, var(--container));
  }
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 1px solid var(--gold);
  outline-offset: 3px;
}

/* ==========================================================================
   KLARNA / ANNOUNCEMENT
   Official artwork is displayed at its native aspect ratio.
   Do not crop, recolour or rewrite the graphic.
   ========================================================================== */

.klarna-bar {
  background: var(--klarna-bg);
  border-bottom: 1px solid var(--line);
}

.klarna-bar__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
}

.klarna-bar__img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}

.klarna-bar__img--desktop {
  display: none;
}

.klarna-bar__img--mobile {
  width: 96px;
  height: auto;
}

@media (min-width: 768px) {
  .klarna-bar__link {
    padding: 12px 24px 14px;
  }

  .klarna-bar__img--mobile {
    display: none;
  }

  .klarna-bar__img--desktop {
    display: block;
    width: min(970px, 100%);
    height: auto;
  }
}

/* ==========================================================================
   HEADER
   Direct children of .header-inner participate in the grid.
   Do not use display:contents — it breaks position:sticky in Chromium.
   ========================================================================== */

.site-header {
  position: sticky;
  top: -1px;
  z-index: 80;
  background: var(--bg-white);
  border-bottom: 1px solid var(--line);
  padding-top: 1px;
  padding-left: var(--safe-l);
  padding-right: var(--safe-r);
  overflow: visible;
  transition: box-shadow var(--motion-quick) var(--ease-out);
}

.site-header.is-compact {
  box-shadow: var(--shadow-sticky);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-rows: var(--mobile-header-h);
  align-items: center;
  column-gap: 6px;
}

.header-inner > .icon-btn.mobile-only {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
}

.header-cs {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--touch);
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
}

.logo img {
  width: 168px;
  height: auto;
  mix-blend-mode: multiply;
  transition: opacity var(--motion-quick) var(--ease-out);
}

.logo:hover img {
  opacity: 0.7;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
  gap: 0;
  grid-column: 3;
  grid-row: 1;
  min-height: 0;
}

.tool-btn,
.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: var(--touch);
  min-height: var(--touch);
  color: var(--ink);
  transition: color var(--motion-quick) var(--ease-out);
}

.tool-btn svg,
.icon-btn svg {
  display: block;
}

.tool-btn--fav svg,
.tool-btn--account svg {
  width: 32px;
  height: 32px;
}

.header-tools .tool-btn--fav,
.header-tools .tool-btn--account,
.header-tools .tool-btn--cart {
  min-width: 46px;
  min-height: 46px;
}

.tool-btn:hover,
.icon-btn:hover {
  color: var(--gold-deep);
}

.tool-btn__label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.tool-count {
  position: absolute;
  top: 6px;
  right: 4px;
  min-width: 15px;
  height: 15px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg-white);
  font-size: 9px;
  font-weight: 500;
  line-height: 15px;
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.tool-count.is-empty {
  display: none;
}

.header-search {
  display: none;
  position: relative;
  height: 42px;
  overflow: hidden;
}

.header-search::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 16px;
  height: 16px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
  opacity: 0.42;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1612' stroke-width='1.5'><circle cx='11' cy='11' r='6.4'/><path d='M16.2 16.2L21 21' stroke-linecap='round'/></svg>") center / contain no-repeat;
}

#searchSlot,
#my-search-533021 {
  width: 100%;
  min-height: 42px;
}

.search-overlay__slot {
  width: 100%;
  min-height: 42px;
}

.header-search #searchSlot,
.header-search #my-search-533021 {
  max-height: 42px;
  overflow: hidden;
}

#my-search-533021 input,
#my-search-533021 .form-control,
.header-search input[type="search"],
.header-search input[type="text"],
.search-overlay input[type="search"],
.search-overlay input[type="text"] {
  width: 100%;
  height: 42px;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 0 28px 0 2px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  transition: border-color var(--motion-quick) var(--ease-out);
}

#my-search-533021 input::placeholder,
.header-search input::placeholder,
.search-overlay input::placeholder {
  color: var(--muted);
  font-weight: 400;
}

#my-search-533021 input:hover,
.header-search input:hover,
.search-overlay input:hover {
  border-bottom-color: var(--ink-soft);
}

#my-search-533021 input:focus,
.header-search input:focus,
.search-overlay input:focus {
  border-bottom-color: var(--gold);
}

.ec-cart-widget {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.ecwid-popup,
.ec-popup,
div.ec-wrapper {
  z-index: 200;
}

.tool-btn--cart {
  overflow: visible;
}

.tool-btn--cart .ec-cart-widget {
  display: flex;
  align-items: center;
  justify-content: center;
}

.desktop-only {
  display: none;
}

.mobile-only {
  display: inline-flex;
}

@media (min-width: 1024px) {
  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    grid-template-rows: var(--header-main-h) var(--header-nav-h);
    column-gap: 40px;
  }

  .header-cs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    justify-self: start;
    gap: 8px;
    width: max-content;
    min-width: 0;
    padding: 2px 0 2px 0;
    position: relative;
    grid-column: 1;
    grid-row: 1;
  }

  .header-cs::before {
    content: "";
    display: block;
    width: 22px;
    height: 1px;
    background: var(--gold);
  }

  .header-cs__label {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: var(--track-label);
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1;
  }

  .header-cs__number {
    font-family: var(--font-serif);
    font-size: 1.22rem;
    letter-spacing: 0.02em;
    color: var(--ink);
    line-height: 1.1;
    transition: color var(--motion-quick) var(--ease-out);
  }

  .header-cs__number:hover {
    color: var(--gold-deep);
  }

  .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .logo img {
    width: 286px;
  }

  .header-tools {
    grid-column: 3;
    grid-row: 1;
    gap: 2px;
  }

  .header-search {
    display: block;
    width: 270px;
    margin-right: 14px;
  }

  .desktop-only {
    display: inline-flex;
  }

  .mobile-only {
    display: none !important;
  }

  .header-nav {
    display: block;
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
    border-top: 1px solid var(--line);
  }

  /* Sticky: use the hamburger header below 1280px — never a two-row desktop bar. */
  .site-header.is-compact .header-inner {
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: var(--mobile-header-h);
    column-gap: 6px;
  }

  .site-header.is-compact .header-cs,
  .site-header.is-compact .header-nav,
  .site-header.is-compact .header-search {
    display: none;
  }

  .site-header.is-compact .logo {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
  }

  .site-header.is-compact .logo img {
    width: 168px;
  }

  .site-header.is-compact .header-tools {
    grid-column: 3;
    grid-row: 1;
  }

  .site-header.is-compact .desktop-only {
    display: none !important;
  }

  .site-header.is-compact .mobile-only {
    display: inline-flex !important;
  }
}

@media (min-width: 1280px) {
  .site-header.is-compact .header-inner {
    display: flex;
    align-items: center;
    grid-template-columns: none;
    grid-template-rows: var(--header-compact-h);
    column-gap: 12px;
    min-height: var(--header-compact-h);
  }

  .site-header.is-compact .header-cs {
    display: none;
  }

  .site-header.is-compact .logo {
    display: flex;
    flex: 0 0 auto;
    order: 1;
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
  }

  .site-header.is-compact .logo img {
    width: 160px;
  }

  .site-header.is-compact .header-nav {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    order: 2;
    grid-column: auto;
    grid-row: auto;
    border-top: 0;
  }

  .site-header.is-compact .header-tools {
    display: flex;
    flex: 0 0 auto;
    order: 3;
    grid-column: auto;
    grid-row: auto;
  }

  .site-header.is-compact .header-search {
    display: block;
    width: clamp(140px, 12vw, 180px);
    min-width: 140px;
    margin-right: 6px;
  }

  .site-header.is-compact .desktop-only {
    display: inline-flex !important;
  }

  .site-header.is-compact .mobile-only {
    display: none !important;
  }

  .site-header.is-compact .tool-btn--fav {
    display: none !important;
  }

  .site-header.is-compact .nav-list {
    justify-content: center;
    min-height: var(--header-compact-h);
    flex-wrap: nowrap;
    max-width: 100%;
    gap: 0;
  }

  .site-header.is-compact .nav-link,
  .site-header.is-compact .nav-item > a,
  .site-header.is-compact .nav-item > button.nav-link {
    min-height: var(--header-compact-h);
    padding: 0 8px;
    font-size: 14.5px;
  }

  .site-header.is-compact .nav-item.is-active > a::after,
  .site-header.is-compact .nav-item > a:hover::after,
  .site-header.is-compact .nav-item.is-open > .nav-link::after {
    bottom: 20px;
    left: 8px;
    right: 8px;
  }
}

@media (min-width: 1440px) {
  .site-header.is-compact .header-inner {
    column-gap: 20px;
  }

  .site-header.is-compact .logo img {
    width: 176px;
  }

  .site-header.is-compact .header-search {
    width: clamp(160px, 12vw, 220px);
    min-width: 160px;
    margin-right: 8px;
  }

  .site-header.is-compact .nav-link,
  .site-header.is-compact .nav-item > a,
  .site-header.is-compact .nav-item > button.nav-link {
    padding: 0 12px;
  }

  .site-header.is-compact .nav-item.is-active > a::after,
  .site-header.is-compact .nav-item > a:hover::after,
  .site-header.is-compact .nav-item.is-open > .nav-link::after {
    left: 12px;
    right: 12px;
  }
}

@media (min-width: 1600px) {
  .site-header.is-compact .header-inner {
    column-gap: 28px;
  }

  .site-header.is-compact .header-search {
    width: 220px;
    min-width: 220px;
  }

  .site-header.is-compact .nav-link,
  .site-header.is-compact .nav-item > a,
  .site-header.is-compact .nav-item > button.nav-link {
    padding: 0 14px;
  }

  .site-header.is-compact .nav-item.is-active > a::after,
  .site-header.is-compact .nav-item > a:hover::after,
  .site-header.is-compact .nav-item.is-open > .nav-link::after {
    left: 14px;
    right: 14px;
  }
}

/* ==========================================================================
   DESKTOP NAVIGATION
   ========================================================================== */

.header-nav {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 2px;
  min-height: var(--header-nav-h);
  flex-wrap: wrap;
}

.nav-link,
.nav-item > a,
.nav-item > button.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: var(--header-nav-h);
  padding: 0 18px;
  font-size: 15px;
  font-weight: 400;
  letter-spacing: var(--track-nav);
  text-transform: none;
  color: var(--ink-soft);
  background: transparent;
  white-space: nowrap;
  position: relative;
  transition: color var(--motion-quick) var(--ease-out);
}

.nav-link:hover,
.nav-item > a:hover,
.nav-item.is-active > a,
.nav-item.is-open > .nav-link {
  color: var(--ink);
}

.nav-item.is-active > a::after,
.nav-item > a:hover::after,
.nav-item.is-open > .nav-link::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 1px;
  background: var(--gold);
}

.nav-item {
  position: relative;
}

.nav-item--has-children > .nav-link svg {
  width: 10px;
  height: 6px;
  opacity: 0.5;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  min-width: 280px;
  padding: 18px 0 22px;
  background: var(--bg-white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translate(-20%, 8px);
  transition:
    opacity var(--motion-quick) var(--ease-out),
    transform var(--motion-quick) var(--ease-out),
    visibility var(--motion-quick);
  z-index: 90;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown,
.nav-item.is-open > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-20%, 0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0 28px;
  font-family: var(--font-serif);
  font-size: 1.06rem;
  letter-spacing: 0;
  color: var(--ink-soft);
  transition: color var(--motion-quick) var(--ease-out), padding-left var(--motion-quick) var(--ease-out);
}

.nav-dropdown a:hover {
  color: var(--ink);
  background: transparent;
  padding-left: 32px;
}

@media (min-width: 1024px) {
  .header-nav {
    display: block;
  }
}

/* ==========================================================================
   MOBILE NAVIGATION (drawer)
   ========================================================================== */

.menu-backdrop,
.search-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(22, 19, 16, 0.36);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--motion-fast) var(--ease-out), visibility var(--motion-fast);
  z-index: 100;
}

body.menu-open .menu-backdrop,
body.search-open .search-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(392px, 88vw);
  background: var(--bg-white);
  z-index: 110;
  display: flex;
  flex-direction: column;
  transform: translateX(-102%);
  transition: transform 320ms var(--ease-out);
  padding-top: var(--safe-t);
  padding-bottom: calc(var(--safe-b) + var(--bottom-nav-h));
  padding-left: var(--safe-l);
  pointer-events: none;
  box-shadow: var(--shadow-drawer);
}

body.menu-open .mobile-drawer {
  transform: translateX(0);
  pointer-events: auto;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 16px 12px 8px 28px;
}

.drawer-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  letter-spacing: -0.02em;
}

.drawer-body {
  overflow-y: auto;
  flex: 1;
  padding: 8px 0 48px;
  -webkit-overflow-scrolling: touch;
}

.drawer-link,
.drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 52px;
  padding: 0 28px;
  font-size: 1.08rem;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
}

.drawer-toggle svg {
  width: 12px;
  height: 8px;
  opacity: 0.45;
  transition: transform var(--motion-fast) var(--ease-out);
}

.drawer-item.is-open > .drawer-toggle svg {
  transform: rotate(180deg);
}

.drawer-sub {
  display: none;
  padding: 4px 0 20px;
}

.drawer-item.is-open > .drawer-sub {
  display: block;
}

.drawer-sub a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0 28px 0 28px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--muted);
}

.drawer-cs {
  margin: 36px 28px 0;
  padding: 28px 0 0;
  border-top: 1px solid var(--line);
}

.drawer-cs__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--muted);
}

.drawer-cs__number {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-serif);
  font-size: 1.5rem;
}

.drawer-cs__meta {
  margin-top: 6px;
  font-size: var(--text-sm);
  color: var(--muted);
}

@media (min-width: 1024px) {
  .mobile-drawer,
  .menu-backdrop {
    display: none;
  }
}

/* ==========================================================================
   SEARCH OVERLAY
   Mobile/tablet Ecwid search sheet. Desktop uses the header search field.
   ========================================================================== */

.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 120;
  background: var(--bg);
  padding: calc(12px + var(--safe-t)) 16px 12px;
  transform: translateY(-110%);
  transition: transform var(--motion-fast) var(--ease-out);
  pointer-events: none;
  border-bottom: 1px solid var(--line);
}

body.search-open .search-overlay {
  transform: translateY(0);
  pointer-events: auto;
}

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

.search-overlay__row {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.search-overlay__slot {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 42px;
  position: relative;
}

.search-overlay .icon-btn {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0;
  color: var(--ink);
}

.search-overlay #searchSlot,
.search-overlay #my-search-533021,
.search-overlay .search-overlay__slot > div,
.search-overlay .search-overlay__slot > div > div,
.search-overlay .ecwid-search-widget,
.search-overlay .search-fallback {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 42px;
  box-sizing: border-box;
}

.search-overlay .ecwid-search-widget__btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  order: -1;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px;
  min-height: 44px;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--ink);
}

.search-overlay .ecwid-search-widget__btn svg {
  width: 18px;
  height: 18px;
}

.search-overlay .ecwid-search-widget-icon {
  fill: var(--ink) !important;
}

.search-overlay #my-search-533021 input,
.search-overlay .ecwid-search-widget__input,
.search-overlay input[type="search"],
.search-overlay input[type="text"] {
  flex: 1 1 auto;
  min-width: 0;
  font-size: 16px;
}

.search-overlay .ecwid-search-widget--collapsed .ecwid-search-widget__input,
.search-overlay .ecwid-search-widget--collapsed .ecwid-search-widget__input[type="search"],
.search-overlay .ecwid-search-widget--collapsed .ecwid-search-widget__input[type="text"] {
  width: auto !important;
  min-width: 0 !important;
  flex: 1 1 auto !important;
  padding-left: 2px !important;
}

.search-overlay .search-fallback::before {
  content: "";
  flex: 0 0 44px;
  width: 44px;
  height: 18px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a1612' stroke-width='1.5'><circle cx='11' cy='11' r='6.4'/><path d='M16.2 16.2L21 21' stroke-linecap='round'/></svg>") center / 18px 18px no-repeat;
}

@media (min-width: 1024px) {
  .search-overlay,
  .search-backdrop {
    display: none;
  }
}

/* ==========================================================================
   PAGE CONTENT — Hero + Shop by Category
   ========================================================================== */

.page-content {
  padding: 0;
}

.hero {
  display: grid;
  background: var(--bg-white);
  --hero-gutter: max(16px, calc((100vw - min(100vw - 72px, var(--container))) / 2));
}

.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__media img {
  width: 100%;
  height: 62vw;
  min-height: 260px;
  max-height: 420px;
  object-fit: cover;
  object-position: 52% 42%;
}

.hero__copy {
  padding: 32px 20px 40px;
}

.hero__eyebrow {
  margin: 0 0 14px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold-deep);
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 8vw, 3.4rem);
  letter-spacing: -0.03em;
  line-height: 1.06;
  font-weight: 400;
  margin: 0 0 16px;
  max-width: 14ch;
}

.hero__lede {
  margin: 0 0 28px;
  max-width: 34ch;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.6;
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 26px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background-color var(--motion-quick) var(--ease-out), color var(--motion-quick) var(--ease-out), border-color var(--motion-quick) var(--ease-out);
}

.btn--primary {
  background: var(--ink);
  color: var(--bg-white);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--gold-deep);
  color: var(--bg-white);
}

.btn--ghost {
  padding: 0 2px;
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  color: var(--gold-deep);
}

@media (min-width: 768px) {
  .hero__copy {
    padding: 48px 36px 56px;
  }

  .hero__media img {
    height: 48vw;
    max-height: 480px;
  }
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: var(--hero-gutter) minmax(340px, 500px) minmax(0, 1fr);
    min-height: min(78vh, 680px);
    align-items: stretch;
  }

  .hero__copy {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 56px 72px 0;
  }

  .hero__media {
    grid-column: 3;
    grid-row: 1;
    min-height: 100%;
  }

  .hero__media img {
    height: 100%;
    min-height: min(78vh, 680px);
    max-height: none;
    object-position: 58% 48%;
  }
}

.shop-section {
  background: var(--bg);
  padding: 12px 0 48px;
  scroll-margin-top: calc(var(--mobile-header-h) + 12px);
}

body.is-store-root .shop-section {
  padding: 36px 0 36px;
}

.section-header {
  text-align: center;
  margin-bottom: 28px;
}

.section-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  letter-spacing: -0.02em;
  font-weight: 400;
}

.section-header p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 400;
}

#my-store-533021 {
  min-height: 240px;
  background: var(--bg-white);
  padding: 8px 4px 16px;
  scroll-margin-top: calc(var(--mobile-header-h) + 56px);
}

@media (min-width: 1024px) {
  body.is-store-root #my-store-533021 {
    max-width: 1110px;
    margin-inline: auto;
  }
}

@media (min-width: 1024px) {
  .shop-section {
    padding: 16px 0 64px;
    scroll-margin-top: calc(var(--header-compact-h) + 20px);
  }

  body.is-store-root .shop-section {
    padding: 52px 0 52px;
  }

  .section-header {
    margin-bottom: 40px;
  }

  #my-store-533021 {
    padding: 16px 8px 24px;
    scroll-margin-top: calc(var(--header-compact-h) + 72px);
  }
}

/* ==========================================================================
   PRODUCT CAROUSELS — Best Sellers + Exclusive Grillz
   ========================================================================== */

.product-carousel {
  background: var(--bg-white);
  padding: 0 0 28px;
}

.product-carousel.editorial-rail {
  padding: 28px 0;
}

.product-carousel .bestsellers-carousel {
  position: relative;
  max-width: 100%;
}

.product-carousel .bestsellers-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: none;
  width: 100%;
  max-width: 100%;
}

.product-carousel .bestsellers-track::-webkit-scrollbar {
  display: none;
}

.product-carousel .best-seller-item {
  display: flex;
  flex-direction: column;
  flex: 0 0 auto;
  width: calc((100% - 48px) / 2);
  min-width: calc((100% - 48px) / 2);
  max-width: calc((100% - 48px) / 2);
  scroll-snap-align: start;
  overflow: hidden;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-carousel .best-seller-item > .ecsp {
  display: flex !important;
  flex-direction: column;
  flex: 1 1 auto;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 100%;
  box-sizing: border-box;
}

.product-carousel .best-seller-item img {
  max-width: 100%;
  height: auto;
}

.product-carousel .best-seller-item [itemprop="image"] {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 5 / 4;
  overflow: hidden;
}

.product-carousel .best-seller-item [itemprop="image"] img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product-carousel .best-seller-item .ecsp-title,
.product-carousel .best-seller-item [itemprop="name"] {
  display: block;
  min-height: 3.15em;
  margin: 8px 0 4px !important;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 500;
}

.product-carousel .best-seller-item .ecsp-price,
.product-carousel .best-seller-item [itemprop="price"] {
  display: block;
  min-height: 2.6em;
  margin: 0 0 8px !important;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: break-word;
  white-space: normal;
  font-size: 0.72rem;
  line-height: 1.3;
}

.product-carousel .best-seller-item .ecsp-price *,
.product-carousel .best-seller-item [itemprop="price"] * {
  font-size: inherit;
}

.product-carousel .best-seller-item [customprop="addtobag"] {
  margin-top: auto;
}

.product-carousel .best-seller-item [customprop="addtobag"] .form-control__button,
.product-carousel .best-seller-item [customprop="addtobag"] button {
  min-height: 36px;
  padding: 6px 8px;
  font-size: 0.75rem;
  line-height: 1.2;
}

.product-carousel .bestsellers-nav {
  display: none;
  position: absolute;
  top: 92px;
  z-index: 3;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--bg-white);
  color: var(--ink);
  cursor: pointer;
  pointer-events: auto;
}

.product-carousel .bestsellers-nav--prev {
  left: -6px;
}

.product-carousel .bestsellers-nav--next {
  right: -6px;
}

.product-carousel .bestsellers-nav:hover {
  border-color: var(--ink-soft);
}

.product-carousel .bestsellers-nav.is-disabled {
  opacity: 0.28;
  pointer-events: none;
}

@media (min-width: 1024px) {
  .product-carousel {
    padding: 0 0 40px;
  }

  .product-carousel.editorial-rail {
    padding: 40px 0;
  }

  .product-carousel .bestsellers-carousel {
    max-width: 1100px;
    margin-inline: auto;
    padding: 0 44px;
  }

  .product-carousel .bestsellers-track {
    gap: 20px;
  }

  .product-carousel .best-seller-item {
    width: calc((100% - 60px) / 4);
    min-width: calc((100% - 60px) / 4);
    max-width: 240px;
  }

  .product-carousel .best-seller-item .ecsp-title,
  .product-carousel .best-seller-item [itemprop="name"] {
    min-height: 2.7em;
    margin: 10px 0 6px !important;
    font-size: 0.88rem;
    line-height: 1.3;
  }

  .product-carousel .best-seller-item .ecsp-price,
  .product-carousel .best-seller-item [itemprop="price"] {
    min-height: 2.5em;
    font-size: 0.8rem;
  }

  .product-carousel .best-seller-item [customprop="addtobag"] .form-control__button,
  .product-carousel .best-seller-item [customprop="addtobag"] button {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .product-carousel .bestsellers-nav {
    display: inline-flex;
  }

  .product-carousel .bestsellers-nav--prev {
    left: 0;
  }

  .product-carousel .bestsellers-nav--next {
    right: 0;
  }
}

/* Shared editorial product rail — Best Sellers + Grillz on Sale */
.editorial-rail .section-header {
  margin-bottom: 16px;
}

.editorial-rail .best-seller-item {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .editorial-rail .best-seller-item {
    width: calc((100% - 12px) / 2);
    min-width: calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }

  .editorial-rail .editorial-title {
    padding: 0;
  }
}

.editorial-rail .editorial-media {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--bg-white);
}

.editorial-rail .editorial-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.editorial-rail .editorial-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.editorial-rail .editorial-title {
  display: block;
  min-height: 2.6em;
  margin: 10px 0 8px;
  padding: 0 4px;
  overflow: hidden;
  font-family: var(--font-serif);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--ink);
  text-decoration: none;
}

.editorial-rail .editorial-title:hover,
.editorial-rail .editorial-title:focus-visible {
  color: var(--gold-deep);
}

.editorial-rail .editorial-buy {
  display: flex;
  justify-content: center;
  margin-top: auto;
  padding: 0 4px 2px;
}

.editorial-rail .editorial-buy .ecsp {
  width: 136px !important;
  max-width: 136px !important;
  min-width: 0 !important;
  margin-inline: auto;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.editorial-rail .editorial-buy .ecsp-title,
.editorial-rail .editorial-buy [itemprop="name"],
.editorial-rail .editorial-buy [itemprop="image"],
.editorial-rail .editorial-buy .ecsp-price,
.editorial-rail .editorial-buy [itemprop="price"] {
  display: none !important;
}

.editorial-rail .editorial-buy [customprop="addtobag"] .form-control__button,
.editorial-rail .editorial-buy [customprop="addtobag"] button {
  min-height: 40px;
  width: 136px;
  max-width: 136px;
  padding: 6px 8px;
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  line-height: 1.2;
}

@media (max-width: 1023px) {
  .editorial-rail .editorial-buy {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .editorial-rail .editorial-buy .ecsp,
  .editorial-rail .editorial-buy .ecsp-SingleProduct-v2,
  .editorial-rail .editorial-buy form,
  .editorial-rail .editorial-buy [customprop="addtobag"],
  .editorial-rail .editorial-buy [customprop="addtobag"] div {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .editorial-rail .editorial-buy [customprop="addtobag"] .form-control__button,
  .editorial-rail .editorial-buy [customprop="addtobag"] button,
  .editorial-rail .editorial-buy .ecwid-btn {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
  }
}

.editorial-rail .bestsellers-nav {
  top: 22%;
}

.editorial-rail .rail-swipe-hint {
  display: none;
}

@media (max-width: 1023px) {
  .editorial-rail .rail-swipe-hint {
    display: block;
    margin: 14px 0 0;
    padding: 0;
    font-family: var(--font-sans);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.4;
    text-align: center;
    color: var(--muted);
  }
}

.editorial-rail .editorial-cta {
  display: inline-block;
  margin-top: 16px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 3px;
}

.editorial-rail .editorial-cta:hover,
.editorial-rail .editorial-cta:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
}

@media (min-width: 1024px) {
  .editorial-rail .section-header {
    margin-bottom: 24px;
  }

  .editorial-rail .editorial-title {
    min-height: 2.6em;
    margin: 14px 0 10px;
    padding: 0;
    font-size: 1rem;
  }

  .editorial-rail .editorial-buy {
    padding: 0;
  }

  .editorial-rail .editorial-buy .ecsp {
    width: 180px !important;
    max-width: 180px !important;
  }

  .editorial-rail .editorial-buy [customprop="addtobag"] .form-control__button,
  .editorial-rail .editorial-buy [customprop="addtobag"] button {
    min-height: 40px;
    width: 180px;
    max-width: 180px;
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  .editorial-rail .bestsellers-nav {
    top: 108px;
  }
}

/* ==========================================================================
   GUIDES — Custom Teeth & FAQ, homepage root storefront only
   ========================================================================== */

#guides {
  background: var(--bg);
  padding: 32px 0 8px;
}

#guides .container {
  max-width: 1180px;
}

#guides .guides-grid {
  display: grid;
  gap: 0;
}

#guides .guides-panel {
  padding: 4px 0 24px;
  border-bottom: 1px solid var(--line);
}

#guides .guides-panel:last-child {
  border-bottom: 0;
  padding: 24px 0 0;
}

#guides .guides-panel h2 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

#guides .guides-panel p {
  margin: 0 0 14px;
  max-width: 38em;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

#guides .guides-panel a {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 3px;
}

#guides .guides-panel a:hover {
  color: var(--ink);
  border-color: var(--ink);
}

@media (min-width: 1024px) {
  #guides {
    padding: 24px 0 8px;
  }

  #guides .guides-grid {
    grid-template-columns: 1fr 1fr;
  }

  #guides .guides-panel {
    padding: 8px 48px 8px 0;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  #guides .guides-panel:last-child {
    padding: 8px 0 8px 48px;
    border-right: 0;
  }

  #guides .guides-panel h2 {
    font-size: 1.85rem;
    margin-bottom: 14px;
  }

  #guides .guides-panel p {
    font-size: 0.95rem;
    margin-bottom: 18px;
  }
}

/* ==========================================================================
   CATEGORY INTRO — H1 + existing live copy above native Ecwid grid
   ========================================================================== */

.category-intro {
  background: var(--bg);
  padding: 28px 0 4px;
}

.category-intro h1 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.35rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
}

.category-intro h2 {
  margin: 8px 0 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.4;
  color: var(--muted);
}

.category-intro p {
  margin: 14px 0 0;
  max-width: 46em;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

@media (min-width: 1024px) {
  .category-intro {
    padding: 36px 0 8px;
  }
}

/* Category H1/copy is for category listings only — never on product views. */
.category-intro {
  display: none !important;
}

html.gg-category-view .category-intro,
body.is-category-view .category-intro {
  display: block !important;
}

/* ==========================================================================
   GOOGLE REVIEWS — homepage root, category and product views
   SociableKit widget; outer section only.
   ========================================================================== */

#google-reviews {
  background: var(--bg);
  padding: 16px 0 28px;
}

#google-reviews .reviews-embed {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

#google-reviews .sk-ww-google-reviews {
  max-width: 100%;
  background: transparent !important;
}

@media (min-width: 1024px) {
  #google-reviews {
    padding: 0 0 8px;
  }
}

/* ==========================================================================
   TRUST FEATURES — homepage root storefront only
   ========================================================================== */

#trust-features {
  background: var(--bg-white);
  border-top: 1px solid var(--line);
  padding: 28px 0 32px;
}

#trust-features .trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#trust-features .trust-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

#trust-features .trust-icon {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  color: var(--gold);
}

#trust-features .trust-icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

#trust-features .trust-copy {
  min-width: 0;
}

#trust-features .trust-copy h3 {
  margin: 1px 0 4px;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.25;
  color: var(--ink);
}

#trust-features .trust-copy p {
  margin: 0;
  font-size: 0.7rem;
  line-height: 1.4;
  color: var(--muted);
}

@media (min-width: 1024px) {
  #trust-features {
    padding: 36px 0 48px;
  }

  #trust-features .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  #trust-features .trust-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 0 28px;
  }

  #trust-features .trust-item + .trust-item {
    border-left: 1px solid var(--line);
  }

  #trust-features .trust-icon,
  #trust-features .trust-icon svg {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }

  #trust-features .trust-copy h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
  }

  #trust-features .trust-copy p {
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   INSTAGRAM — homepage root storefront only
   Elfsight widget; outer section only.
   ========================================================================== */

#instagram {
  background: var(--bg);
  padding: 36px 0 40px;
}

#instagram .instagram-embed {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

#instagram [class*="elfsight-app-"] {
  max-width: 100%;
}

/* Keep our Georgia heading; hide the widget's duplicate title only. */
#instagram .eapps-instagram-feed-title-container,
#instagram .eapps-instagram-feed-title {
  display: none !important;
}

@media (max-width: 1023px) {
  #instagram .section-header h2 {
    font-size: 1.38rem;
  }

  #instagram .instagram-embed {
    overflow-x: hidden;
    scrollbar-width: none;
  }

  #instagram .instagram-embed::-webkit-scrollbar {
    display: none;
  }

  #instagram .eapps-instagram-feed-posts-item {
    width: 50% !important;
  }
}

@media (min-width: 1024px) {
  #instagram {
    padding: 48px 0 64px;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  background: #12100e;
  color: #ece7de;
  padding: 28px 0 24px;
  padding-bottom: calc(40px + var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
}

.footer-grid {
  display: grid;
  gap: 0;
}

.footer-col {
  display: contents;
}

.footer-group {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-group summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: #fff;
}

.footer-group summary::-webkit-details-marker {
  display: none;
}

.footer-group summary svg {
  width: 12px;
  height: 8px;
  opacity: 0.5;
  transition: transform var(--motion-fast) var(--ease-out);
}

.footer-group[open] summary svg {
  transform: rotate(180deg);
}

.footer-intro {
  color: rgba(236, 231, 222, 0.62);
  font-size: 0.9rem;
  line-height: 1.8;
  margin: 0 0 24px;
  text-wrap: pretty;
}

.footer-contacts li,
.footer-links a {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 42px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(236, 231, 222, 0.8);
  transition: color var(--motion-quick) var(--ease-out);
}

.footer-contacts li {
  margin-bottom: 10px;
}

.footer-contacts svg {
  width: 14px;
  height: 14px;
  margin-top: 7px;
  flex-shrink: 0;
  opacity: 0.55;
}

.footer-links {
  display: grid;
  gap: 0;
  padding-bottom: 18px;
}

.footer-links a:hover,
.footer-contacts a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 18px;
  padding: 4px 0 22px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--touch);
  height: var(--touch);
  border: 0;
  color: #ece7de;
  opacity: 0.8;
  transition: color var(--motion-quick) var(--ease-out), opacity var(--motion-quick) var(--ease-out);
}

.footer-social a:hover {
  color: var(--gold-soft);
  opacity: 1;
}

.footer-bottom {
  margin-top: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  font-size: 12px;
  line-height: 1.75;
  color: rgba(236, 231, 222, 0.46);
  max-width: 72ch;
}

@media (min-width: 1024px) {
  .site-footer {
    padding: 88px 0 44px;
    padding-bottom: 44px;
  }

  .footer-grid {
    grid-template-columns: 1.45fr 1fr 1.15fr 0.8fr;
    gap: 80px;
    align-items: start;
  }

  .footer-col {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }

  .footer-group {
    border-bottom: 0;
  }

  .footer-group summary {
    pointer-events: none;
    min-height: auto;
    margin-bottom: 26px;
    cursor: default;
    font-size: 1.45rem;
    position: relative;
    display: block;
    padding-bottom: 16px;
  }

  .footer-group summary::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 1px;
    background: var(--gold);
  }

  .footer-group summary svg {
    display: none;
  }

  .footer-group .footer-links,
  .footer-group .footer-intro,
  .footer-group .footer-contacts {
    display: block !important;
  }

  .footer-group .footer-social {
    display: flex !important;
  }

  .footer-links {
    padding-bottom: 0;
    gap: 0;
  }

  .footer-links a {
    min-height: 36px;
  }

  .footer-bottom {
    margin-top: 72px;
  }
}

/* ==========================================================================
   MOBILE BOTTOM NAVIGATION
   ========================================================================== */

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 140;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
  padding-bottom: env(safe-area-inset-bottom, 0px);
  padding-left: env(safe-area-inset-left, 0px);
  padding-right: env(safe-area-inset-right, 0px);
  background: var(--bg-white);
  border-top: 1px solid var(--line);
}

.bottom-nav a,
.bottom-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  min-height: var(--bottom-nav-h);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color var(--motion-quick) var(--ease-out);
}

.bottom-nav a.is-active,
.bottom-nav button.is-active,
.bottom-nav a:hover,
.bottom-nav button:hover {
  color: var(--ink);
}

.bottom-nav a.is-active::before,
.bottom-nav button.is-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 18px;
  height: 1px;
  transform: translateX(-50%);
  background: var(--gold);
}

.bottom-nav svg {
  width: 22px;
  height: 22px;
}

.bottom-nav .tool-count {
  top: 6px;
  right: calc(50% - 18px);
}

@media (min-width: 1024px) {
  .bottom-nav {
    display: none;
  }

  .site-footer {
    padding-bottom: 48px;
  }

  html {
    scroll-padding-bottom: 0;
  }
}

body.menu-open,
body.search-open {
  overflow: hidden;
}

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

/* ==========================================================================
   ABOUT US — premium editorial page
   ========================================================================== */

.about-page .page-content {
  background: var(--bg);
}

.about-split {
  display: grid;
  gap: 28px;
}

.about-split .container {
  max-width: 1180px;
}

.about-kicker {
  margin: 0 0 12px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: var(--track-label);
  text-transform: uppercase;
  color: var(--gold-deep);
}

.about-copy h1,
.about-copy h2 {
  margin: 0 0 16px;
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.12;
  color: var(--ink);
}

.about-copy h1 {
  font-size: clamp(2rem, 6vw, 3.15rem);
  max-width: 12ch;
}

.about-copy h2 {
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  max-width: 16ch;
}

.about-copy p {
  margin: 0 0 14px;
  max-width: 38em;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-media {
  margin: 0;
}

.about-media picture,
.about-media img {
  display: block;
  width: 100%;
  height: auto;
}

.about-media img {
  object-fit: cover;
  object-position: 50% 42%;
  background: #ece6dc;
}

#about-intro {
  padding: 28px 0 8px;
  background: var(--bg);
}

#about-intro .about-media img {
  aspect-ratio: 4 / 3;
}

#about-materials {
  padding: 36px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--line);
}

#about-materials .about-media img {
  aspect-ratio: 4 / 3;
}

#about-why {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 28px 0 32px;
}

#about-why .trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

#about-why .trust-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 0;
}

#about-why .trust-icon {
  color: var(--gold);
  width: 26px;
  height: 26px;
}

#about-why .trust-icon svg {
  display: block;
  width: 26px;
  height: 26px;
}

#about-why .trust-copy h3 {
  margin: 0 0 6px;
  font-family: var(--font-serif);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

#about-why .trust-copy p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
}

#about-fit {
  padding: 36px 0;
  background: var(--bg-white);
  border-top: 1px solid var(--line);
}

#about-fit .about-media img {
  aspect-ratio: 4 / 3;
}

.about-link {
  display: inline-block;
  margin-top: 18px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold-deep);
  border-bottom: 1px solid var(--gold-soft);
  padding-bottom: 3px;
}

.about-link:hover,
.about-link:focus-visible {
  color: var(--ink);
  border-color: var(--ink);
}

#about-experience {
  padding: 56px 20px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  text-align: center;
}

#about-experience h2 {
  margin: 0 0 14px;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4.2vw, 2.6rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

#about-experience p {
  margin: 0 auto;
  max-width: 34em;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

.about-page #google-reviews {
  display: block;
  padding-top: 8px;
}

#about-cta {
  padding: 48px 0 64px;
  background: var(--bg-white);
  border-top: 1px solid var(--line);
  text-align: center;
}

#about-cta h2 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--ink);
}

#about-cta p {
  margin: 0 auto 28px;
  max-width: 34em;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

#about-cta .about-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px 28px;
}

#about-cta .about-link {
  margin-top: 0;
}

@media (min-width: 768px) {
  #about-intro,
  #about-materials,
  #about-fit {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

@media (min-width: 1024px) {
  .about-split .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .about-split--copy-first .about-copy { order: 1; }
  .about-split--copy-first .about-media { order: 2; }
  .about-split--image-first .about-media { order: 1; }
  .about-split--image-first .about-copy { order: 2; }

  .about-copy h1 { font-size: 3.1rem; }
  .about-copy p { font-size: 1rem; }

  #about-intro { padding: 48px 0 32px; }
  #about-intro .about-media img,
  #about-materials .about-media img,
  #about-fit .about-media img {
    aspect-ratio: 4 / 3;
    max-height: 560px;
  }

  #about-why {
    padding: 44px 0 48px;
  }

  #about-why .trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
  }

  #about-why .trust-item {
    align-items: center;
    text-align: center;
    padding: 0 24px;
  }

  #about-why .trust-item + .trust-item {
    border-left: 1px solid var(--line);
  }

  #about-experience { padding: 80px 20px; }

  #about-cta { padding: 64px 0 88px; }
}
