@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url("../fonts/open-sans-latin.woff2") format("woff2");
}

:root {
  --g-brand: #b0195b;
  --g-brand-dark: #8f1248;
  --g-blush: #f6d8e3;
  --g-ink: #201721;
  --g-black: #0f0c10;
  --g-paper: #fffafc;
  --g-white: #fff;
  --g-muted: #6f6870;
  --g-line: #eadfe4;
  --g-success: #176b3a;
  --g-radius-sm: 10px;
  --g-radius: 18px;
  --g-radius-lg: 30px;
  --g-shadow: 0 12px 38px rgb(32 23 33 / 10%);
  --g-shadow-soft: 0 6px 20px rgb(32 23 33 / 8%);
  --g-container: 1240px;
  --g-reading: 760px;
  --g-header-offset: 148px;
}

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

html {
  color-scheme: light;
  scroll-behavior: smooth;
  scroll-padding-top: var(--g-header-offset);
  text-size-adjust: 100%;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--g-ink);
  background: var(--g-paper);
  font-family: "Open Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

figure {
  margin: 0;
}

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

button,
[type="button"],
[type="submit"] {
  cursor: pointer;
}

a {
  color: var(--g-brand-dark);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

a:hover {
  color: var(--g-brand);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: 0 0.65em;
  color: var(--g-ink);
  font-weight: 700;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4.75rem);
  letter-spacing: -0.045em;
}

h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.25rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  letter-spacing: -0.02em;
}

p {
  margin-block: 0 1em;
}

blockquote {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-inline-start: 4px solid var(--g-brand);
  border-radius: 0 var(--g-radius-sm) var(--g-radius-sm) 0;
  background: var(--g-blush);
  font-size: 1.1rem;
}

:focus-visible {
  outline: 3px solid #2774d9;
  outline-offset: 3px;
}

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

.screen-reader-text:focus,
.skip-link:focus {
  z-index: 100000;
  top: 0.75rem;
  left: 0.75rem;
  width: auto;
  height: auto;
  padding: 0.8rem 1rem;
  clip: auto;
  border-radius: 6px;
  color: var(--g-white);
  background: var(--g-black);
}

.g-container,
.gh-wrap {
  width: min(100% - 2rem, var(--g-container));
  margin-inline: auto;
}

.g-container--narrow {
  width: min(100% - 2rem, var(--g-reading));
}

.icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
}

.g-button,
.gh-btn,
.button,
button.button,
input.button,
.wp-element-button,
.wp-block-button__link,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--g-white);
  background: var(--g-brand);
  box-shadow: none;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.g-button:hover,
.gh-btn:hover,
.button:hover,
button.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  color: var(--g-white);
  background: var(--g-brand-dark);
  transform: translateY(-1px);
}

.gh-btn--secondary,
.gh-btn--ghost,
.button.alt-outline {
  border-color: currentColor;
  color: var(--g-ink);
  background: transparent;
}

.gh-btn--secondary:hover,
.gh-btn--ghost:hover {
  border-color: var(--g-brand);
  color: var(--g-brand-dark);
  background: var(--g-white);
}

.gh-text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--g-brand-dark);
  font-weight: 700;
  text-decoration: none;
}

/* Header: the same three-band hierarchy as the current site. */
.site-header {
  position: relative;
  z-index: 120;
  width: 100%;
  background: var(--g-white);
}

.announcement {
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 0.45rem 0;
  color: var(--g-black);
  background: var(--g-blush);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.header-main {
  border-bottom: 1px solid var(--g-line);
  background: var(--g-white);
}

.header-main__inner {
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(150px, 250px) minmax(260px, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
}

.site-brand {
  display: inline-flex;
  width: fit-content;
  max-width: 220px;
  align-items: center;
  color: var(--g-black);
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
  text-decoration: none;
}

.site-brand:hover {
  color: var(--g-black);
}

.site-brand__logo {
  width: auto;
  max-width: 220px;
  max-height: 46px;
  object-fit: contain;
}

.header-account,
.header-cart,
.header-contact,
.menu-toggle,
.mobile-search-toggle {
  min-width: 44px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 0;
  color: inherit;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
}

.header-account:hover,
.header-cart:hover,
.header-contact:hover {
  color: var(--g-brand);
}

.commerce-nav {
  color: var(--g-white);
  background: var(--g-black);
}

.commerce-nav__inner {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: stretch;
}

.desktop-menu {
  min-width: 0;
  flex: 1 1 auto;
}

.primary-menu,
.primary-menu .sub-menu,
.mobile-menu,
.mobile-menu .sub-menu,
.site-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.primary-menu {
  min-height: 44px;
  display: flex;
  align-items: stretch;
  gap: 0.1rem;
}

.primary-menu > li {
  position: static;
  display: flex;
  align-items: stretch;
}

.primary-menu > li > a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.72rem;
  color: var(--g-white);
  font-size: clamp(0.66rem, 0.8vw, 0.76rem);
  font-weight: 600;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.primary-menu > li.menu-item-has-children > a::after {
  width: 0.35rem;
  height: 0.35rem;
  margin-inline-start: 0.45rem;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.primary-menu > li:hover > a,
.primary-menu > li:focus-within > a,
.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-ancestor > a {
  color: var(--g-white);
  background: rgb(255 255 255 / 10%);
}

.primary-menu .menu-item--secret {
  align-items: center;
  margin-inline: 0.3rem auto;
}

.primary-menu .menu-item--secret > a {
  min-height: 30px;
  margin-block: 7px;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  color: var(--g-white);
  background: var(--g-brand);
  font-size: 0.66rem;
  font-weight: 800;
}

.primary-menu > li > .sub-menu {
  position: absolute;
  z-index: 10;
  top: 100%;
  right: 0;
  left: 0;
  display: none;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem 3rem;
  max-height: min(72vh, 670px);
  padding: 1.4rem clamp(1.25rem, 3vw, 2.5rem) 2.25rem;
  overflow: auto;
  border: 1px solid var(--g-line);
  border-top: 0;
  border-radius: 0 0 12px 12px;
  color: var(--g-ink);
  background: var(--g-white);
  box-shadow: var(--g-shadow);
}

.primary-menu > li:hover > .sub-menu,
.primary-menu > li:focus-within > .sub-menu {
  display: grid;
}

.primary-menu .sub-menu li {
  position: relative;
  min-width: 0;
}

.primary-menu .sub-menu a {
  display: flex;
  min-height: 40px;
  align-items: center;
  gap: 0.65rem;
  padding: 0.25rem 0;
  color: var(--g-ink);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
}

.primary-menu > li > .sub-menu > li > a {
  min-height: 38px;
  padding: 0.25rem 0 0.65rem;
  border-bottom: 1px solid var(--g-line);
  color: var(--g-ink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.primary-menu > li > .sub-menu > li > a .menu-item__media {
  display: none;
}

.primary-menu .sub-menu a:hover,
.primary-menu .sub-menu a:focus-visible {
  color: var(--g-brand-dark);
}

.primary-menu .sub-menu .sub-menu {
  display: grid;
  gap: 0.08rem;
  margin-top: 0.45rem;
  padding: 0;
  border: 0;
}

.primary-menu .sub-menu .sub-menu a {
  min-height: 44px;
  padding: 0.25rem 0;
  color: var(--g-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.menu-item__media {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  overflow: hidden;
  border-radius: 9px;
  background: #f6f1f3;
}

.menu-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-cart {
  position: relative;
  color: var(--g-white);
}

.header-cart__count {
  min-width: 1.25rem;
  height: 1.25rem;
  display: inline-grid;
  place-items: center;
  padding-inline: 0.25rem;
  border-radius: 999px;
  color: var(--g-black);
  background: var(--g-white);
  font-size: 0.65rem;
  line-height: 1;
}

.header-contact {
  min-width: fit-content;
  padding-inline: 0.75rem;
  color: var(--g-white);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.header-contact .icon {
  width: 1rem;
}

.menu-toggle,
.mobile-search-toggle,
.mobile-search-panel,
.menu-drawer-shell {
  display: none;
}

/* Native predictive product search. */
.header-search,
.product-search-shell {
  width: 100%;
  min-width: 0;
}

.product-search-shell {
  position: relative;
}

.product-search {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.product-search__input {
  width: 100%;
  min-height: 42px;
  padding: 0.65rem 3rem 0.65rem 1rem;
  border: 1px solid var(--g-line);
  border-radius: 999px;
  color: var(--g-ink);
  background: #faf7f9;
  font-size: 0.86rem;
  line-height: 1.2;
}

.product-search__input:focus {
  border-color: var(--g-brand);
  background: var(--g-white);
  outline: 3px solid rgb(176 25 91 / 16%);
}

.product-search__submit {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 42px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--g-ink);
  background: transparent;
}

.predictive-search[hidden] {
  display: none;
}

.predictive-search {
  position: absolute;
  z-index: 170;
  top: calc(100% + 12px);
  left: 50%;
  width: min(1180px, calc(100vw - 2rem));
  max-height: min(72vh, 720px);
  overflow: auto;
  border: 1px solid var(--g-line);
  border-radius: 14px;
  color: var(--g-ink);
  background: var(--g-white);
  box-shadow: 0 22px 60px rgb(32 23 33 / 20%);
  transform: translateX(-50%);
}

.predictive-search__header {
  position: sticky;
  z-index: 2;
  top: 0;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.45rem 0.75rem 0.45rem 1.25rem;
  border-bottom: 1px solid var(--g-line);
  background: var(--g-white);
}

.predictive-search__status {
  margin: 0;
  color: var(--g-muted);
  font-size: 0.78rem;
  font-weight: 600;
}

.predictive-search__close {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: var(--g-muted);
  background: transparent;
}

.predictive-search__close:hover {
  color: var(--g-ink);
  background: #f8f2f5;
}

.predictive-search__layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
}

.predictive-search__layout > section {
  padding: 1rem;
}

.predictive-search__layout h2 {
  margin-bottom: 0.7rem;
  color: var(--g-brand-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.predictive-search__categories {
  border-right: 1px solid var(--g-line);
  background: #fcf8fa;
}

.predictive-search__products:only-child {
  grid-column: 1 / -1;
}

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

.predictive-category {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0.25rem;
  border-bottom: 1px solid var(--g-line);
  color: var(--g-ink);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
}

.predictive-category span {
  color: var(--g-muted);
  font-size: 0.7rem;
}

.predictive-products {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.75rem;
}

.predictive-product {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 0.45rem;
  border: 1px solid transparent;
  border-radius: 10px;
  color: var(--g-ink);
  text-decoration: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}

.predictive-product:hover,
.predictive-product:focus-visible {
  border-color: var(--g-line);
  color: var(--g-ink);
  box-shadow: var(--g-shadow-soft);
}

.predictive-product img {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 0.55rem;
  object-fit: contain;
  background: #fbf8fa;
}

.predictive-product__name {
  min-height: 2.6em;
  display: -webkit-box;
  overflow: hidden;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.predictive-product__price {
  margin-top: auto;
  padding-top: 0.4rem;
  color: var(--g-brand-dark);
  font-size: 0.75rem;
  font-weight: 800;
}

.predictive-product__price del {
  margin-right: 0.25rem;
  color: var(--g-muted);
  font-size: 0.68rem;
  font-weight: 500;
}

.predictive-product__stock {
  color: var(--g-muted);
  font-size: 0.67rem;
}

.predictive-search__all {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--g-line);
  color: var(--g-brand-dark);
  background: #fcf8fa;
  font-size: 0.8rem;
  font-weight: 800;
  text-decoration: none;
}

.predictive-search__empty,
.predictive-search__error {
  padding: 2rem;
  text-align: center;
}

.predictive-search__empty p,
.predictive-search__error {
  margin: 0.35rem 0 0;
  color: var(--g-muted);
  font-size: 0.8rem;
}

.predictive-search__loading {
  min-height: 230px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem;
}

.predictive-search__loading span {
  border-radius: 10px;
  background: linear-gradient(100deg, #f6f0f3 20%, #fff 40%, #f6f0f3 60%);
  background-size: 200% 100%;
  animation: search-loading 1.2s linear infinite;
}

@keyframes search-loading {
  to { background-position-x: -200%; }
}

/* Main content and editorial templates. */
.site-main:not(.site-main--front):not(.shop-main):not(.site-main--landing) {
  min-height: 52vh;
  padding-block: clamp(3rem, 6vw, 6rem);
}

.site-main--landing,
.entry-content--landing {
  margin: 0;
  padding: 0;
}

.entry-header,
.archive-header {
  margin-bottom: 2rem;
}

.entry-title,
.archive-header h1 {
  max-width: 18ch;
}

.entry-content > :first-child,
.entry-header > :first-child {
  margin-top: 0;
}

.entry-content > :last-child {
  margin-bottom: 0;
}

.entry-content :where(img, video, iframe) {
  border-radius: var(--g-radius-sm);
}

.entry-featured {
  margin-bottom: 2.5rem;
}

.entry-featured img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
  border-radius: var(--g-radius);
}

.entry-meta,
.post-card__meta {
  color: var(--g-brand-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.post-navigation {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--g-line);
}

.post-navigation .nav-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.post-navigation a {
  display: block;
  padding: 1rem;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius-sm);
  text-decoration: none;
}

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

.post-card {
  overflow: hidden;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius);
  background: var(--g-white);
  box-shadow: var(--g-shadow-soft);
}

.post-card__media {
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  background: #f2ecef;
}

.post-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.post-card:hover .post-card__media img {
  transform: scale(1.025);
}

.post-card__content {
  padding: 1.25rem;
}

.post-card__title {
  font-size: 1.25rem;
}

.post-card__title a {
  color: inherit;
  text-decoration: none;
}

.error-404 .product-search,
.no-results .product-search,
.error-404 .product-search-shell,
.no-results .product-search-shell {
  max-width: 560px;
  margin-block: 1.5rem;
}

.comments-area {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--g-line);
}

.comment-list {
  padding: 0;
  list-style: none;
}

.comment-body {
  margin-block: 1rem;
  padding: 1rem;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius-sm);
  background: var(--g-white);
}

/* The existing Home uses gh-* classes; these styles preserve that vocabulary. */
.front-page-content,
.gh-home-content {
  margin: 0;
}

.gh-section {
  position: relative;
  padding-block: clamp(3.5rem, 7vw, 6.5rem);
}

.gh-section:nth-of-type(even):not(.gh-hero) {
  background: #fff;
}

.gh-section--dark,
.gh-dark {
  color: #f9f2f6;
  background: var(--g-black);
}

.gh-section--dark h2,
.gh-section--dark h3,
.gh-dark h2,
.gh-dark h3 {
  color: var(--g-white);
}

.gh-kicker,
.gh-eyebrow {
  margin-bottom: 0.75rem;
  color: var(--g-brand-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.3;
  text-transform: uppercase;
}

.gh-section--dark .gh-kicker,
.gh-hero .gh-kicker,
.gh-dark .gh-kicker {
  color: #f2a6c4;
}

.gh-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

.gh-head > :first-child {
  max-width: 820px;
}

.gh-head h2,
.gh-head p {
  margin-bottom: 0;
}

.gh-lead,
.gh-intro {
  max-width: 760px;
  color: var(--g-muted);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
}

.gh-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.5rem;
}

.gh-hero {
  position: relative;
  min-height: clamp(520px, 48vw, 700px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--g-white);
  background: #110d11;
  isolation: isolate;
}

.gh-hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgb(15 12 16 / 86%) 0%, rgb(15 12 16 / 62%) 40%, rgb(15 12 16 / 8%) 74%);
  content: "";
}

.gh-hero > img,
.gh-hero > picture,
.gh-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gh-hero > picture img,
.gh-hero > img,
.gh-hero__media img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: center;
}

.gh-hero__content,
.gh-hero .gh-wrap {
  position: relative;
  z-index: 2;
  max-width: var(--g-container);
  padding-block: clamp(4rem, 8vw, 7rem);
}

.gh-hero__content > *,
.gh-hero .gh-wrap > * {
  max-width: 680px;
}

.gh-hero h1,
.gh-hero h2 {
  color: var(--g-white);
  font-size: clamp(2.4rem, 5vw, 5.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.gh-hero p,
.gh-hero__intro {
  color: #f0e9ed;
}

.gh-hero .gh-btn--primary {
  color: var(--g-white);
  background: var(--g-brand);
}

.gh-hero .gh-btn--secondary,
.gh-hero .gh-btn--ghost {
  border-color: rgb(255 255 255 / 55%);
  color: var(--g-white);
}

.gh-trust-grid,
.gh-proof-grid,
.gh-benefit-grid,
.gh-path-grid,
.gh-intent-grid,
.gh-category-grid,
.gh-service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.gh-trust-grid {
  position: relative;
  z-index: 3;
  margin-top: -2rem;
}

.gh-card,
.gh-proof-card,
.gh-benefit-card,
.gh-path-card,
.gh-intent-card,
.gh-service-card,
.gh-trust-card {
  min-width: 0;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius-sm);
  color: var(--g-ink);
  background: var(--g-white);
  box-shadow: var(--g-shadow-soft);
}

.gh-card h3,
.gh-proof-card h3,
.gh-benefit-card h3,
.gh-path-card h3,
.gh-intent-card h3,
.gh-service-card h3,
.gh-trust-card h3 {
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.gh-card p,
.gh-proof-card p,
.gh-benefit-card p,
.gh-path-card p,
.gh-intent-card p,
.gh-service-card p,
.gh-trust-card p {
  margin-bottom: 0;
  color: var(--g-muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.gh-proof-grid,
.gh-path-grid,
.gh-intent-grid,
.gh-category-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gh-image-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gh-image-card {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: var(--g-radius);
  color: var(--g-white);
  background: var(--g-black);
  box-shadow: var(--g-shadow-soft);
  text-decoration: none;
  isolation: isolate;
}

.gh-image-card::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgb(15 12 16 / 82%) 100%);
  content: "";
}

.gh-image-card > img,
.gh-image-card > picture {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 300ms ease;
}

.gh-image-card > picture img,
.gh-image-card > img {
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
}

.gh-image-card:hover {
  color: var(--g-white);
}

.gh-image-card:hover > img,
.gh-image-card:hover > picture {
  transform: scale(1.025);
}

.gh-image-card > :not(img):not(picture) {
  padding: 1.25rem;
}

.gh-editorial,
.gh-split,
.gh-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
}

.gh-editorial__media,
.gh-split__media,
.gh-feature__media {
  overflow: hidden;
  border-radius: var(--g-radius-lg);
  background: #f2ecef;
}

.gh-editorial__media img,
.gh-split__media img,
.gh-feature__media img {
  width: 100%;
  min-height: 460px;
  object-fit: cover;
}

.gh-pill-list,
.gh-check-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  padding: 0;
  margin: 1.25rem 0;
  list-style: none;
}

.gh-pill-list li,
.gh-check-list li {
  padding: 0.55rem 0.8rem;
  border: 1px solid var(--g-line);
  border-radius: 999px;
  background: var(--g-white);
  font-size: 0.82rem;
  font-weight: 600;
}

/* Footer. */
.site-footer {
  color: #e8e0e5;
  background: var(--g-black);
}

.site-footer__top {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.site-footer__logo {
  width: min(220px, 60vw);
  display: block;
  margin-inline: auto;
}

.site-footer__logo img {
  width: 100%;
  max-height: 66px;
  object-fit: contain;
}

.site-footer__top > hr {
  margin: 2rem 0 2.5rem;
  border: 0;
  border-top: 1px solid rgb(255 255 255 / 22%);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) minmax(280px, 1.05fr) minmax(240px, 0.9fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.site-footer__about > p {
  max-width: 48ch;
  color: #c8bec5;
  font-size: 0.84rem;
  line-height: 1.7;
}

.footer-widget__title,
.site-footer h2,
.site-footer h3 {
  color: var(--g-white);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer h2 {
  margin-bottom: 1.15rem;
  font-size: 1rem;
}

.site-footer a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  color: #d8cfd5;
  font-size: 0.84rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--g-white);
}

.site-footer__dots {
  height: 5px;
  margin: 1.5rem 0;
  border: 0;
  background-image: radial-gradient(circle, rgb(255 255 255 / 55%) 1.5px, transparent 1.6px);
  background-size: 8px 5px;
}

.site-footer__legal li + li {
  border-top: 1px solid rgb(255 255 255 / 9%);
}

.site-footer__legal a {
  width: 100%;
  min-height: 34px;
  font-size: 0.78rem;
}

.footer-posts {
  display: grid;
  gap: 0.8rem;
}

.footer-post {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 0.75rem;
}

.footer-post__image {
  width: 72px;
  height: 72px;
  min-height: 72px !important;
  overflow: hidden;
  border-radius: 8px;
  background: #2b252a;
}

.footer-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer-post h3 {
  margin: 0 0 0.25rem;
  font-size: 0.74rem;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
}

.footer-post h3 a {
  min-height: 0;
  color: #eee8ec;
  font-size: inherit;
}

.footer-post time {
  color: #a99fa6;
  font-size: 0.68rem;
}

.footer-contact-list,
.footer-hours {
  display: grid;
  gap: 0.8rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #c8bec5;
  font-size: 0.78rem;
  line-height: 1.55;
}

.footer-contact-list .icon {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0.18rem;
  color: var(--g-blush);
}

.footer-contact-list a {
  min-height: 0;
  font-size: inherit;
}

.footer-hours {
  gap: 0.45rem;
  padding: 0.8rem 0 0 1.8rem !important;
}

.footer-hours li {
  display: grid;
  color: #bfb5bc;
  font-size: 0.74rem;
}

.footer-hours strong {
  color: #eee8ec;
}

.site-footer__bottom {
  border-top: 1px solid rgb(255 255 255 / 12%);
}

.site-footer__bottom-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: #9e959c;
  font-size: 0.76rem;
}

.site-footer__bottom p {
  margin: 0;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 50%;
  color: #eee8ec;
}

.footer-social a:hover {
  border-color: var(--g-blush);
  color: var(--g-blush);
}

.footer-social .icon {
  width: 1rem;
  height: 1rem;
}

.whatsapp-fab {
  position: fixed;
  z-index: 100;
  right: 1rem;
  bottom: 1rem;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border: 2px solid #117a3d;
  border-radius: 999px;
  color: #073d21;
  background: #38df7d;
  box-shadow: 0 10px 28px rgb(0 0 0 / 22%);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
}

.whatsapp-fab:hover {
  color: #052c18;
  background: #56eb91;
}

/* WooCommerce: complete theme-owned styling. */
.shop-main {
  min-height: 60vh;
  padding-block: clamp(2.5rem, 5vw, 5rem);
}

.woocommerce-breadcrumb {
  margin-bottom: 1.5rem;
  color: var(--g-muted);
  font-size: 0.76rem;
}

.woocommerce-breadcrumb a {
  color: var(--g-muted);
}

.woocommerce-products-header {
  max-width: 920px;
  margin-bottom: 2rem;
}

.woocommerce-products-header__title {
  max-width: 18ch;
}

.term-description {
  color: var(--g-muted);
}

.woocommerce .woocommerce-result-count {
  float: left;
  margin: 0.8rem 0 1.5rem;
  color: var(--g-muted);
  font-size: 0.8rem;
}

.woocommerce .woocommerce-ordering {
  float: right;
  margin: 0 0 1.5rem;
}

.woocommerce .woocommerce-ordering select,
.woocommerce select,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce-page input.input-text,
.woocommerce-page textarea {
  min-height: 44px;
  padding: 0.65rem 0.85rem;
  border: 1px solid #d8cbd1;
  border-radius: 8px;
  color: var(--g-ink);
  background: var(--g-white);
}

.woocommerce textarea {
  min-height: 120px;
}

.woocommerce .products,
.woocommerce ul.products,
.wc-block-grid__products {
  clear: both;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.2vw, 1.6rem);
  padding: 0;
  margin: 0;
  list-style: none;
}

.woocommerce .products::before,
.woocommerce .products::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product,
.wc-block-grid__product {
  position: relative;
  width: auto;
  min-width: 0;
  display: flex;
  float: none;
  flex-direction: column;
  padding: 0 0 1rem;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius-sm);
  background: var(--g-white);
  box-shadow: 0 4px 18px rgb(32 23 33 / 5%);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.woocommerce ul.products li.product:hover {
  border-color: #d8c2cc;
  box-shadow: var(--g-shadow-soft);
  transform: translateY(-2px);
}

.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link {
  color: inherit;
  text-decoration: none;
}

.woocommerce ul.products li.product a img,
.wc-block-grid__product-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  margin: 0 0 0.9rem;
  border-radius: 0;
  background: #f6f1f3;
  object-fit: contain;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.wc-block-grid__product-title {
  min-height: 3.15em;
  padding: 0 1rem;
  margin: 0 0 0.55rem;
  color: var(--g-ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

.product-card__brand {
  display: block;
  padding: 0 1rem;
  margin-bottom: 0.2rem;
  overflow: hidden;
  color: var(--g-muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.3;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}

.woocommerce ul.products li.product .price,
.wc-block-grid__product-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  padding: 0 1rem;
  margin: auto 0 0.75rem;
  color: var(--g-brand-dark);
  font-size: 1rem;
  font-weight: 800;
}

.woocommerce ul.products li.product .price del,
.price del {
  color: var(--g-muted);
  font-size: 0.76em;
  font-weight: 500;
  opacity: 0.85;
}

.woocommerce ul.products li.product .price ins,
.price ins {
  color: var(--g-brand-dark);
  text-decoration: none;
}

.woocommerce ul.products li.product .button,
.wc-block-grid__product-add-to-cart .wp-block-button__link {
  align-self: flex-start;
  margin: 0 1rem;
  font-size: 0.78rem;
}

.woocommerce span.onsale,
.onsale {
  position: absolute;
  z-index: 3;
  top: 0.65rem;
  left: 0.65rem;
  min-width: 0;
  min-height: 0;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  color: var(--g-white);
  background: var(--g-brand);
  font-size: 0.66rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.star-rating {
  position: relative;
  width: 5.4em;
  height: 1em;
  overflow: hidden;
  color: #9b6a00;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.star-rating::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #c8bfc4;
  content: "★★★★★";
}

.star-rating span {
  position: absolute;
  top: 0;
  left: 0;
  height: 1em;
  overflow: hidden;
  text-indent: -9999px;
}

.star-rating span::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #9b6a00;
  content: "★★★★★";
  text-indent: 0;
}

.woocommerce ul.products li.product .star-rating {
  margin: 0 1rem 0.6rem;
}

.woocommerce-pagination,
.navigation.pagination {
  clear: both;
  margin-top: 2.5rem;
}

.woocommerce-pagination ul.page-numbers,
.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  padding: 0;
  margin: 0;
  border: 0;
  list-style: none;
}

.woocommerce-pagination ul.page-numbers li {
  border: 0;
}

.page-numbers,
.woocommerce-pagination .page-numbers {
  min-width: 44px;
  min-height: 44px;
  display: inline-grid;
  place-items: center;
  padding: 0.5rem;
  border: 1px solid var(--g-line);
  border-radius: 999px;
  color: var(--g-ink);
  background: var(--g-white);
  text-decoration: none;
}

.page-numbers.current,
.page-numbers:hover {
  border-color: var(--g-brand);
  color: var(--g-white);
  background: var(--g-brand);
}

.g-load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.g-load-more[aria-busy="true"] {
  cursor: wait;
  opacity: 0.7;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  position: relative;
  padding: 1rem 1.15rem;
  margin: 0 0 1.5rem;
  border: 1px solid #d8cbd1;
  border-top: 4px solid var(--g-brand);
  border-radius: var(--g-radius-sm);
  color: var(--g-ink);
  background: var(--g-white);
  list-style: none;
}

.woocommerce-message {
  border-top-color: var(--g-success);
}

.woocommerce-error {
  border-top-color: #a52828;
}

.woocommerce-message .button,
.woocommerce-info .button {
  float: right;
  min-height: 36px;
  padding-block: 0.5rem;
}

.single-product div.product {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.single-product div.product .woocommerce-product-gallery,
.single-product div.product .summary {
  width: auto;
  float: none;
  margin: 0;
}

.single-product .woocommerce-product-gallery__wrapper {
  margin: 0;
}

.single-product .woocommerce-product-gallery__image {
  overflow: hidden;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius);
  background: var(--g-white);
}

.single-product .woocommerce-product-gallery__image img {
  width: 100%;
  max-height: 760px;
  object-fit: contain;
}

.single-product .flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0;
  margin: 0.75rem 0 0;
  list-style: none;
}

.single-product .flex-control-thumbs img {
  aspect-ratio: 1;
  border: 1px solid var(--g-line);
  border-radius: 8px;
  object-fit: cover;
}

.single-product div.product .summary {
  position: sticky;
  top: 1.5rem;
  align-self: start;
}

.single-product .product_title {
  margin-bottom: 0.6rem;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.single-product .summary .price {
  margin-block: 1rem;
  color: var(--g-brand-dark);
  font-size: 1.55rem;
  font-weight: 800;
}

.single-product .woocommerce-product-details__short-description {
  color: var(--g-muted);
}

.single-product form.cart {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-block: 1.5rem;
}

.woocommerce .quantity .qty {
  width: 76px;
  min-height: 46px;
  padding: 0.5rem;
  border: 1px solid #d8cbd1;
  border-radius: 999px;
  text-align: center;
}

.variations {
  width: 100%;
  margin-bottom: 1rem;
}

.variations th,
.variations td {
  padding: 0.4rem 0;
  text-align: left;
}

.variations select {
  width: min(100%, 420px);
}

.product_meta {
  display: grid;
  gap: 0.35rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--g-line);
  color: var(--g-muted);
  font-size: 0.78rem;
}

.woocommerce-tabs,
.related,
.upsells {
  grid-column: 1 / -1;
  margin-top: clamp(2.5rem, 6vw, 5rem);
}

.woocommerce-tabs ul.tabs {
  display: flex;
  gap: 0.5rem;
  padding: 0;
  margin: 0 0 1.5rem;
  border-bottom: 1px solid var(--g-line);
  list-style: none;
}

.woocommerce-tabs ul.tabs li a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 0.9rem;
  color: var(--g-muted);
  font-weight: 700;
  text-decoration: none;
}

.woocommerce-tabs ul.tabs li.active a {
  color: var(--g-brand-dark);
  box-shadow: inset 0 -3px var(--g-brand);
}

.woocommerce-Tabs-panel {
  max-width: 900px;
}

.related > h2,
.upsells > h2 {
  margin-bottom: 1.5rem;
}

.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius-sm);
  background: var(--g-white);
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 0.9rem;
  border-bottom: 1px solid var(--g-line);
  text-align: left;
}

.woocommerce table.shop_table img {
  width: 72px;
  height: 86px;
  object-fit: contain;
}

.woocommerce-cart-form .coupon {
  display: flex;
  gap: 0.5rem;
}

.cart-collaterals {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.7fr);
  gap: 2rem;
  margin-top: 2rem;
}

.cart_totals {
  grid-column: 2;
  padding: 1.25rem;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius);
  background: var(--g-white);
}

.wc-proceed-to-checkout .button {
  width: 100%;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 2rem;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  min-width: 0;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  grid-column: 2;
}

.woocommerce-checkout #order_review {
  padding: 1.25rem;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius);
  background: var(--g-white);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.form-row .input-text,
.form-row select {
  width: 100%;
}

.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 2rem;
}

.woocommerce-MyAccount-navigation ul {
  padding: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--g-line);
  border-radius: var(--g-radius-sm);
  background: var(--g-white);
  list-style: none;
}

.woocommerce-MyAccount-navigation a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--g-line);
  color: var(--g-ink);
  text-decoration: none;
}

.woocommerce-MyAccount-navigation .is-active a {
  color: var(--g-brand-dark);
  background: #faeff4;
  font-weight: 700;
}

/* Responsive layout. */
@media (max-width: 1100px) {
  .header-main__inner {
    grid-template-columns: 190px minmax(220px, 1fr) auto;
  }

  .primary-menu > li > a {
    padding-inline: 0.5rem;
    font-size: 0.66rem;
  }

  .gh-trust-grid,
  .gh-benefit-grid,
  .gh-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gh-proof-grid,
  .gh-path-grid,
  .gh-intent-grid,
  .gh-category-grid,
  .gh-image-grid,
  .woocommerce .products,
  .woocommerce ul.products,
  .wc-block-grid__products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 979px) {
  :root {
    --g-header-offset: 132px;
  }

  .header-main__inner {
    min-height: 58px;
    grid-template-columns: 1fr auto;
  }

  .site-brand,
  .site-brand__logo {
    max-width: 155px;
    max-height: 38px;
  }

  .header-search--desktop,
  .desktop-menu,
  .header-account span,
  .header-contact .icon {
    display: none;
  }

  .header-account {
    justify-self: end;
  }

  .commerce-nav__inner {
    min-height: 48px;
    display: grid;
    grid-template-columns: 1fr 48px 48px auto;
    align-items: stretch;
  }

  .menu-toggle,
  .mobile-search-toggle {
    display: inline-flex;
    color: var(--g-white);
  }

  .menu-toggle {
    width: fit-content;
    padding-inline: 0;
    justify-content: flex-start;
  }

  .menu-toggle span {
    font-size: 0.74rem;
  }

  .header-contact {
    padding-inline: 0.7rem 0;
    font-size: 0.7rem;
  }

  .header-cart__count {
    position: absolute;
    top: 3px;
    right: 1px;
    min-width: 1.05rem;
    height: 1.05rem;
    font-size: 0.58rem;
  }

  .mobile-search-panel {
    padding-block: 0.65rem;
    border-bottom: 1px solid var(--g-line);
    background: var(--g-white);
  }

  .mobile-search-panel:not([hidden]) {
    display: block;
  }

  .menu-drawer-shell:not([hidden]) {
    position: fixed;
    z-index: 999;
    inset: 0;
    display: block;
  }

  .menu-drawer__backdrop {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgb(15 12 16 / 66%);
    opacity: 0;
    transition: opacity 180ms ease;
  }

  .menu-drawer {
    position: absolute;
    inset: 0 auto 0 0;
    width: min(92vw, 430px);
    padding-bottom: 2rem;
    overflow-y: auto;
    color: var(--g-ink);
    background: var(--g-white);
    box-shadow: var(--g-shadow);
    transform: translateX(-102%);
    transition: transform 180ms ease;
  }

  .menu-drawer-shell.is-open .menu-drawer__backdrop {
    opacity: 1;
  }

  .menu-drawer-shell.is-open .menu-drawer {
    transform: translateX(0);
  }

  .menu-drawer__header {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.6rem 1rem;
    border-bottom: 1px solid var(--g-line);
  }

  .menu-drawer__close {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-drawer__search {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid var(--g-line);
  }

  .predictive-search {
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: min(68vh, 620px);
    border-radius: 10px;
    transform: none;
  }

  .predictive-search__layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

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

  .menu-drawer .predictive-search__layout {
    grid-template-columns: 1fr;
  }

  .menu-drawer .predictive-search__categories {
    border-right: 0;
    border-bottom: 1px solid var(--g-line);
  }

  .menu-drawer .predictive-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mobile-menu > li {
    position: relative;
    border-bottom: 1px solid var(--g-line);
  }

  .mobile-menu a {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: 0.65rem 3.4rem 0.65rem 1rem;
    color: var(--g-ink);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
    text-decoration: none;
  }

  .mobile-menu .sub-menu {
    display: none;
    padding: 0.25rem 0 0.5rem 0.8rem;
    background: #fbf5f8;
  }

  .mobile-menu .sub-menu.is-open {
    display: block;
  }

  .mobile-menu .sub-menu a {
    min-height: 42px;
    font-size: 0.8rem;
    font-weight: 600;
  }

  .submenu-toggle {
    position: absolute;
    top: 2px;
    right: 0.5rem;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .submenu-toggle .icon {
    transition: transform 160ms ease;
  }

  .submenu-toggle[aria-expanded="true"] .icon {
    transform: rotate(180deg);
  }

  .gh-hero {
    min-height: 700px;
    align-items: end;
  }

  .gh-hero::after {
    background: linear-gradient(180deg, rgb(15 12 16 / 10%) 10%, rgb(15 12 16 / 76%) 58%, rgb(15 12 16 / 98%) 100%);
  }

  .gh-hero > picture img,
  .gh-hero > img,
  .gh-hero__media img {
    object-position: 62% center;
  }

  .gh-hero__content,
  .gh-hero .gh-wrap {
    padding-block: 4rem;
  }

  .gh-editorial,
  .gh-split,
  .gh-feature,
  .single-product div.product,
  .woocommerce-checkout form.checkout {
    grid-template-columns: 1fr;
  }

  .single-product div.product .summary {
    position: static;
  }

  .woocommerce-tabs,
  .related,
  .upsells,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: 1;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__about {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  :root {
    --g-container: 100%;
  }

  .g-container,
  .gh-wrap {
    width: min(100% - 1.25rem, var(--g-container));
  }

  .announcement {
    min-height: 32px;
    padding-inline: 0.5rem;
    font-size: 0.7rem;
  }

  .commerce-nav__inner {
    width: calc(100% - 1.25rem);
  }

  .gh-section {
    padding-block: 3.25rem;
  }

  .gh-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }

  .gh-head .gh-text-link {
    align-self: flex-start;
  }

  .gh-hero {
    min-height: min(780px, calc(100svh - 32px));
  }

  .gh-hero h1,
  .gh-hero h2 {
    font-size: clamp(2.5rem, 12.5vw, 4rem);
  }

  .gh-hero .gh-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gh-hero .gh-btn {
    width: 100%;
  }

  .gh-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    padding-top: 0.75rem;
  }

  .gh-benefit-grid,
  .gh-service-grid,
  .gh-proof-grid,
  .gh-path-grid,
  .gh-intent-grid,
  .gh-category-grid,
  .gh-image-grid,
  .post-grid {
    grid-template-columns: 1fr;
  }

  .gh-image-grid {
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: thin;
  }

  .gh-image-card {
    min-height: 430px;
    scroll-snap-align: start;
  }

  .gh-editorial__media img,
  .gh-split__media img,
  .gh-feature__media img {
    min-height: 360px;
  }

  .woocommerce .products,
  .woocommerce ul.products,
  .wc-block-grid__products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product h2,
  .wc-block-grid__product-title,
  .product-card__brand,
  .woocommerce ul.products li.product .price {
    padding-inline: 0.75rem;
  }

  .woocommerce ul.products li.product .button {
    width: calc(100% - 1.5rem);
    min-height: 42px;
    margin-inline: 0.75rem;
    padding-inline: 0.6rem;
    font-size: 0.7rem;
  }

  .woocommerce .woocommerce-result-count,
  .woocommerce .woocommerce-ordering {
    width: 100%;
    float: none;
  }

  .woocommerce .woocommerce-ordering select {
    width: 100%;
  }

  .woocommerce table.shop_table_responsive thead {
    display: none;
  }

  .woocommerce table.shop_table_responsive tr {
    display: block;
    padding: 0.6rem;
    border-bottom: 1px solid var(--g-line);
  }

  .woocommerce table.shop_table_responsive td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem;
    border: 0;
    text-align: right;
  }

  .woocommerce table.shop_table_responsive td::before {
    color: var(--g-muted);
    content: attr(data-title);
    font-size: 0.75rem;
    font-weight: 700;
    text-align: left;
  }

  .woocommerce-cart-form .coupon,
  .cart-collaterals,
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }

  .cart_totals {
    grid-column: 1;
  }

  .woocommerce-cart-form .coupon {
    display: grid;
  }

  .woocommerce-tabs ul.tabs {
    overflow-x: auto;
  }

  .woocommerce-tabs ul.tabs li {
    flex: 0 0 auto;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__about {
    grid-column: auto;
  }

  .predictive-search__layout {
    grid-template-columns: 1fr;
  }

  .predictive-search__categories {
    border-right: 0;
    border-bottom: 1px solid var(--g-line);
  }

  .predictive-products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .predictive-product:nth-child(n + 7) {
    display: none;
  }

  .site-footer__bottom-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .whatsapp-fab {
    right: 0.65rem;
    bottom: 0.65rem;
  }

  .whatsapp-fab span {
    display: none;
  }

  .whatsapp-fab .icon {
    width: 1.65rem;
    height: 1.65rem;
  }
}

@media (max-width: 420px) {
  .header-contact {
    padding-inline: 0.3rem 0;
    font-size: 0.64rem;
  }

  .gh-trust-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .whatsapp-fab,
  .woocommerce .button,
  .product-search,
  .product-search-shell {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }
}
