/* =========================================================
   GOLDEN HOUSE NAVBAR
========================================================= */

:root {
  --gh-white: #ffffff;
  --gh-black: #111111;
  --gh-text: #343434;
  --gh-muted: #6e6e6e;
  --gh-gold: #bd8a34;
  --gh-gold-dark: #93671f;
  --gh-border: #e8e3dc;

  --gh-navbar-height: 104px;
  --gh-announcement-height: 40px;

  --gh-heading-font: "Playfair Display", serif;
  --gh-body-font: "DM Sans", sans-serif;
}


/* =========================================================
   NAVBAR RESET
========================================================= */

.gh-site-header *,
.gh-main-hero * {
  box-sizing: border-box;
}

.gh-site-header a,
.gh-main-hero a {
  color: inherit;
  text-decoration: none;
}

.gh-menu-button {
  margin: 0;
  padding: 0;
  border: 0;

  font: inherit;

  cursor: pointer;
}

body {
  margin: 0;
  padding-top: calc(var(--gh-announcement-height) + var(--gh-navbar-height));
}

body.menu-open {
  overflow: hidden;
}


/* =========================================================
   FIXED HEADER
========================================================= */

.gh-site-header {
  width: 100%;
  height: calc(var(--gh-announcement-height) + var(--gh-navbar-height));

  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;

  display: flex;
  flex-direction: column;

  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);

  font-family: var(--gh-body-font);

  transition:
    box-shadow 0.3s ease,
    background-color 0.3s ease;
}

.gh-site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);

  box-shadow:
    0 8px 30px rgba(0, 0, 0, 0.07);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}


/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */

.gh-announcement-bar {
  width: 100%;
  height: var(--gh-announcement-height);
  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  background: var(--gh-black);
  color: var(--gh-white);
}

.gh-announcement-bar i {
  color: var(--gh-gold);
  font-size: 0.8em;
}

.gh-announcement-bar span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gh-announcement-bar strong {
  color: var(--gh-gold);
  font-weight: 700;
}


/* =========================================================
   DESKTOP NAVBAR
========================================================= */

.gh-navbar {
  width: min(100%, 1500px);
  height: var(--gh-navbar-height);
  flex-shrink: 0;
  margin: 0 auto;
  padding: 0 5vw;

  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(150px, 1fr);
  align-items: center;
  gap: 38px;
}


/* =========================================================
   NAVBAR LOGO
========================================================= */

.gh-nav-logo {
  width: fit-content;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: var(--gh-black);
}

.gh-nav-logo-name {
  font-family: var(--gh-heading-font);
  font-size: clamp(1.85rem, 2.2vw, 2.55rem);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.95;
  white-space: nowrap;
}

.gh-nav-logo-bottom {
  width: 100%;
  margin-top: 11px;

  display: grid;
  grid-template-columns: 37px auto 37px;
  align-items: center;
  column-gap: 13px;
}

.gh-nav-logo-bottom i {
  width: 100%;
  height: 1px;

  display: block;

  background: var(--gh-gold);
}

.gh-nav-logo-bottom span {
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  line-height: 1;
  text-indent: 0.42em;
  text-transform: uppercase;
  white-space: nowrap;
}


/* =========================================================
   DESKTOP NAVIGATION LINKS
========================================================= */

.gh-desktop-nav {
  height: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(31px, 3.4vw, 58px);
}

.gh-desktop-nav a {
  height: 100%;

  position: relative;

  color: var(--gh-black);

  display: flex;
  align-items: center;

  font-size: 0.73rem;
  font-weight: 600;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  transition: color 0.25s ease;
}

.gh-desktop-nav a:hover,
.gh-desktop-nav a.active {
  color: var(--gh-gold-dark);
}


/* =========================================================
   DESKTOP NAVIGATION ACTIONS
========================================================= */

.gh-nav-actions {
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 10px;
}

.gh-nav-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;

  position: relative;

  color: var(--gh-black);

  display: grid;
  place-items: center;

  font-size: 1.05rem;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.gh-nav-icon:hover {
  background: var(--gh-black);
  color: var(--gh-white);
}

.gh-cart-icon {
  width: 1em;
  height: 1em;

  display: block;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gh-nav-cart-count {
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 999px;

  position: absolute;
  top: 0;
  right: -1px;

  background: var(--gh-gold);
  color: var(--gh-white);

  display: grid;
  place-items: center;

  font-size: 0.56rem;
  font-weight: 700;
}


/* =========================================================
   MOBILE ELEMENTS HIDDEN ON DESKTOP
========================================================= */

.gh-menu-button,
.gh-mobile-menu {
  display: none;
}


/* =========================================================
   TABLET AND MOBILE NAVBAR
========================================================= */

@media (max-width: 900px) {
  :root {
    --gh-navbar-height: 86px;
    --gh-announcement-height: 36px;
  }

  .gh-navbar {
    padding: 0 24px;

    grid-template-columns: 50px 1fr 50px;
    gap: 0;
  }


  /* Hamburger */

  .gh-menu-button {
    width: 44px;
    height: 44px;

    position: relative;
    z-index: 20;

    background: transparent;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
  }

  .gh-menu-button span {
    height: 2px;

    display: block;

    background: var(--gh-black);

    transition:
      width 0.35s ease,
      opacity 0.25s ease,
      transform 0.35s ease;
  }

  .gh-menu-button span:nth-child(1) {
    width: 28px;
  }

  .gh-menu-button span:nth-child(2) {
    width: 21px;
  }

  .gh-menu-button span:nth-child(3) {
    width: 28px;
  }

  .gh-menu-button:hover span:nth-child(2) {
    width: 28px;
  }

  .gh-menu-button.active span:nth-child(1) {
    width: 27px;

    transform: translateY(8px) rotate(45deg);
  }

  .gh-menu-button.active span:nth-child(2) {
    opacity: 0;

    transform: translateX(-8px);
  }

  .gh-menu-button.active span:nth-child(3) {
    width: 27px;

    transform: translateY(-8px) rotate(-45deg);
  }


  /* Centred Mobile Logo */

  .gh-nav-logo {
    max-width: calc(100vw - 145px);

    position: relative;
    z-index: 20;

    justify-self: center;
  }

  .gh-nav-logo-name {
    font-size: 1.75rem;
  }

  .gh-nav-logo-bottom {
    margin-top: 8px;

    grid-template-columns: 26px auto 26px;
    column-gap: 9px;
  }

  .gh-nav-logo-bottom span {
    font-size: 0.42rem;
    letter-spacing: 0.34em;
    text-indent: 0.34em;
  }


  /* Hide Desktop Text Links */

  .gh-desktop-nav {
    display: none;
  }


  /* Keep Only The Cart Icon In The Mobile Bar */

  .gh-nav-actions {
    justify-self: end;
  }

  .gh-nav-actions .gh-nav-cart {
    display: none;
  }


  /* Full-Screen Mobile Menu */

  .gh-mobile-menu {
    width: 100%;
    height: calc(100dvh - var(--gh-announcement-height) - var(--gh-navbar-height));

    position: fixed;
    top: calc(var(--gh-announcement-height) + var(--gh-navbar-height));
    left: 0;
    z-index: 4990;

    background: var(--gh-white);

    display: block;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(-100%);

    transition:
      transform 0.48s cubic-bezier(0.77, 0, 0.18, 1),
      opacity 0.28s ease,
      visibility 0.48s ease;

    overflow: hidden;
  }

  .gh-mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0);
  }

  .gh-mobile-menu::after {
    content: "";

    width: 240px;
    height: 240px;
    border-radius: 50%;

    position: absolute;
    right: -130px;
    bottom: -110px;

    border: 1px solid rgba(189, 138, 52, 0.25);

    pointer-events: none;
  }

  .gh-mobile-menu-inner {
    width: min(100%, 650px);
    height: 100%;
    margin: 0 auto;
    padding: 36px 28px 22px;

    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
  }

  .gh-mobile-links {
    min-height: 0;

    display: flex;
    flex-direction: column;

    flex: 1;
  }

  .gh-mobile-links a {
    border-bottom: 1px solid var(--gh-border);

    color: var(--gh-black);

    display: flex;
    align-items: center;
    gap: 16px;

    font-family: var(--gh-heading-font);
    font-size: clamp(1.1rem, 4.2vh, 1.85rem);
    font-weight: 500;
    letter-spacing: -0.035em;

    opacity: 0;

    transform: translateX(-25px);

    transition:
      color 0.25s ease,
      opacity 0.42s ease,
      transform 0.42s ease;

    flex: 1;
    min-height: 0;
  }

  .gh-mobile-menu.open .gh-mobile-links a {
    opacity: 1;

    transform: translateX(0);
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(1) {
    transition-delay: 0.08s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(2) {
    transition-delay: 0.13s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(3) {
    transition-delay: 0.18s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(4) {
    transition-delay: 0.23s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(5) {
    transition-delay: 0.28s;
  }

  .gh-mobile-menu.open .gh-mobile-links a:nth-child(6) {
    transition-delay: 0.33s;
  }

  .gh-mobile-links a span {
    width: 25px;

    color: var(--gh-gold);

    font-family: var(--gh-body-font);
    font-size: 0.59rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  .gh-mobile-links a:hover,
  .gh-mobile-links a.active {
    color: var(--gh-gold-dark);
  }


  /* Mobile Login and Cart */

  .gh-mobile-account-links {
    margin-top: 18px;

    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .gh-mobile-account-links a {
    min-height: 50px;
    padding: 0 16px;

    border: 1px solid var(--gh-black);
    color: var(--gh-black);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;

    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;

    transition:
      background-color 0.25s ease,
      color 0.25s ease;
  }

  .gh-mobile-account-links a:hover {
    background: var(--gh-black);
    color: var(--gh-white);
  }

  .gh-mobile-account-links strong {
    width: 21px;
    height: 21px;
    border-radius: 50%;

    background: var(--gh-gold);
    color: var(--gh-white);

    display: grid;
    place-items: center;

    font-size: 0.56rem;
  }

  .gh-mobile-menu-message {
    margin-top: 16px;

    color: var(--gh-gold-dark);

    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.19em;
    line-height: 1.5;
    text-align: center;
    text-transform: uppercase;
  }
}


/* =========================================================
   MOBILE NAVBAR
========================================================= */

@media (max-width: 650px) {
  :root {
    --gh-navbar-height: 78px;
    --gh-announcement-height: 32px;
  }

  .gh-announcement-bar span {
    font-size: 0.6rem;
    letter-spacing: 0.04em;
  }

  .gh-navbar {
    padding: 0 18px;

    grid-template-columns: 45px 1fr 45px;
  }

  .gh-nav-logo-name {
    font-size: 1.48rem;
  }

  .gh-nav-logo-bottom {
    margin-top: 7px;

    grid-template-columns: 21px auto 21px;
    column-gap: 7px;
  }

  .gh-nav-logo-bottom span {
    font-size: 0.35rem;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }

  .gh-mobile-menu-inner {
    padding: 28px 20px 18px;
  }

  .gh-mobile-links a {
    font-size: clamp(0.92rem, 3.8vh, 1.6rem);
  }

  .gh-mobile-account-links {
    margin-top: 14px;

    gap: 10px;
  }

  .gh-mobile-account-links a {
    min-height: 46px;
    padding: 0 14px;
  }
}

/* =========================================================
   FIX MOBILE LOGO ALIGNMENT
========================================================= */

@media (max-width: 900px) {

  .gh-nav-logo {
    width: max-content;
    max-width: none;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    justify-self: center;
    text-align: center;
  }

  .gh-nav-logo-name {
    width: max-content;

    display: block;

    font-size: 1.75rem;
    line-height: 1;
    white-space: nowrap;
    text-align: center;
  }

  .gh-nav-logo-bottom {
    width: 100%;
    margin-top: 7px;

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    column-gap: 9px;
  }

  .gh-nav-logo-bottom::before,
  .gh-nav-logo-bottom::after {
    content: "";

    width: 100%;
    height: 1px;

    display: block;

    background: var(--gh-gold);
  }

  .gh-nav-logo-bottom span {
    margin: 0;
    padding: 0;

    display: block;

    font-size: 0.42rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.32em;
    text-indent: 0.32em;
    white-space: nowrap;
    text-align: center;
  }

  /* Hide any existing line elements inside the logo */
  .gh-nav-logo-bottom i,
  .gh-nav-logo-bottom b {
    display: none;
  }
}


/* =========================================================
   SMALL MOBILE LOGO
========================================================= */

@media (max-width: 650px) {

  .gh-nav-logo-name {
    font-size: 1.48rem;
  }

  .gh-nav-logo-bottom {
    margin-top: 6px;
    column-gap: 7px;
  }

  .gh-nav-logo-bottom span {
    font-size: 0.34rem;
    letter-spacing: 0.28em;
    text-indent: 0.28em;
  }
}

/* =========================================================
   GOLDEN HOUSE SHOP PAGE
   COMPLETE RESPONSIVE CSS
========================================================= */

:root {
  --gh-shop-white: #ffffff;
  --gh-shop-cream: #fbf9f5;
  --gh-shop-cream-dark: #f4efe7;
  --gh-shop-placeholder: #f2efea;

  --gh-shop-black: #111111;
  --gh-shop-text: #373737;
  --gh-shop-muted: #777777;

  --gh-shop-gold: #bd8a34;
  --gh-shop-gold-dark: #91651f;

  --gh-shop-border: #e7e2da;
  --gh-shop-success: #397554;
  --gh-shop-error: #a74343;

  --gh-shop-heading-font: "Playfair Display", serif;
  --gh-shop-body-font: "DM Sans", sans-serif;
}


/* =========================================================
   1. SHOP PAGE RESET
========================================================= */

.gh-shop-page,
.gh-shop-page * {
  box-sizing: border-box;
}

.gh-shop-page {
  width: 100%;
  min-height: 100vh;

  background: var(--gh-shop-white);
  color: var(--gh-shop-black);

  font-family: var(--gh-shop-body-font);

  overflow-x: hidden;
}

.gh-shop-page a {
  color: inherit;
  text-decoration: none;
}

.gh-shop-page button,
.gh-shop-page input,
.gh-shop-page select {
  font: inherit;
}

.gh-shop-page button {
  cursor: pointer;
}

.gh-shop-page img {
  width: 100%;
  max-width: 100%;

  display: block;
}

.gh-visually-hidden {
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;

  position: absolute;

  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;

  border: 0;
}

body.gh-shop-filter-open {
  overflow: hidden;
}


/* =========================================================
   2. SHOP HERO — DESKTOP
========================================================= */

.gh-shop-hero {
  width: 100%;
  min-height: 340px;
  padding: 78px 5vw 72px;

  position: relative;
  isolation: isolate;

  background:
    radial-gradient(
      circle at 50% 45%,
      #ffffff 0%,
      #fdfbf8 52%,
      #f7f3ec 100%
    );

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  overflow: hidden;
}

.gh-shop-hero-decorations {
  position: absolute;
  inset: 0;
  z-index: -1;

  pointer-events: none;
}

.gh-shop-circle {
  border-radius: 50%;

  position: absolute;

  border: 1px solid rgba(189, 138, 52, 0.24);
}

.gh-shop-circle::before,
.gh-shop-circle::after {
  content: "";

  border-radius: inherit;

  position: absolute;

  border: 1px solid rgba(189, 138, 52, 0.13);
}

.gh-shop-circle::before {
  inset: 20px;
}

.gh-shop-circle::after {
  inset: 42px;
}

.gh-shop-circle-left {
  width: 300px;
  height: 300px;

  left: -150px;
  bottom: -125px;
}

.gh-shop-circle-right {
  width: 290px;
  height: 290px;

  top: -145px;
  right: -105px;
}

.gh-shop-star {
  position: absolute;

  color: var(--gh-shop-gold);

  font-size: 1.35rem;
}

.gh-shop-star-left {
  top: 58%;
  left: 8%;
}

.gh-shop-star-right {
  top: 34%;
  right: 10%;
}

.gh-shop-hero-content {
  width: min(100%, 820px);
  margin: 0 auto;
}

.gh-shop-eyebrow {
  margin: 0;

  color: var(--gh-shop-gold-dark);

  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  line-height: 1.5;
  text-transform: uppercase;
}

.gh-shop-title-divider {
  width: min(100%, 320px);
  margin: 21px auto 24px;

  color: var(--gh-shop-gold);

  display: grid;
  grid-template-columns: 1fr 27px 1fr;
  align-items: center;
  gap: 15px;
}

.gh-shop-title-divider span {
  width: 100%;
  height: 1px;

  background: var(--gh-shop-gold);
}

.gh-shop-title-divider svg {
  width: 27px;
  height: 27px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gh-shop-hero h1 {
  margin: 0;

  color: var(--gh-shop-black);

  font-family: var(--gh-shop-heading-font);
  font-size: clamp(4rem, 6vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.94;
  text-transform: uppercase;
}

.gh-shop-hero-description {
  max-width: 620px;
  margin: 25px auto 0;

  color: var(--gh-shop-text);

  font-size: 0.95rem;
  line-height: 1.8;
}


/* =========================================================
   3. SHOP TOOLBAR — DESKTOP
========================================================= */

.gh-shop-toolbar-section {
  width: 100%;

  background: var(--gh-shop-white);
  border-top: 1px solid rgba(17, 17, 17, 0.035);
  border-bottom: 1px solid var(--gh-shop-border);
}

.gh-shop-toolbar {
  width: min(100%, 1450px);
  min-height: 88px;
  margin: 0 auto;
  padding: 16px 5vw;

  display: grid;
  grid-template-columns: auto minmax(600px, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.gh-shop-results-count {
  margin: 0;

  color: var(--gh-shop-text);

  font-size: 0.74rem;
  line-height: 1.5;
  white-space: nowrap;
}

.gh-shop-quick-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.gh-shop-select-wrapper {
  position: relative;
}

.gh-shop-select-wrapper select {
  min-width: 148px;
  height: 44px;
  padding: 0 38px 0 14px;
  border: 1px solid var(--gh-shop-border);
  border-radius: 2px;

  background:
    linear-gradient(45deg, transparent 50%, #555555 50%)
      calc(100% - 17px) 19px / 5px 5px no-repeat,
    linear-gradient(135deg, #555555 50%, transparent 50%)
      calc(100% - 12px) 19px / 5px 5px no-repeat,
    var(--gh-shop-white);

  color: var(--gh-shop-black);

  appearance: none;
  outline: none;

  font-size: 0.71rem;

  cursor: pointer;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.gh-shop-select-wrapper select:focus {
  border-color: var(--gh-shop-gold);

  box-shadow: 0 0 0 3px rgba(189, 138, 52, 0.09);
}

.gh-shop-view-options {
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 8px;
}

.gh-shop-view-options > span {
  margin-right: 3px;

  color: var(--gh-shop-text);

  font-size: 0.7rem;
}

.gh-shop-view-button {
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid transparent;

  background: transparent;
  color: var(--gh-shop-black);

  display: grid;
  place-items: center;

  font-size: 0.95rem;

  transition:
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease;
}

.gh-shop-view-button:hover,
.gh-shop-view-button.active {
  background: var(--gh-shop-cream);
  border-color: var(--gh-shop-border);
  color: var(--gh-shop-gold-dark);
}

.gh-mobile-filter-button {
  display: none;
}


/* =========================================================
   4. SHOP CONTENT LAYOUT — DESKTOP
========================================================= */

.gh-shop-content-section {
  width: 100%;
  padding: 38px 5vw 75px;

  background: var(--gh-shop-white);
}

.gh-shop-content-container {
  width: min(100%, 1450px);
  margin: 0 auto;

  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  align-items: start;
  gap: 34px;
}


/* =========================================================
   5. FILTER SIDEBAR — DESKTOP
========================================================= */

.gh-shop-sidebar {
  width: 100%;

  position: sticky;
  top: calc(var(--gh-announcement-height, 40px) + var(--gh-navbar-height, 90px) + 22px);

  background: var(--gh-shop-cream);
  border: 1px solid rgba(17, 17, 17, 0.04);
}

.gh-mobile-filter-header {
  display: none;
}

.gh-filter-group {
  border-bottom: 1px solid var(--gh-shop-border);
}

.gh-filter-group-heading {
  width: 100%;
  min-height: 60px;
  padding: 0 18px;
  border: 0;

  background: transparent;
  color: var(--gh-shop-black);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;

  text-align: left;
}

.gh-filter-group-heading span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gh-filter-group-heading i {
  font-size: 0.62rem;

  transition: transform 0.3s ease;
}

.gh-filter-group:not(.open) .gh-filter-group-heading i {
  transform: rotate(-90deg);
}

.gh-filter-group-content {
  padding: 0 18px 20px;
}

.gh-filter-group:not(.open) .gh-filter-group-content {
  display: none;
}

.gh-filter-radio-row,
.gh-filter-checkbox-row {
  width: 100%;
  min-height: 32px;

  color: var(--gh-shop-text);

  display: flex;
  align-items: center;
  gap: 9px;

  font-size: 0.72rem;

  cursor: pointer;
}

.gh-filter-radio-row input,
.gh-filter-checkbox-row input {
  width: 15px;
  height: 15px;
  margin: 0;

  accent-color: var(--gh-shop-gold);

  flex-shrink: 0;
}

.gh-filter-radio-row span,
.gh-filter-checkbox-row span {
  flex: 1;
}

.gh-filter-radio-row small {
  color: var(--gh-shop-muted);

  font-size: 0.65rem;
}

.gh-filter-radio-row input:checked + span,
.gh-filter-checkbox-row input:checked + span {
  color: var(--gh-shop-gold-dark);

  font-weight: 600;
}


/* =========================================================
   6. PRICE RANGE
========================================================= */

.gh-price-range {
  width: 100%;
}

.gh-price-range input[type="range"] {
  width: 100%;
  height: 4px;
  margin: 12px 0 10px;
  border-radius: 999px;

  background: var(--gh-shop-border);

  appearance: none;
  outline: none;

  cursor: pointer;
}

.gh-price-range input[type="range"]::-webkit-slider-thumb {
  width: 17px;
  height: 17px;
  border: 0;
  border-radius: 50%;

  background: var(--gh-shop-gold);

  appearance: none;
}

.gh-price-range input[type="range"]::-moz-range-thumb {
  width: 17px;
  height: 17px;
  border: 0;
  border-radius: 50%;

  background: var(--gh-shop-gold);
}

.gh-price-range-values {
  display: flex;
  align-items: center;
  justify-content: space-between;

  color: var(--gh-shop-text);

  font-size: 0.68rem;
}

.gh-price-range-values strong {
  color: var(--gh-shop-black);

  font-weight: 600;
}


/* =========================================================
   7. FILTER ACTIONS
========================================================= */

.gh-filter-actions {
  padding: 20px 18px;
}

.gh-apply-filter-button,
.gh-clear-filter-button {
  width: 100%;
  min-height: 46px;
  padding: 0 15px;

  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gh-apply-filter-button {
  border: 1px solid var(--gh-shop-black);

  background: var(--gh-shop-black);
  color: var(--gh-shop-white);

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.gh-apply-filter-button:hover {
  background: var(--gh-shop-white);
  color: var(--gh-shop-black);
}

.gh-clear-filter-button {
  margin-top: 10px;
  border: 1px solid transparent;

  background: transparent;
  color: var(--gh-shop-gold-dark);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  transition:
    border-color 0.25s ease,
    color 0.25s ease;
}

.gh-clear-filter-button:hover {
  border-color: var(--gh-shop-border);
  color: var(--gh-shop-black);
}


/* =========================================================
   8. DESKTOP HELP CARD
========================================================= */

.gh-shop-help-card {
  margin-top: 18px;
  padding: 30px 22px;

  background: var(--gh-shop-cream);

  text-align: center;
}

.gh-shop-help-card svg {
  width: 28px;
  height: 28px;
  margin: 0 auto 15px;

  fill: none;
  stroke: var(--gh-shop-gold);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gh-shop-help-card h3 {
  margin: 0;

  color: var(--gh-shop-black);

  font-family: var(--gh-shop-heading-font);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.gh-shop-help-card p {
  margin: 14px 0 0;

  color: var(--gh-shop-muted);

  font-size: 0.72rem;
  line-height: 1.7;
}

.gh-shop-help-card a {
  margin-top: 18px;

  color: var(--gh-shop-gold-dark);

  display: inline-flex;
  align-items: center;
  gap: 9px;

  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  transition: color 0.25s ease;
}

.gh-shop-help-card a:hover {
  color: var(--gh-shop-black);
}


/* =========================================================
   9. FILTER BACKDROP
========================================================= */

.gh-filter-backdrop {
  display: none;
}


/* =========================================================
   10. PRODUCT AREA
========================================================= */

.gh-shop-products-area {
  min-width: 0;
}


/* =========================================================
   11. PRODUCT GRID — DESKTOP
========================================================= */

.gh-product-grid {
  width: 100%;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 20px;
}

.gh-product-card {
  min-width: 0;

  position: relative;

  background: var(--gh-shop-white);

  opacity: 1;

  transition:
    opacity 0.28s ease,
    transform 0.28s ease;
}

.gh-product-card[hidden] {
  display: none !important;
}


/* =========================================================
   12. PRODUCT IMAGE WRAPPER
========================================================= */

.gh-product-image-wrapper {
  width: 100%;
  aspect-ratio: 0.82;

  position: relative;

  background: var(--gh-shop-placeholder);
  border: 1px solid rgba(17, 17, 17, 0.04);

  overflow: hidden;
}

.gh-product-image-wrapper > img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;
}


/* =========================================================
   13. PRODUCT IMAGE PLACEHOLDER
========================================================= */

.gh-product-image-placeholder {
  width: 100%;
  height: 100%;
  padding: 20px;

  color: #aaa49b;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;

  text-align: center;
}

.gh-product-image-placeholder[hidden] {
  display: none;
}

.gh-product-image-placeholder i {
  font-size: 2.2rem;
}

.gh-product-image-placeholder span {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* =========================================================
   14. PRODUCT BADGES
========================================================= */

.gh-product-badge {
  min-height: 25px;
  padding: 0 10px;

  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;

  background: var(--gh-shop-black);
  color: var(--gh-shop-white);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gh-best-seller-badge {
  background: var(--gh-shop-gold);
}

.gh-limited-badge {
  background: var(--gh-shop-black);
  color: var(--gh-shop-gold);
}


/* =========================================================
   15. WISHLIST BUTTON
========================================================= */

.gh-wishlist-button {
  width: 39px;
  height: 39px;
  padding: 0;
  border: 0;
  border-radius: 50%;

  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 5;

  background: rgba(255, 255, 255, 0.93);
  color: var(--gh-shop-gold-dark);

  display: grid;
  place-items: center;

  font-size: 1rem;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    transform 0.2s ease;
}

.gh-wishlist-button:hover {
  background: var(--gh-shop-black);
  color: var(--gh-shop-white);
}

.gh-wishlist-button.active,
.gh-wishlist-button[aria-pressed="true"] {
  background: var(--gh-shop-black);
  color: var(--gh-shop-gold);
}

.gh-wishlist-button:active {
  transform: scale(0.94);
}


/* =========================================================
   16. PRODUCT DETAILS
========================================================= */

.gh-product-details {
  padding: 15px 2px 0;
}

.gh-product-category {
  margin: 0 0 6px;

  color: var(--gh-shop-gold-dark);

  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gh-product-details h2 {
  min-height: 43px;
  margin: 0;

  color: var(--gh-shop-black);

  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
}

.gh-product-price {
  margin: 7px 0 0;

  color: var(--gh-shop-black);

  font-size: 0.78rem;
  font-weight: 700;
}

.gh-product-rating {
  margin-top: 8px;

  display: flex;
  align-items: center;
  gap: 7px;
}

.gh-product-rating span {
  color: var(--gh-shop-gold);

  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.gh-product-rating small {
  color: var(--gh-shop-muted);

  font-size: 0.61rem;
}


/* =========================================================
   17. QUICK ADD BUTTON
========================================================= */

.gh-quick-add-button {
  width: 100%;
  min-height: 44px;
  margin-top: 14px;
  padding: 0 14px;
  border: 1px solid var(--gh-shop-black);

  background: var(--gh-shop-white);
  color: var(--gh-shop-black);

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.gh-quick-add-button:hover,
.gh-quick-add-button.added {
  background: var(--gh-shop-black);
  color: var(--gh-shop-white);
}


/* =========================================================
   18. LIST VIEW — DESKTOP
========================================================= */

.gh-product-grid.list-view {
  grid-template-columns: 1fr;
  gap: 18px;
}

.gh-product-grid.list-view .gh-product-card {
  min-height: 230px;
  padding-bottom: 18px;

  border-bottom: 1px solid var(--gh-shop-border);

  display: grid;
  grid-template-columns: 215px minmax(0, 1fr);
  align-items: stretch;
  gap: 26px;
}

.gh-product-grid.list-view .gh-product-image-wrapper {
  height: 215px;

  aspect-ratio: auto;
}

.gh-product-grid.list-view .gh-product-details {
  padding: 18px 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.gh-product-grid.list-view .gh-product-details h2 {
  min-height: auto;

  font-family: var(--gh-shop-heading-font);
  font-size: 1.75rem;
  letter-spacing: -0.03em;
}

.gh-product-grid.list-view .gh-product-category {
  font-size: 0.64rem;
}

.gh-product-grid.list-view .gh-product-price {
  font-size: 0.88rem;
}

.gh-product-grid.list-view .gh-quick-add-button {
  width: auto;
  min-width: 185px;
}


/* =========================================================
   19. EMPTY STATE
========================================================= */

.gh-shop-empty-state {
  min-height: 500px;
  padding: 60px 20px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
}

.gh-shop-empty-state[hidden] {
  display: none !important;
}

.gh-empty-state-icon {
  width: 82px;
  height: 82px;
  margin-bottom: 22px;
  border-radius: 50%;

  background: var(--gh-shop-cream);
  color: var(--gh-shop-gold);

  display: grid;
  place-items: center;

  font-size: 1.7rem;
}

.gh-shop-empty-state h2 {
  margin: 0;

  color: var(--gh-shop-black);

  font-family: var(--gh-shop-heading-font);
  font-size: 2.6rem;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.gh-shop-empty-state p {
  max-width: 430px;
  margin: 17px auto 0;

  color: var(--gh-shop-muted);

  font-size: 0.82rem;
  line-height: 1.7;
}

.gh-shop-empty-state button {
  min-width: 165px;
  min-height: 50px;
  margin-top: 24px;
  padding: 0 22px;
  border: 1px solid var(--gh-shop-black);

  background: var(--gh-shop-black);
  color: var(--gh-shop-white);

  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;

  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.gh-shop-empty-state button:hover {
  background: var(--gh-shop-white);
  color: var(--gh-shop-black);
}


/* =========================================================
   20. PAGINATION
========================================================= */

.gh-shop-pagination {
  width: 100%;
  margin-top: 52px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.gh-shop-pagination[hidden] {
  display: none !important;
}

.gh-page-button {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  border: 1px solid var(--gh-shop-border);

  background: var(--gh-shop-white);
  color: var(--gh-shop-black);

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-size: 0.7rem;
  font-weight: 600;

  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.gh-page-button:hover:not(:disabled),
.gh-page-button.active,
.gh-page-button[aria-current="page"] {
  border-color: var(--gh-shop-gold);

  background: var(--gh-shop-gold);
  color: var(--gh-shop-white);
}

.gh-page-button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}


/* =========================================================
   21. MOBILE HELP SECTION
========================================================= */

.gh-mobile-shop-help {
  display: none;
}


/* =========================================================
   22. CLOSING BRAND LINE
========================================================= */

.gh-shop-closing {
  width: min(calc(100% - 10vw), 1160px);
  margin: 0 auto;
  padding: 30px 0 46px;

  border-top: 1px solid var(--gh-shop-gold);

  text-align: center;
}

.gh-shop-closing-decoration {
  width: min(100%, 500px);
  margin: 0 auto 17px;

  color: var(--gh-shop-gold);

  display: grid;
  grid-template-columns: 1fr 28px 1fr;
  align-items: center;
  gap: 16px;
}

.gh-shop-closing-decoration span {
  width: 100%;
  height: 1px;

  background: var(--gh-shop-gold);
}

.gh-shop-closing-decoration svg {
  width: 27px;
  height: 27px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gh-shop-closing p {
  margin: 0;

  color: var(--gh-shop-gold-dark);

  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}


/* =========================================================
   23. DEMO TOAST
========================================================= */

.gh-shop-toast {
  max-width: calc(100% - 40px);
  min-width: 310px;
  min-height: 68px;
  padding: 13px 18px;

  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9500;

  background: var(--gh-shop-black);
  color: var(--gh-shop-white);

  display: flex;
  align-items: center;
  gap: 14px;

  opacity: 0;
  visibility: hidden;

  transform: translateY(22px);

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}

.gh-shop-toast.show {
  opacity: 1;
  visibility: visible;

  transform: translateY(0);
}

.gh-shop-toast > i {
  width: 32px;
  height: 32px;
  border-radius: 50%;

  background: rgba(189, 138, 52, 0.18);
  color: var(--gh-shop-gold);

  display: grid;
  place-items: center;

  flex-shrink: 0;
}

.gh-shop-toast > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.gh-shop-toast strong {
  font-size: 0.72rem;
  font-weight: 700;
}

.gh-shop-toast span {
  color: rgba(255, 255, 255, 0.75);

  font-size: 0.66rem;
  line-height: 1.45;
}


/* =========================================================
   25. LARGE DESKTOP / LAPTOP
========================================================= */

@media (max-width: 1280px) {
  .gh-shop-toolbar {
    grid-template-columns: auto 1fr auto;
    gap: 20px;
  }

  .gh-shop-quick-filters {
    gap: 9px;
  }

  .gh-shop-select-wrapper select {
    min-width: 135px;
  }

  .gh-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gh-shop-content-container {
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 28px;
  }
}


/* =========================================================
   26. TABLET
========================================================= */

@media (max-width: 980px) {
  .gh-shop-hero {
    min-height: 315px;
    padding: 68px 32px;
  }

  .gh-shop-toolbar {
    padding-right: 32px;
    padding-left: 32px;

    grid-template-columns: auto 1fr auto;
  }

  .gh-shop-results-count {
    justify-self: center;
  }

  .gh-shop-quick-filters {
    display: none;
  }

  .gh-mobile-filter-button {
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--gh-shop-border);

    position: relative;

    background: var(--gh-shop-white);
    color: var(--gh-shop-black);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;

    font-size: 0.7rem;
    font-weight: 600;
  }

  .gh-active-filter-count {
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 50%;

    background: var(--gh-shop-gold);
    color: var(--gh-shop-white);

    display: grid;
    place-items: center;

    font-size: 0.55rem;
  }

  .gh-active-filter-count[hidden] {
    display: none;
  }

  .gh-shop-content-section {
    padding-right: 32px;
    padding-left: 32px;
  }

  .gh-shop-content-container {
    grid-template-columns: 1fr;
  }

  .gh-shop-sidebar {
    width: min(430px, 100%);
    height: 100dvh;

    position: fixed;
    top: 0;
    right: 0;
    z-index: 8500;

    background: var(--gh-shop-white);

    display: block;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transform: translateX(100%);

    transition:
      transform 0.4s ease,
      opacity 0.3s ease,
      visibility 0.4s ease;

    overflow-y: auto;
  }

  .gh-shop-sidebar.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;

    transform: translateX(0);
  }

  .gh-mobile-filter-header {
    min-height: 78px;
    padding: 0 22px;
    border-bottom: 1px solid var(--gh-shop-border);

    position: sticky;
    top: 0;
    z-index: 5;

    background: var(--gh-shop-white);

    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .gh-mobile-filter-header h2 {
    margin: 0;

    font-family: var(--gh-shop-heading-font);
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: -0.035em;
  }

  .gh-mobile-filter-header button {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;

    background: transparent;
    color: var(--gh-shop-black);

    display: grid;
    place-items: center;

    font-size: 1.1rem;
  }

  .gh-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 8400;

    background: rgba(17, 17, 17, 0.5);

    display: block;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
      opacity 0.3s ease,
      visibility 0.3s ease;
  }

  .gh-filter-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .gh-filter-actions {
    padding-bottom: 28px;
  }

  .gh-shop-help-card {
    margin: 0 18px 26px;
  }

  .gh-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gh-mobile-shop-help {
    display: none;
  }
}


/* =========================================================
   27. MOBILE
========================================================= */

@media (max-width: 700px) {
  .gh-shop-hero {
    min-height: 300px;
    padding: 62px 20px 58px;
  }

  .gh-shop-circle-left {
    width: 205px;
    height: 205px;

    left: -112px;
    bottom: -112px;
  }

  .gh-shop-circle-right {
    width: 195px;
    height: 195px;

    top: -105px;
    right: -100px;
  }

  .gh-shop-star-left {
    left: 6%;
  }

  .gh-shop-star-right {
    right: 7%;
  }

  .gh-shop-eyebrow {
    font-size: 0.56rem;
    letter-spacing: 0.18em;
  }

  .gh-shop-title-divider {
    width: min(100%, 250px);
    margin: 18px auto 21px;

    grid-template-columns: 1fr 23px 1fr;
    gap: 10px;
  }

  .gh-shop-title-divider svg {
    width: 22px;
    height: 22px;
  }

  .gh-shop-hero h1 {
    font-size: clamp(3.4rem, 16vw, 4.8rem);
  }

  .gh-shop-hero-description {
    margin-top: 22px;

    font-size: 0.81rem;
    line-height: 1.7;
  }


  /* Mobile toolbar */

  .gh-shop-toolbar {
    min-height: auto;
    padding: 14px 20px;

    grid-template-columns: auto 1fr;
    gap: 12px;
  }

  .gh-mobile-filter-button {
    justify-self: start;
  }

  .gh-shop-results-count {
    grid-column: 1 / -1;
    grid-row: 2;

    justify-self: center;

    font-size: 0.68rem;
    text-align: center;
  }

  .gh-shop-view-options {
    justify-self: end;
  }

  .gh-shop-view-options > span {
    display: none;
  }

  .gh-shop-view-button {
    width: 40px;
    height: 40px;
  }


  /* Mobile filter drawer */

  .gh-shop-sidebar {
    width: 100%;
    height: calc(100dvh - var(--gh-announcement-height, 32px) - var(--gh-navbar-height, 78px));

    top: calc(var(--gh-announcement-height, 32px) + var(--gh-navbar-height, 78px));

    border-radius: 20px 20px 0 0;

    transform: translateY(100%);
  }

  .gh-shop-sidebar.open {
    transform: translateY(0);
  }

  .gh-shop-sidebar::before {
    content: "";

    width: 42px;
    height: 4px;
    border-radius: 99px;

    position: absolute;
    top: 10px;
    left: 50%;
    z-index: 8;

    background: #b8b8b8;

    transform: translateX(-50%);
  }

  .gh-mobile-filter-header {
    min-height: 76px;
    padding-top: 10px;
  }

  .gh-filter-group-heading {
    min-height: 58px;
  }

  .gh-filter-group-content {
    padding-bottom: 18px;
  }


  /* Mobile content */

  .gh-shop-content-section {
    padding: 26px 20px 55px;
  }

  .gh-product-grid,
  .gh-product-grid.list-view {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 12px;
  }

  .gh-product-grid.list-view .gh-product-card {
    min-height: 0;
    padding-bottom: 0;
    border-bottom: 0;

    display: block;
  }

  .gh-product-grid.list-view .gh-product-image-wrapper {
    height: auto;

    aspect-ratio: 0.82;
  }

  .gh-product-grid.list-view .gh-product-details {
    padding: 11px 1px 0;

    display: block;
  }

  .gh-product-grid.list-view .gh-product-details h2 {
    font-family: var(--gh-shop-body-font);
    font-size: 0.72rem;
  }

  .gh-product-grid.list-view .gh-quick-add-button {
    width: 100%;
    min-width: 0;
  }

  .gh-product-image-placeholder {
    padding: 12px;
    gap: 9px;
  }

  .gh-product-image-placeholder i {
    font-size: 1.65rem;
  }

  .gh-product-image-placeholder span {
    font-size: 0.49rem;
    letter-spacing: 0.08em;
  }

  .gh-product-badge {
    min-height: 22px;
    padding: 0 7px;

    top: 7px;
    left: 7px;

    font-size: 0.47rem;
  }

  .gh-wishlist-button {
    width: 34px;
    height: 34px;

    top: 5px;
    right: 5px;

    font-size: 0.88rem;
  }

  .gh-product-details {
    padding: 11px 1px 0;
  }

  .gh-product-category {
    margin-bottom: 4px;

    font-size: 0.49rem;
  }

  .gh-product-details h2 {
    min-height: 39px;

    font-size: 0.72rem;
    line-height: 1.45;
  }

  .gh-product-price {
    margin-top: 5px;

    font-size: 0.69rem;
  }

  .gh-product-rating {
    margin-top: 6px;
    gap: 5px;
  }

  .gh-product-rating span {
    font-size: 0.59rem;
  }

  .gh-product-rating small {
    font-size: 0.53rem;
  }

  .gh-quick-add-button {
    min-height: 40px;
    margin-top: 11px;
    padding: 0 8px;

    font-size: 0.53rem;
    letter-spacing: 0.07em;
  }


  /* Mobile pagination */

  .gh-shop-pagination {
    margin-top: 40px;
    gap: 7px;
  }

  .gh-page-button {
    min-width: 39px;
    height: 39px;
    padding: 0 10px;

    font-size: 0.65rem;
  }


  /* Mobile help */

  .gh-shop-help-card {
    display: none;
  }

  .gh-mobile-shop-help {
    margin: 0 20px 50px;
    padding: 35px 25px;

    background: var(--gh-shop-cream);

    display: block;

    text-align: center;
  }

  .gh-mobile-shop-help svg {
    width: 28px;
    height: 28px;
    margin: 0 auto 15px;

    fill: none;
    stroke: var(--gh-shop-gold);
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .gh-mobile-shop-help h2 {
    margin: 0;

    font-family: var(--gh-shop-heading-font);
    font-size: 1.8rem;
    font-weight: 500;
  }

  .gh-mobile-shop-help p {
    max-width: 310px;
    margin: 14px auto 0;

    color: var(--gh-shop-muted);

    font-size: 0.75rem;
    line-height: 1.7;
  }

  .gh-mobile-shop-help a {
    margin-top: 18px;

    color: var(--gh-shop-gold-dark);

    display: inline-flex;
    align-items: center;
    gap: 9px;

    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-transform: uppercase;
  }


  /* Mobile closing */

  .gh-shop-closing {
    width: calc(100% - 40px);
    padding-bottom: 38px;
  }

  .gh-shop-closing-decoration {
    width: min(100%, 280px);
  }

  .gh-shop-closing p {
    font-size: 0.55rem;
    letter-spacing: 0.18em;
  }


  /* Mobile toast */

  .gh-shop-toast {
    min-width: 0;

    right: 16px;
    bottom: 16px;
    left: 16px;
  }
}


/* =========================================================
   28. EXTRA-SMALL MOBILE
========================================================= */

@media (max-width: 390px) {
  .gh-shop-hero,
  .gh-shop-toolbar,
  .gh-shop-content-section {
    padding-right: 16px;
    padding-left: 16px;
  }

  .gh-shop-hero h1 {
    font-size: 3.2rem;
  }

  .gh-product-grid,
  .gh-product-grid.list-view {
    gap: 28px 10px;
  }

  .gh-product-details h2 {
    font-size: 0.67rem;
  }

  .gh-product-price {
    font-size: 0.65rem;
  }

  .gh-quick-add-button {
    font-size: 0.49rem;
  }

  .gh-mobile-shop-help {
    margin-right: 16px;
    margin-left: 16px;
  }

  .gh-shop-closing {
    width: calc(100% - 32px);
  }

}


/* =========================================================
   29. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .gh-shop-select-wrapper select,
  .gh-shop-view-button,
  .gh-filter-group-heading i,
  .gh-apply-filter-button,
  .gh-clear-filter-button,
  .gh-wishlist-button,
  .gh-quick-add-button,
  .gh-product-card,
  .gh-page-button,
  .gh-shop-sidebar,
  .gh-filter-backdrop,
  .gh-shop-toast {
    transition: none;
  }
}

/* =========================================================
   MOBILE PRODUCT VIEW SWITCHING
========================================================= */

@media (max-width: 700px) {

  /* Grid view */

  #shopProductGrid.grid-view,
  #shopProductGrid:not(.list-view) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
  }


  /* List view */

  #shopProductGrid.list-view {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    gap: 14px;
  }

  #shopProductGrid.list-view .gh-product-card {
    width: 100%;
    display: grid;
    grid-template-columns: 125px minmax(0, 1fr);
    align-items: stretch;
    gap: 14px;
  }

  #shopProductGrid.list-view
  .gh-product-image-wrapper {
    width: 125px;
    min-width: 125px;
    height: 165px;
    aspect-ratio: auto;
  }

  #shopProductGrid.list-view
  .gh-product-content {
    min-width: 0;
    padding: 14px 12px 14px 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #shopProductGrid.list-view
  .gh-product-title {
    font-size: 1.1rem;
    line-height: 1.25;
  }

  #shopProductGrid.list-view
  .gh-quick-add-button {
    width: 100%;
    margin-top: 10px;
  }
}