/* base.css */
:root {
  --gg-paper: #f7f3ec;
  --gg-paper-warm: #efe7dc;
  --gg-surface: #fffdf8;
  --gg-ink: #231b18;
  --gg-muted: #73645d;
  --gg-line: #dfd2c4;
  --gg-leaf: #2f5d46;
  --gg-leaf-soft: #e7efe7;
  --gg-rose: #b86f73;
  --gg-clay: #c99869;
  --gg-shadow: 0 22px 70px rgba(55, 43, 35, 0.12);
  --gg-radius-soft: 32px;
  --gg-radius-card: 22px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--gg-paper);
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(1400px 720px at 82% -10%, rgba(201, 152, 105, 0.18), transparent 52%),
    linear-gradient(180deg, var(--gg-paper), #fbf8f1 44%, var(--gg-paper));
  color: var(--gg-ink);
  font-family: "Vazirmatn", Tahoma, Arial, sans-serif;
}

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

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

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(47, 93, 70, 0.32);
  outline-offset: 3px;
}

.gg-page {
  min-height: 100vh;
}

.gg-kicker,
.gg-section-heading p {
  margin: 0;
  color: var(--gg-leaf);
  font-size: 13px;
  font-weight: 750;
}

.gg-section-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
}

.gg-section-heading h2,
.gg-browse-copy h1,
.gg-home-copy h1,
.gg-detail-copy h1,
.gg-description-panel h2 {
  margin: 0;
  color: var(--gg-ink);
  font-weight: 750;
  letter-spacing: 0;
}

.gg-empty-state {
  border: 1px solid var(--gg-line);
  border-radius: var(--gg-radius-card);
  background: rgba(255, 253, 248, 0.72);
  padding: 26px;
  color: var(--gg-muted);
}

.gg-image-placeholder {
  display: grid;
  place-items: center;
  width: min(220px, 62%);
  aspect-ratio: 1;
  border: 1px solid rgba(47, 93, 70, 0.22);
  border-radius: 999px 999px 42px 42px;
  color: var(--gg-leaf);
  background: rgba(255, 253, 248, 0.62);
  font-weight: 750;
}

.gg-availability {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  border: 1px solid var(--gg-line);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--gg-muted);
  background: rgba(255, 253, 248, 0.78);
  font-size: 12px;
  font-style: normal;
  font-weight: 750;
  line-height: 1.4;
}

.gg-availability.available {
  border-color: rgba(47, 93, 70, 0.22);
  color: var(--gg-leaf);
  background: var(--gg-leaf-soft);
}

.gg-availability.soon {
  border-color: rgba(201, 152, 105, 0.34);
  color: #785a2e;
  background: #f6ead9;
}

.gg-availability.unavailable {
  border-color: rgba(184, 111, 115, 0.28);
  color: #95545b;
  background: #f7e7e6;
}

@media (prefers-reduced-motion: no-preference) {
  .gg-product-card,
  .gg-contact-button,
  .gg-detail-thumbs button,
  .gg-variant-option {
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
  }
}


/* header.css */
.gg-header {
  direction: ltr;
  min-height: 86px;
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(180px, auto) minmax(150px, 1fr);
  align-items: center;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 72px);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 0;
  background: rgba(247, 243, 236, 0.84);
  backdrop-filter: blur(18px);
}

.gg-nav,
.gg-store-logo,
.gg-brand-title,
.gg-contact-actions,
.gg-footer nav {
  display: flex;
  align-items: center;
}

.gg-store-logo {
  grid-column: 1;
  justify-content: flex-start;
}

.gg-store-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.gg-brand-title {
  direction: rtl;
  grid-column: 2;
  flex-direction: column;
  justify-content: center;
  gap: 3px;
  text-align: center;
}

.gg-brand-title strong {
  color: var(--gg-ink);
  font-size: 44px;
  font-weight: 750;
  line-height: 1.05;
}

.gg-brand-title span {
  color: var(--gg-muted);
  font-size: 13px;
  font-weight: 650;
}

.gg-contact-button,
.gg-filter-row a {
  border: 1px solid var(--gg-line);
  background: rgba(255, 253, 248, 0.68);
  color: var(--gg-ink);
  font-weight: 750;
}


.gg-nav {
  direction: rtl;
  grid-column: 1 / -1;
  justify-content: center;
  gap: 22px;
  white-space: nowrap;
  color: var(--gg-muted);
  font-size: 13px;
  font-weight: 750;
  margin-top: -4px;
}

.gg-nav a {
  position: relative;
  padding: 10px 8px 12px;
}

.gg-nav a.active {
  color: var(--gg-leaf);
}

.gg-nav a.active::after {
  content: "";
  position: absolute;
  right: 8px;
  bottom: 4px;
  left: 8px;
  height: 2px;
  border-radius: 2px;
  background: var(--gg-leaf);
}


/* layout.css */
.gg-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px clamp(18px, 4vw, 34px) 0;
  color: var(--gg-muted);
  font-size: 13px;
  font-weight: 650;
}

.gg-breadcrumbs a {
  color: var(--gg-leaf);
}

.gg-breadcrumb-separator {
  color: rgba(115, 100, 93, 0.52);
}

.gg-contact-actions {
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto 42px;
  padding: 0 clamp(18px, 4vw, 34px);
}

.gg-contact-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  text-align: center;
}

.gg-contact-button.filled {
  border-color: var(--gg-leaf);
  background: var(--gg-leaf);
  color: #fffdf8;
}

.gg-contact-button.outline {
  color: var(--gg-leaf);
}

.gg-contact-button:hover,
.gg-social-link:hover,
.gg-filter-row a:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(47, 93, 70, 0.1);
}

.gg-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 34px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--gg-line);
  color: var(--gg-muted);
}

.gg-footer p {
  margin: 0;
  color: var(--gg-muted);
  line-height: 1.8;
}

.gg-footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gg-ink);
  font-weight: 750;
}

.gg-footer-brand img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.gg-footer nav {
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 750;
}

.gg-not-found {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(54px, 9vw, 110px) clamp(18px, 4vw, 34px);
  display: grid;
  gap: 16px;
}

.gg-not-found h1 {
  margin: 0;
  color: var(--gg-ink);
  font-size: 76px;
}

.gg-not-found p {
  margin: 0;
  color: var(--gg-muted);
  line-height: 1.9;
}

.gg-not-found a {
  width: fit-content;
}

@media (min-width: 821px) {
  .gg-not-found {
    min-height: calc(100vh - 240px);
    align-content: center;
    padding-block: 48px;
  }
}


/* home.css */
.gg-home-stage {
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(22px, 4.5vw, 52px) clamp(18px, 4vw, 34px) clamp(30px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 4.6vw, 62px);
  align-items: center;
  position: relative;
}

.gg-home-stage::before {
  content: "";
  position: absolute;
  inset: 8% 28% auto auto;
  width: min(52vw, 620px);
  height: min(42vw, 430px);
  border-radius: 47% 53% 52% 48% / 38% 47% 53% 62%;
  background: rgba(231, 239, 231, 0.72);
  z-index: -1;
}

.gg-home-copy {
  display: grid;
  gap: 20px;
  align-content: center;
}

.gg-home-copy h1 {
  max-width: 760px;
  font-size: 70px;
  line-height: 1.04;
}

.gg-home-copy > p:not(.gg-kicker),
.gg-browse-copy p,
.gg-detail-copy > p,
.gg-description-panel > p {
  margin: 0;
  max-width: 660px;
  color: var(--gg-muted);
  font-size: 17px;
  line-height: 2;
}

.gg-home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gg-home-primary-action {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--gg-leaf);
  color: #fff;
  font-weight: 750;
}

.gg-home-feature {
  position: relative;
  display: block;
  min-height: clamp(420px, 50vw, 620px);
  padding: 0 0 28px 28px;
}

.gg-home-feature-image {
  display: grid;
  place-items: center;
  height: 100%;
  min-height: inherit;
  overflow: hidden;
  border: 1px solid rgba(223, 210, 196, 0.78);
  border-radius: 999px 999px 44px 44px;
  background:
    linear-gradient(145deg, rgba(231, 239, 231, 0.82), rgba(246, 234, 217, 0.62)),
    var(--gg-surface);
  box-shadow: var(--gg-shadow);
}

.gg-home-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gg-home-feature-caption {
  position: absolute;
  right: 24px;
  bottom: 0;
  max-width: calc(100% - 48px);
  display: grid;
  gap: 4px;
  border: 1px solid var(--gg-line);
  border-radius: 28px;
  padding: 15px 18px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 48px rgba(55, 43, 35, 0.12);
}

.gg-home-filters {
  direction: rtl;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 34px) 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.gg-home-filters::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.gg-home-filters a {
  flex: 0 0 auto;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(223, 210, 196, 0.86);
  border-radius: 999px;
  padding: 0 14px;
  background: rgba(255, 253, 248, 0.72);
  color: var(--gg-muted);
  font-size: 13px;
  font-weight: 750;
}

.gg-home-filters a.active {
  border-color: rgba(47, 93, 70, 0.24);
  background: var(--gg-leaf-soft);
  color: var(--gg-leaf);
}

.gg-home-order {
  max-width: 1240px;
  margin: 0 auto 42px;
  padding-inline: clamp(18px, 4vw, 34px);
  text-align: center;
}

.gg-home-order h2 {
  margin: 0;
  color: var(--gg-ink);
  font-size: 28px;
}

.gg-home-order p {
  margin: 8px 0 16px;
  color: var(--gg-muted);
}

.gg-home-order nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 16px;
}

.gg-home-order nav a {
  color: var(--gg-leaf);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

.gg-home-order .gg-contact-actions {
  margin-bottom: 0;
  padding-inline: 0;
}

@media (min-width: 981px) {
  .gg-catalog-band .gg-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.gg-home-feature-caption small {
  color: var(--gg-muted);
  font-size: 12px;
  font-weight: 750;
}

.gg-home-feature-caption strong {
  font-size: 22px;
}

.gg-home-feature-action {
  display: none;
  color: var(--gg-leaf);
  font-size: 12px;
  font-weight: 750;
}


/* catalog.css */
.gg-catalog-band,
.gg-catalog-section,
.gg-browse-intro {
  max-width: 1240px;
  margin: 0 auto;
  padding-inline: clamp(18px, 4vw, 34px);
}

.gg-catalog-band {
  padding-block: 24px 54px;
}

.gg-browse-intro {
  padding-block: clamp(28px, 4.5vw, 52px) 22px;
}

.gg-browse-copy {
  max-width: 820px;
  display: grid;
  gap: 14px;
}

.gg-browse-copy h1 {
  font-size: 64px;
  line-height: 1.08;
}

.gg-catalog-section {
  padding-block: 12px 76px;
}

.gg-catalog-toolbar h2 {
  margin: 0;
  color: var(--gg-ink);
  font-size: 20px;
}

.gg-filters {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 22px;
}

.gg-filters summary {
  width: fit-content;
  min-height: 42px;
  display: flex;
  align-items: center;
  cursor: pointer;
  list-style: none;
  border: 1px solid rgba(223, 210, 196, 0.72);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 253, 248, 0.58);
  color: var(--gg-leaf);
  font-size: 13px;
  font-weight: 750;
}

.gg-filters summary::after {
  content: "⌄";
  margin-inline-start: 8px;
  font-size: 16px;
  line-height: 1;
  transition: transform 160ms ease;
}

.gg-filters[open] summary::after {
  transform: rotate(180deg);
}

.gg-filter-list {
  width: fit-content;
  max-width: 100%;
  display: grid;
  gap: 10px;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid rgba(223, 210, 196, 0.72);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.58);
}

.gg-filter-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.gg-filter-row span {
  min-width: 78px;
  color: var(--gg-muted);
  font-size: 12px;
  font-weight: 750;
}

.gg-filter-row a {
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--gg-muted);
  font-size: 13px;
}

.gg-filter-row a.active {
  border-color: rgba(47, 93, 70, 0.24);
  color: var(--gg-leaf);
  background: var(--gg-leaf-soft);
}

.gg-empty-state {
  display: grid;
  gap: 14px;
  justify-items: start;
}

.gg-empty-state p {
  margin: 0;
}

.gg-catalog-followup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(223, 210, 196, 0.86);
}

.gg-catalog-followup p {
  margin: 0;
  color: var(--gg-muted);
}

.gg-catalog-followup a {
  color: var(--gg-leaf);
  font-weight: 750;
}

.gg-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.gg-card-grid.compact {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.gg-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(223, 210, 196, 0.86);
  border-radius: var(--gg-radius-card);
  background: rgba(255, 253, 248, 0.86);
}

.gg-product-card:has(.gg-availability.unavailable) .gg-product-text strong,
.gg-product-card:has(.gg-availability.unavailable) > b,
.gg-product-card:has(.gg-availability.unavailable) .gg-availability {
  color: #95545b;
}

.gg-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 52px rgba(55, 43, 35, 0.1);
}

.gg-product-image {
  aspect-ratio: 3 / 4.55;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 999px 999px 26px 26px;
  margin: 12px 12px 0;
  background:
    linear-gradient(145deg, rgba(231, 239, 231, 0.84), rgba(246, 234, 217, 0.7)),
    var(--gg-surface);
}

.gg-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gg-product-text {
  flex: 1;
  display: grid;
  gap: 7px;
  padding: 15px 16px 0;
}

.gg-card-meta {
  color: var(--gg-muted);
  font-size: 12px;
  font-weight: 750;
}

.gg-product-text strong {
  color: var(--gg-ink);
  font-size: 21px;
  line-height: 1.28;
}

.gg-product-text > span:not(.gg-card-meta) {
  color: var(--gg-muted);
  font-size: 13px;
}

.gg-product-card > b {
  padding: 14px 16px 18px;
  color: var(--gg-leaf);
  font-size: 15px;
}

@media (min-width: 981px) {
  .gg-product-image {
    aspect-ratio: 4 / 4.6;
  }

  .gg-catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 22px;
  }

  .gg-catalog-toolbar .gg-filters {
    margin-bottom: 0;
  }

  .gg-catalog-section .gg-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* detail.css */
.gg-detail {
  direction: ltr;
  max-width: 1240px;
  margin: 0 auto;
  padding: 4px clamp(18px, 4vw, 34px) 24px;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(22px, 3.6vw, 48px);
  align-items: start;
}

.gg-detail-media {
  grid-column: 1;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.gg-detail-image-wrap {
  grid-column: 2;
  min-height: clamp(380px, 36vw, 520px);
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(223, 210, 196, 0.82);
  border-radius: 999px 999px 42px 42px;
  background:
    linear-gradient(145deg, rgba(231, 239, 231, 0.84), rgba(246, 234, 217, 0.72)),
    var(--gg-surface);
  box-shadow: var(--gg-shadow);
}

.gg-detail-main-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.gg-detail-thumbs {
  grid-column: 1;
  display: grid;
  gap: 10px;
}

.gg-detail-thumbs button {
  width: 70px;
  aspect-ratio: 3 / 4;
  padding: 0;
  border: 1px solid var(--gg-line);
  border-radius: 999px 999px 20px 20px;
  overflow: hidden;
  background: var(--gg-surface);
  cursor: pointer;
}

.gg-detail-thumbs button.active {
  border-color: var(--gg-leaf);
  box-shadow: 0 0 0 4px rgba(47, 93, 70, 0.12);
}

.gg-detail-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gg-detail-copy {
  direction: rtl;
  grid-column: 2;
  display: grid;
  gap: 10px;
  align-content: center;
  padding-top: 8px;
}

.gg-detail-copy h1 {
  font-size: 44px;
  line-height: 1.08;
}

.gg-price-block {
  display: grid;
  gap: 5px;
  padding: 2px 0 0;
  border: 0;
}

.gg-price-block span {
  color: var(--gg-muted);
  font-size: 12px;
  font-weight: 750;
}

.gg-price-block strong {
  color: var(--gg-leaf);
  font-size: 27px;
}

.gg-price-block small {
  color: var(--gg-muted);
  font-size: 12px;
}


/* detail-variants.css */
.gg-variant-panel,
.gg-order-panel {
  display: grid;
  gap: 11px;
}

.gg-variant-panel h2,
.gg-order-panel h2 {
  margin: 0;
  color: var(--gg-ink);
  font-size: 18px;
}

.gg-order-panel p {
  margin: 0;
  color: var(--gg-muted);
  line-height: 1.8;
  order: 2;
  text-align: center;
  font-size: 12px;
}

.gg-order-panel h2 {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: clip;
  clip-path: inset(50%);
}

.gg-order-panel .gg-contact-actions {
  order: 1;
  justify-content: start;
  margin: 0;
  padding: 0;
}

.gg-variant-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 10px;
}

.gg-variant-option {
  position: relative;
  min-width: 0;
  display: grid;
  gap: 6px;
  min-height: 104px;
  padding: 12px 13px 10px;
  border: 1px solid rgba(223, 210, 196, 0.86);
  border-radius: 24px;
  background: rgba(255, 253, 248, 0.74);
  cursor: pointer;
}

.gg-variant-option:has(input:checked),
.gg-variant-option.selected {
  border-color: rgba(47, 93, 70, 0.42);
  background: var(--gg-leaf-soft);
}

.gg-variant-option input {
  position: absolute;
  inset-inline-start: 14px;
  top: 16px;
  width: 18px;
  height: 18px;
  accent-color: var(--gg-leaf);
}

.gg-variant-option span {
  display: grid;
  gap: 4px;
  padding-inline-start: 26px;
}

.gg-variant-option strong {
  color: var(--gg-ink);
}

.gg-variant-option small {
  color: var(--gg-muted);
  font-weight: 650;
  line-height: 1.45;
}

.gg-variant-option b {
  color: var(--gg-leaf);
  font-size: 13px;
}


/* detail-lower.css */
.gg-detail-lower {
  max-width: 1240px;
  margin: 0 auto 64px;
  padding: clamp(24px, 4vw, 42px) clamp(18px, 4vw, 34px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  border: 1px solid rgba(223, 210, 196, 0.78);
  border-radius: 46px;
  background: rgba(255, 253, 248, 0.66);
}

.gg-description-panel {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 48px;
}

.gg-description-panel h2 {
  font-size: 46px;
  line-height: 1.12;
}

.gg-meta-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: min(100%, 520px);
  margin: 0;
}

.gg-meta-list div {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 10px;
  border-bottom: 1px solid rgba(223, 210, 196, 0.7);
  padding-bottom: 9px;
}

.gg-meta-list dt {
  color: var(--gg-muted);
  font-size: 12px;
  font-weight: 750;
}

.gg-meta-list dd {
  margin: 0;
  color: var(--gg-ink);
  font-weight: 650;
}

.gg-similar {
  min-width: 0;
}


/* seo-content.css */
.gg-seo-copy {
  max-width: 860px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--gg-line);
  color: var(--gg-muted);
  line-height: 2;
}

.gg-seo-copy h2 {
  margin: 0 0 8px;
  color: var(--gg-ink);
  font-size: 28px;
}

.gg-seo-copy p {
  margin: 0;
}

.gg-seo-copy nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.gg-seo-copy a {
  color: var(--gg-leaf);
  font-weight: 750;
  border-bottom: 1px solid currentColor;
}

.gg-faq-section {
  max-width: 1240px;
  margin: 0 auto 82px;
  padding-inline: clamp(18px, 4vw, 34px);
}

.gg-faq-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.gg-faq-list article {
  border: 1px solid rgba(223, 210, 196, 0.78);
  border-radius: 30px;
  padding: 20px;
  background: rgba(255, 253, 248, 0.7);
}

.gg-faq-list h3 {
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.55;
}

.gg-faq-list p {
  margin: 0;
  color: var(--gg-muted);
  line-height: 1.9;
}


/* header-responsive.css */
@media (min-width: 821px) {
  .gg-header {
    grid-template-columns: minmax(0, 1fr) max-content max-content;
    min-height: 78px;
    padding-block: 16px 6px;
    align-items: start;
  }

  .gg-store-logo {
    grid-column: 3;
    grid-row: 1;
    justify-content: flex-start;
    align-self: start;
  }

  .gg-store-logo img {
    width: 34px;
    height: 34px;
  }

  .gg-brand-title {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: clip;
    clip-path: inset(50%);
    pointer-events: none;
  }

  .gg-nav {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    margin-top: 0;
    padding-top: 4px;
  }
}

@media (max-width: 820px) {
  .gg-header {
    min-height: 112px;
    grid-template-columns: 48px minmax(0, 1fr);
    justify-items: stretch;
    gap: 12px;
    padding: 10px 16px 8px;
  }

  .gg-store-logo {
    grid-column: 1;
    grid-row: 1;
    align-items: flex-start;
  }

  .gg-store-logo img {
    width: 38px;
    height: 38px;
  }

  .gg-brand-title {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    justify-self: center;
    padding-top: 0;
  }

  .gg-brand-title strong {
    font-size: 32px;
  }

  .gg-brand-title span {
    font-size: 12px;
  }

  .gg-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    inline-size: auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2px;
    margin: 0;
    padding: 2px;
    border: 1px solid rgba(223, 210, 196, 0.78);
    border-radius: 999px;
    background: rgba(255, 253, 248, 0.68);
    font-size: 12px;
  }

  .gg-nav a {
    padding: 7px 8px;
    text-align: center;
  }

  .gg-nav a.active::after {
    bottom: 2px;
  }

}


/* layout-responsive.css */
@media (max-width: 820px) {
  .gg-contact-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 22px;
    padding-inline: 18px;
  }

  .gg-contact-button {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 13px;
  }

  .gg-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    padding-block: 22px 30px;
    font-size: 13px;
  }

  .gg-not-found h1 {
    font-size: 42px;
  }
}


/* home-responsive.css */
@media (max-width: 980px) {
  .gg-home-stage {
    grid-template-columns: 1fr;
    padding-top: 22px;
  }

  .gg-home-feature {
    min-height: 420px;
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
  }

  .gg-home-copy h1 {
    font-size: 54px;
  }
}

@media (max-width: 680px) {
  .gg-home-stage {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.05fr);
    direction: ltr;
    gap: 12px;
    align-items: center;
    min-height: 408px;
    overflow-x: hidden;
    padding: 4px 16px 18px;
  }

  .gg-home-stage::before {
    inset: 76px auto auto -18px;
    width: 330px;
    height: 254px;
  }

  .gg-home-copy {
    direction: rtl;
    grid-column: 1;
    grid-row: 1;
    align-self: end;
    gap: 12px;
    padding-bottom: 60px;
    z-index: 1;
  }

  .gg-home-copy h1 {
    max-width: 160px;
    color: var(--gg-leaf);
    font-size: 35px;
    line-height: 1.26;
  }

  .gg-home-copy > p:not(.gg-kicker) {
    max-width: 170px;
    font-size: 15px;
    line-height: 1.95;
  }

  .gg-home-primary-action {
    min-height: 40px;
    max-width: 170px;
    padding-inline: 12px;
    font-size: 12px;
    text-align: center;
  }

  .gg-kicker {
    color: var(--gg-leaf);
    font-size: 19px;
  }

  .gg-home-feature {
    direction: rtl;
    grid-column: 2;
    grid-row: 1;
    min-height: 360px;
    padding: 0 0 16px 0;
    max-width: none;
    width: 100%;
    margin: 0;
  }

  .gg-home-feature-image {
    min-height: 350px;
    border-radius: 999px 999px 28px 28px;
    box-shadow: 0 18px 48px rgba(55, 43, 35, 0.11);
  }

  .gg-home-feature-caption {
    right: 9px;
    bottom: 0;
    max-width: calc(100% - 18px);
    border-radius: 18px;
    padding: 9px 11px;
  }

  .gg-home-feature-caption small {
    font-size: 10px;
  }

  .gg-home-feature-caption strong {
    font-size: 14px;
  }

  .gg-home-feature-action {
    display: none;
  }

  .gg-home-filters {
    width: calc(100% - 32px);
    margin: -4px auto 0;
    padding: 8px;
    gap: 0;
    justify-content: space-between;
    border: 1px solid rgba(223, 210, 196, 0.74);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.9);
    box-shadow: 0 12px 28px rgba(55, 43, 35, 0.08);
  }

  .gg-home-filters a {
    min-height: 38px;
    border: 0;
    border-radius: 18px;
    padding-inline: 12px;
    background: transparent;
    font-size: 12px;
  }

  .gg-home-filters a + a {
    border-right: 1px solid rgba(223, 210, 196, 0.76);
  }
}


/* catalog-responsive.css */
@media (max-width: 980px) {
  .gg-faq-list {
    grid-template-columns: 1fr;
  }

  .gg-browse-copy h1 {
    font-size: 54px;
  }
}

@media (max-width: 680px) {
  .gg-browse-copy h1 {
    font-size: 38px;
  }

  .gg-browse-intro {
    padding-block: 10px 8px;
  }

  .gg-catalog-section {
    padding-block: 8px 48px;
  }

  .gg-catalog-followup {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-top: 26px;
    padding-top: 18px;
  }

  .gg-catalog-band {
    padding: 30px 16px 24px;
  }

  .gg-filters {
    margin-bottom: 14px;
  }

  .gg-filters summary {
    min-height: 40px;
    font-size: 12px;
  }

  .gg-filter-list {
    gap: 8px;
    padding: 12px;
    border-radius: 22px;
  }

  .gg-filter-row {
    gap: 4px;
    align-items: center;
  }

  .gg-filter-row span {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: clip;
    clip-path: inset(50%);
  }

  .gg-filter-row a {
    padding: 6px 9px;
    font-size: 12px;
  }

  .gg-card-grid,
  .gg-card-grid.compact {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px 12px;
  }

  .gg-product-card {
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: transparent;
  }

  .gg-product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .gg-product-image {
    aspect-ratio: 0.62;
    margin: 0;
    border-radius: 999px 999px 18px 18px;
    border: 1px solid rgba(223, 210, 196, 0.72);
    box-shadow: 0 12px 28px rgba(55, 43, 35, 0.08);
  }

  .gg-product-text {
    gap: 4px;
    padding: 9px 0 0;
  }

  .gg-card-meta,
  .gg-product-text > span:not(.gg-card-meta) {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: clip;
    clip-path: inset(50%);
  }

  .gg-product-text strong {
    font-size: 13px;
    line-height: 1.42;
    text-align: center;
  }

  .gg-availability {
    border: 0;
    padding: 0;
    background: transparent;
    font-size: 10px;
    line-height: 1.5;
    margin: 0 auto;
  }

  .gg-product-card > b {
    padding: 4px 0 0;
    font-size: 11px;
    line-height: 1.5;
    text-align: center;
  }
}

@media (max-width: 519px) {
  .gg-card-grid,
  .gg-card-grid.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}


/* detail-responsive.css */
@media (max-width: 980px) {
  .gg-detail-lower {
    grid-template-columns: 1fr;
  }

  .gg-detail {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
  }

  .gg-detail-media {
    grid-column: 1;
    max-width: none;
    width: 100%;
    margin: 0 auto;
    order: 1;
  }

  /* Keep tablet product identity and actions visible beside a shorter hero. */
  .gg-detail-image-wrap {
    height: 340px;
    min-height: 0;
  }

  .gg-detail-copy {
    grid-column: 2;
    order: 2;
  }

  .gg-detail-lower .gg-similar,
  .gg-detail-lower .gg-description-panel {
    grid-column: auto;
  }

  .gg-detail-copy h1 {
    font-size: 42px;
  }

  .gg-description-panel h2 {
    font-size: 36px;
  }
}

@media (max-width: 640px) {
  .gg-description-panel {
    display: grid;
    gap: 14px;
  }

  .gg-meta-list {
    grid-template-columns: 1fr;
    width: 100%;
    margin: 8px 0 0;
  }

  .gg-detail {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gg-detail-copy h1 {
    font-size: 36px;
  }

  /* On phones, title -> image -> decision controls is the useful reading
     order. Flattening the visual wrapper lets the existing server-rendered
     markup participate in the page grid without duplicating state or JS. */
  .gg-detail-copy {
    display: contents;
  }

  .gg-detail-copy .gg-kicker {
    order: 1;
  }

  .gg-detail-copy h1 {
    order: 2;
  }

  .gg-detail-copy .gg-price-block {
    order: 3;
  }

  .gg-detail-media {
    order: 4;
  }

  .gg-detail-copy > p:not(.gg-kicker) {
    order: 5;
  }

  .gg-detail-copy .gg-variant-panel {
    order: 6;
  }

  .gg-detail-copy .gg-order-panel {
    order: 7;
  }

  .gg-description-panel h2 {
    font-size: 30px;
  }

  .gg-detail-media {
    grid-template-columns: 1fr;
    max-width: none;
  }

  .gg-detail-copy {
    grid-column: 1;
  }

  .gg-variant-grid {
    grid-template-columns: 1fr;
  }

  .gg-detail-thumbs {
    grid-column: auto;
    order: 2;
    grid-template-columns: repeat(4, 1fr);
  }

  .gg-detail-thumbs button {
    width: 100%;
  }

  .gg-detail-image-wrap {
    grid-column: auto;
    height: auto;
    aspect-ratio: 0.78;
    min-height: 0;
    max-height: none;
  }

  .gg-detail-lower {
    border-radius: 32px;
    margin-bottom: 40px;
  }

  .gg-similar .gg-product-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: calc((100% - 12px) / 2);
    justify-self: center;
  }
}
