body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, #ffffff 0%, #fffefb 45%, #f8faf4 100%) !important;
  color: #223026;
}

[data-order-action]:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  filter: saturate(0.55);
}

main {
  min-height: 60vh;
}

::selection {
  background: #c8a64a;
  color: #ffffff;
}

.mobile-nav[data-open="false"] {
  display: none;
}

.mobile-nav[data-open="true"] {
  display: block;
}

@media (min-width: 1120px) {
  .mobile-nav {
    display: none !important;
  }
}

[data-route],
a[href] {
  cursor: pointer;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid #c8a64a;
  outline-offset: 3px;
}

:root {
  --gd-white: #fffefb;
  --gd-white-pure: #ffffff;
  --gd-beige: #f5efe4;
  --gd-sage: #6f7f5d;
  --gd-sage-dark: #4f6548;
  --gd-sage-light: #eef3ea;
  --gd-gold: #c8a64a;
  --gd-gold-light: #e8d083;
  --gd-stone: #e5ded0;
  --gd-charcoal: #223026;
  --gd-control-height: 50px;
  --gd-control-height-large: 54px;
  --gd-control-radius: 10px;
  --gd-control-padding-x: 16px;
}

header {
  background: rgba(255, 255, 255, 0.9) !important;
  border-bottom-color: rgba(200, 166, 74, 0.22) !important;
  box-shadow: 0 10px 30px rgba(79, 101, 72, 0.06) !important;
}

header::after {
  content: "";
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200, 166, 74, 0.55), transparent);
}

.gd-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  backdrop-filter: blur(18px);
}

.gd-navbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  min-height: 76px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 56px);
}

.gd-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  width: clamp(190px, 20vw, 300px);
  aspect-ratio: 9 / 5;
  overflow: hidden;
  color: var(--gd-charcoal);
  text-decoration: none;
  transition: transform 160ms ease, opacity 160ms ease;
}

.gd-brand:hover {
  opacity: 0.86;
}

.gd-brand:active {
  transform: scale(0.98);
}

.gd-brand-logo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.gd-footer-brand {
  display: inline-flex;
  width: min(260px, 100%);
  aspect-ratio: 9 / 5;
  overflow: hidden;
  text-decoration: none;
}

.gd-footer-brand img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.gd-main-nav {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  justify-self: center;
  min-width: 0;
  white-space: nowrap;
}

.gd-nav-item {
  position: relative;
}

.gd-nav-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  gap: 4px;
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #4e5b4e;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  padding: 0 14px;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease;
}

.gd-nav-trigger .material-symbols-outlined {
  font-size: 18px;
  line-height: 1;
  transition: transform 160ms ease;
}

.gd-nav-trigger:hover,
.gd-nav-trigger:focus-visible,
.gd-nav-trigger.is-active {
  border-color: rgba(200, 166, 74, 0.32);
  background: rgba(238, 243, 234, 0.9);
  color: var(--gd-sage-dark);
  box-shadow: inset 0 -1px 0 rgba(232, 208, 131, 0.55);
}

.gd-nav-item:hover .gd-nav-trigger .material-symbols-outlined,
.gd-nav-item:focus-within .gd-nav-trigger .material-symbols-outlined {
  transform: rotate(180deg);
}

.gd-nav-menu {
  position: absolute;
  display: none;
  top: calc(100% + 14px);
  left: 50%;
  width: min(620px, calc(100vw - 40px));
  border: 1px solid rgba(200, 166, 74, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 244, 0.98)),
    #ffffff;
  box-shadow: 0 24px 60px rgba(34, 48, 38, 0.14);
  opacity: 0;
  padding: 18px;
  pointer-events: none;
  transform: translate(-50%, 8px);
  white-space: normal;
  transition:
    opacity 160ms ease,
    transform 160ms ease,
    visibility 160ms ease;
  visibility: hidden;
}

.gd-nav-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 16px;
}

.gd-nav-item:hover .gd-nav-menu,
.gd-nav-item:focus-within .gd-nav-menu {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.gd-nav-menu--series {
  width: min(700px, calc(100vw - 40px));
}

.gd-nav-menu--about {
  width: min(680px, calc(100vw - 40px));
}

.gd-nav-menu--guide {
  width: min(520px, calc(100vw - 40px));
}

.gd-nav-menu--support {
  width: min(560px, calc(100vw - 40px));
}

.gd-nav-kicker {
  display: block;
  margin: 0 0 12px;
  color: var(--gd-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gd-nav-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.gd-nav-link {
  display: grid;
  align-content: start;
  gap: 6px;
  min-width: 0;
  min-height: 92px;
  border: 1px solid rgba(111, 127, 93, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gd-charcoal);
  overflow: hidden;
  padding: 14px;
  text-decoration: none;
  white-space: normal;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.gd-nav-link:hover,
.gd-nav-link:focus-visible {
  border-color: rgba(200, 166, 74, 0.44);
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(79, 101, 72, 0.1);
  transform: translateY(-1px);
}

.gd-nav-link span {
  min-width: 0;
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.gd-nav-link small {
  min-width: 0;
  color: #5b6657;
  font-size: 13px;
  line-height: 1.4;
  overflow-wrap: anywhere;
  white-space: normal;
}

.gd-nav-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 6px;
  justify-self: end;
  white-space: nowrap;
}

.gd-icon-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(111, 127, 93, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--gd-sage-dark);
  cursor: pointer;
  text-decoration: none;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.gd-icon-link:hover,
.gd-icon-link:focus-visible {
  border-color: rgba(200, 166, 74, 0.42);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(79, 101, 72, 0.1);
  transform: translateY(-1px);
}

.gd-icon-link .material-symbols-outlined {
  font-size: 22px;
  line-height: 1;
}

.gd-cart-count {
  position: absolute;
  top: -3px;
  right: -2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: var(--gd-gold);
  color: #ffffff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.gd-mobile-nav-inner {
  display: grid;
  gap: 14px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 18px clamp(18px, 4vw, 56px) 22px;
}

.gd-mobile-link,
.gd-mobile-group a,
.gd-mobile-actions a {
  color: #4e5b4e;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color 160ms ease;
}

.gd-mobile-link,
.gd-mobile-group {
  border: 1px solid rgba(200, 166, 74, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 14px;
}

.gd-mobile-link.is-active,
.gd-mobile-group a.is-active,
.gd-mobile-link:hover,
.gd-mobile-group a:hover,
.gd-mobile-actions a:hover {
  color: var(--gd-sage-dark);
}

.gd-mobile-group {
  display: grid;
  gap: 10px;
}

.gd-mobile-group > span {
  color: var(--gd-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gd-mobile-group a {
  border-top: 1px solid rgba(111, 127, 93, 0.12);
  padding-top: 10px;
}

.gd-mobile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gd-mobile-actions a {
  border: 1px solid rgba(111, 127, 93, 0.16);
  border-radius: 999px;
  background: #ffffff;
  padding: 10px 14px;
}

@media (min-width: 1120px) {
  .gd-navbar {
    grid-template-columns: minmax(218px, max-content) minmax(0, 1fr) max-content;
    min-height: 84px;
  }

  .gd-main-nav {
    display: inline-flex;
  }

  .gd-menu-toggle {
    display: none;
  }
}

@media (min-width: 1120px) and (max-width: 1360px) {
  .gd-navbar {
    gap: 10px;
    padding-inline: clamp(14px, 2.1vw, 28px);
  }

  .gd-brand {
    width: clamp(190px, 18vw, 246px);
  }

  .gd-main-nav {
    gap: 2px;
  }

  .gd-nav-trigger {
    min-height: 38px;
    padding-inline: 9px;
    font-size: 11px;
    letter-spacing: 0.045em;
  }

  .gd-nav-trigger .material-symbols-outlined {
    font-size: 16px;
  }

  .gd-nav-actions {
    gap: 4px;
  }

  .gd-icon-link {
    width: 38px;
    height: 38px;
  }

  .gd-icon-link .material-symbols-outlined {
    font-size: 20px;
  }
}

@media (min-width: 1120px) and (max-width: 1220px) {
  .gd-optional-action {
    display: none;
  }

  .gd-nav-trigger {
    padding-inline: 8px;
    font-size: 10.5px;
  }

  .gd-brand {
    width: 178px;
  }
}

@media (max-width: 1119px) {
  .gd-site-header .mobile-nav {
    border-top: 1px solid rgba(200, 166, 74, 0.18);
    background: rgba(255, 255, 255, 0.96);
  }
}

@media (max-width: 640px) {
  .gd-navbar {
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 70px;
    padding-inline: 16px;
  }

  .gd-brand {
    width: min(176px, 48vw);
  }

  .gd-icon-link {
    width: 38px;
    height: 38px;
  }

  .gd-optional-action {
    display: none;
  }
}

footer {
  background: linear-gradient(180deg, #ffffff 0%, #f8faf4 100%) !important;
  border-top-color: rgba(200, 166, 74, 0.22) !important;
}

.bg-background,
.bg-surface,
.bg-surface-bright,
.bg-brand-bg,
.bg-warm-ivory {
  background-color: var(--gd-white) !important;
}

.bg-surface-container-lowest,
.bg-soft-white,
.bg-brand-soft-white {
  background-color: var(--gd-white-pure) !important;
}

.bg-surface-container-low,
.bg-brand-warm-ivory {
  background-color: var(--gd-sage-light) !important;
}

.bg-surface-container,
.bg-surface-container-high,
[class~="bg-[#FAF8F5]"],
[class~="bg-[#f9f7f4]"],
[class~="bg-[#fdfaf6]"],
[class~="bg-[#F9F6F0]"] {
  background-color: var(--gd-beige) !important;
}

.bg-surface-container-highest,
.bg-surface-variant {
  background-color: #dfe7d9 !important;
}

.text-primary,
.text-charcoal,
.text-brand-charcoal,
.text-on-surface,
.text-on-background {
  color: var(--gd-charcoal) !important;
}

.text-on-surface-variant,
.text-outline {
  color: #5b6657 !important;
}

.bg-primary,
.bg-charcoal,
.bg-brand-charcoal,
.btn-primary,
[class~="bg-[#1d1b20]"] {
  background-color: var(--gd-sage-dark) !important;
  color: #ffffff !important;
}

.border-primary,
.border-charcoal,
.peer:checked ~ .peer-checked\:border-charcoal {
  border-color: var(--gd-sage-dark) !important;
}

.text-muted-gold,
.text-brand-gold,
.text-brand-muted-gold,
.text-tertiary,
.text-tertiary-container,
[class~="text-[#c9a74d]"],
[class~="text-[#B86B45]"] {
  color: var(--gd-gold) !important;
}

.bg-muted-gold,
.bg-brand-gold,
.bg-brand-muted-gold,
.bg-tertiary,
.bg-tertiary-container,
[class~="bg-[#c9a74d]"],
[class~="bg-[#B86B45]"] {
  background: linear-gradient(135deg, var(--gd-gold) 0%, var(--gd-gold-light) 50%, var(--gd-gold) 100%) !important;
  color: #ffffff !important;
}

.border-muted-gold,
.border-brand-gold,
.border-brand-muted-gold,
.border-tertiary,
.border-tertiary-container,
.custom-border,
.border-light-stone,
.border-brand-light-stone,
.border-brand-stone,
.border-stone,
[class~="border-[#E8E0D2]"] {
  border-color: var(--gd-stone) !important;
}

.hover\:border-tertiary-container:hover,
.hover\:border-muted-gold:hover,
.hover-lift:hover,
.mediterranean-hover-shadow:hover,
.plan-card:hover {
  border-color: rgba(200, 166, 74, 0.58) !important;
}

.text-soft-olive,
.text-brand-soft-olive,
.text-soft-olive,
[class~="text-[#6F7D5C]"] {
  color: var(--gd-sage) !important;
}

.bg-soft-olive,
.bg-brand-soft-olive,
.bg-soft-olive,
[class~="bg-[#6F7D5C]"] {
  background-color: var(--gd-sage) !important;
  color: #ffffff !important;
}

.glass-panel {
  background: rgba(255, 255, 255, 0.86) !important;
  border-color: rgba(200, 166, 74, 0.24) !important;
  box-shadow: 0 18px 48px rgba(79, 101, 72, 0.08);
}

.ambient-bg {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 244, 0.96)),
    linear-gradient(90deg, transparent, rgba(200, 166, 74, 0.12), transparent) !important;
}

.shadow-ambient,
.ambient-shadow,
.soft-shadow,
.custom-shadow,
.mediterranean-shadow {
  box-shadow: 0 16px 44px rgba(79, 101, 72, 0.07) !important;
}

.gd-home-hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  color: var(--gd-charcoal);
  background: var(--gd-sage-light);
}

.gd-home-hero-media,
.gd-home-hero-shade {
  position: absolute;
  inset: 0;
}

.gd-home-hero-media {
  background-image: url("/images/premium/hero-ciftlik-gravur-v2.webp");
  background-color: #f8f0e3;
  background-position: right center;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.gd-home-hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(255, 254, 251, 0.94) 0%,
      rgba(255, 254, 251, 0.8) 30%,
      rgba(255, 254, 251, 0.38) 47%,
      rgba(255, 254, 251, 0.04) 68%,
      transparent 100%
    );
}

.gd-home-hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1280px);
  min-height: inherit;
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 72px 24px;
}

.gd-home-hero-copy {
  width: min(100%, 590px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.gd-home-eyebrow {
  margin-bottom: 18px;
  color: var(--gd-gold);
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gd-home-hero h1 {
  margin: 0;
  color: var(--gd-charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.25rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

.gd-home-hero-lead {
  max-width: 18ch;
  margin-top: 22px;
  color: var(--gd-sage-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  line-height: 1.3;
  font-weight: 600;
}

.gd-home-hero-description {
  max-width: 56ch;
  margin-top: 18px;
  color: #465140;
  font-size: 1.05rem;
  line-height: 1.75;
}

.gd-home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.gd-home-primary-action,
.gd-home-secondary-action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 5px;
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gd-home-primary-action {
  color: #ffffff;
  background: var(--gd-sage-dark);
  border: 1px solid var(--gd-sage-dark);
}

.gd-home-secondary-action {
  color: var(--gd-charcoal);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(79, 101, 72, 0.42);
}

.gd-home-primary-action:hover,
.gd-home-primary-action:focus-visible,
.gd-home-secondary-action:hover,
.gd-home-secondary-action:focus-visible {
  color: #ffffff;
  background: var(--gd-gold);
  border-color: var(--gd-gold);
  transform: translateY(-2px);
  outline: none;
}

.gd-family-section {
  padding: 72px 24px 78px;
  background: #ffffff;
  border-bottom: 1px solid rgba(229, 222, 208, 0.9);
}

.gd-section-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-bottom: 42px;
  text-align: center;
}

.gd-section-heading > span,
.gd-section-heading--left span {
  letter-spacing: 0 !important;
}

.gd-section-heading p {
  max-width: 62ch;
  color: #5b6657;
  font-size: 1rem;
  line-height: 1.65;
}

.gd-section-heading--left {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: end;
  gap: 40px;
  text-align: left;
}

.gd-section-heading--left h2 {
  margin-top: 10px;
}

.gd-section-heading--left p {
  justify-self: end;
  margin-bottom: 4px;
}

.gd-family-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.gd-family-card {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  background: var(--gd-sage-dark);
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(34, 48, 38, 0.11);
}

.gd-family-card > img,
.gd-family-card-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.gd-family-card > img {
  z-index: -2;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gd-family-card-shade {
  z-index: -1;
  background: linear-gradient(180deg, rgba(18, 31, 21, 0.04) 25%, rgba(18, 31, 21, 0.88) 100%);
}

.gd-family-card-content {
  min-height: 166px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 9px;
  padding: 22px 18px;
}

.gd-family-card-content small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  line-height: 1.3;
  font-weight: 700;
}

.gd-family-card-content strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.16;
  font-weight: 700;
}

.gd-family-card-content > span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
  color: var(--gd-gold-light);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

.gd-family-card-content .material-symbols-outlined {
  font-size: 1rem;
}

.gd-family-card:hover > img,
.gd-family-card:focus-visible > img {
  transform: scale(1.045);
}

.gd-family-card:focus-visible {
  outline: 3px solid var(--gd-gold);
  outline-offset: 3px;
}

.gd-family-more {
  display: flex;
  justify-content: flex-end;
  margin-top: 24px;
}

.gd-family-more a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--gd-sage-dark);
  font-size: 0.78rem;
  line-height: 1.3;
  font-weight: 800;
}

.gd-family-more .material-symbols-outlined {
  color: var(--gd-gold);
  font-size: 1.1rem;
}

.gd-home-showcase {
  padding: 80px 24px;
  background:
    linear-gradient(180deg, rgba(238, 243, 234, 0.74), rgba(248, 250, 244, 0.95)),
    #f8faf4;
  border-bottom: 1px solid rgba(200, 166, 74, 0.18);
}

.gd-home-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.gd-home-product-grid .gd-product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(229, 222, 208, 0.98);
}

.gd-showcase-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

@media (max-width: 1100px) {
  .gd-home-hero {
    min-height: 620px;
  }

  .gd-family-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .gd-family-card {
    grid-column: span 2;
  }

  .gd-family-card:nth-child(4) {
    grid-column: 2 / span 2;
  }
}

@media (max-width: 820px) {
  .gd-home-hero {
    min-height: 600px;
  }

  .gd-home-hero-media {
    background-position: 61% center;
    background-size: cover;
  }

  .gd-home-hero-shade {
    background: linear-gradient(90deg, rgba(255, 254, 251, 0.98) 0%, rgba(255, 254, 251, 0.9) 48%, rgba(255, 254, 251, 0.36) 76%, transparent 100%);
  }

  .gd-home-hero-copy {
    width: min(100%, 520px);
  }

  .gd-home-hero h1 {
    font-size: 3.5rem;
  }

  .gd-home-hero-lead {
    font-size: 1.5rem;
  }

  .gd-section-heading--left {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .gd-section-heading--left p {
    justify-self: start;
  }

  .gd-home-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .gd-home-hero {
    min-height: 620px;
    align-items: flex-start;
  }

  .gd-home-hero-media {
    background-position: 64% center;
  }

  .gd-home-hero-shade {
    background:
      linear-gradient(180deg, rgba(255, 254, 251, 0.96) 0%, rgba(255, 254, 251, 0.88) 52%, rgba(255, 254, 251, 0.32) 78%, rgba(34, 48, 38, 0.18) 100%);
  }

  .gd-home-hero-inner {
    align-items: flex-start;
    padding: 52px 20px 150px;
  }

  .gd-home-hero h1 {
    font-size: 3rem;
  }

  .gd-home-hero-lead {
    max-width: 20ch;
    font-size: 1.36rem;
  }

  .gd-home-hero-description {
    max-width: 38ch;
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .gd-home-hero-actions {
    width: 100%;
    margin-top: 24px;
  }

  .gd-home-primary-action,
  .gd-home-secondary-action {
    flex: 1 1 100%;
    width: 100%;
  }

  .gd-family-section,
  .gd-home-showcase {
    padding: 58px 20px;
  }

  .gd-family-grid {
    grid-template-columns: 1fr;
  }

  .gd-family-card,
  .gd-family-card:nth-child(4) {
    grid-column: auto;
    min-height: 280px;
  }

  .gd-family-more {
    justify-content: flex-start;
  }

  .gd-home-product-grid {
    grid-template-columns: 1fr;
  }
}

.gd-category-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 244, 0.95)),
    radial-gradient(circle at 50% 0%, rgba(232, 208, 131, 0.2), transparent 34%);
  border-bottom: 1px solid rgba(200, 166, 74, 0.18);
}

.gd-category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 1.6vw, 20px);
}

.gd-category-card {
  position: relative;
  isolation: isolate;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px 18px 22px;
  overflow: hidden;
  text-align: center;
  color: var(--gd-charcoal);
  background:
    linear-gradient(180deg, rgba(255, 254, 251, 0.97), rgba(245, 239, 228, 0.72)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(238, 243, 234, 0.6));
  border: 1px solid rgba(200, 166, 74, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(79, 101, 72, 0.09);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.gd-category-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0%, transparent 38%, rgba(232, 208, 131, 0.42) 49%, transparent 60%, transparent 100%),
    radial-gradient(circle at 50% 16%, rgba(200, 166, 74, 0.15), transparent 28%);
  opacity: 0.64;
  transform: translateX(-18%);
  transition: transform 0.55s ease, opacity 0.28s ease;
}

.gd-category-card:hover,
.gd-category-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(200, 166, 74, 0.62);
  box-shadow: 0 26px 64px rgba(79, 101, 72, 0.13);
  outline: none;
}

.gd-category-card:hover::before,
.gd-category-card:focus-visible::before {
  opacity: 0.95;
  transform: translateX(18%);
}

.gd-category-card-featured {
  background:
    linear-gradient(180deg, rgba(255, 254, 251, 0.95), rgba(238, 243, 234, 0.9)),
    linear-gradient(135deg, rgba(200, 166, 74, 0.12), rgba(79, 101, 72, 0.1));
  border-color: rgba(200, 166, 74, 0.44);
}

.gd-medallion {
  width: clamp(104px, 9vw, 132px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  margin-bottom: 6px;
  overflow: hidden;
  background: #faf8f2;
  border: 1px solid rgba(118, 88, 33, 0.18);
  border-radius: 50%;
  box-shadow:
    0 14px 26px rgba(79, 101, 72, 0.13);
}

.gd-medallion-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.gd-medallion--asset {
  color: inherit;
}

.gd-content-prose {
  color: #465140;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.12rem);
  line-height: 1.9;
}

.gd-content-prose p + p {
  margin-top: 22px;
}

.gd-content-lead {
  margin-top: 32px !important;
  padding: 24px 28px;
  color: var(--gd-charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 1.02rem + 0.64vw, 1.56rem);
  line-height: 1.55;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(238, 243, 234, 0.78)),
    linear-gradient(110deg, rgba(200, 166, 74, 0.18), transparent 48%);
  border: 1px solid rgba(200, 166, 74, 0.28);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(79, 101, 72, 0.08);
}

.gd-oil-types-section {
  background:
    linear-gradient(180deg, rgba(248, 250, 244, 0.96), rgba(255, 254, 251, 0.98)),
    linear-gradient(90deg, transparent, rgba(200, 166, 74, 0.13), transparent);
  border-top: 1px solid rgba(200, 166, 74, 0.2);
  border-bottom: 1px solid rgba(200, 166, 74, 0.2);
}

.gd-oil-type-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.gd-oil-type-card {
  position: relative;
  isolation: isolate;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: clamp(22px, 2vw, 30px);
  overflow: hidden;
  color: var(--gd-charcoal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 239, 228, 0.62)),
    linear-gradient(135deg, rgba(238, 243, 234, 0.76), rgba(255, 255, 255, 0.88));
  border: 1px solid rgba(200, 166, 74, 0.3);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(79, 101, 72, 0.08);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.gd-oil-type-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(120deg, transparent 0%, rgba(232, 208, 131, 0.34) 47%, transparent 64%);
  opacity: 0.36;
  transform: translateX(-30%);
  transition: transform 0.5s ease, opacity 0.24s ease;
}

.gd-oil-type-card:hover,
.gd-oil-type-card:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(200, 166, 74, 0.66);
  box-shadow: 0 28px 66px rgba(79, 101, 72, 0.13);
  outline: none;
}

.gd-oil-type-card:hover::before,
.gd-oil-type-card:focus-visible::before {
  opacity: 0.72;
  transform: translateX(24%);
}

.gd-oil-type-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
}

.gd-oil-type-card .gd-medallion {
  width: clamp(82px, 7vw, 108px);
  margin: 0;
}

.gd-oil-type-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--gd-gold);
  font-size: 0.68rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gd-oil-type-card h3 {
  margin: 0;
  color: var(--gd-charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 1.22rem + 0.72vw, 2rem);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
}

.gd-oil-type-subtitle {
  margin-top: 8px;
  color: var(--gd-sage-dark);
  font-size: 0.88rem;
  line-height: 1.35;
  font-weight: 800;
}

.gd-oil-type-copy {
  color: #5b6657;
  font-size: 0.96rem;
  line-height: 1.75;
}

.gd-oil-type-pairing {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 9px 12px;
  color: var(--gd-sage-dark);
  background: rgba(238, 243, 234, 0.82);
  border: 1px solid rgba(111, 127, 93, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  line-height: 1.25;
  font-weight: 800;
}

.gd-oil-type-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  color: var(--gd-gold);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gd-selected-series-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px;
}

.gd-selected-series-symbol .gd-medallion {
  width: 76px;
  margin: 0;
}

.gd-category-name {
  display: block;
  min-height: 34px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 1.1vw, 1.62rem);
  line-height: 1.05;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gd-charcoal);
}

.gd-category-kicker {
  display: block;
  min-height: 24px;
  font-size: 0.78rem;
  line-height: 1.35;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gd-sage-dark);
}

.gd-category-copy {
  display: block;
  flex: 1;
  max-width: 22ch;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #5b6657;
}

.gd-category-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin-top: 6px;
  padding: 10px 14px;
  border-top: 1px solid rgba(200, 166, 74, 0.34);
  color: var(--gd-gold);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .gd-category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .gd-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gd-oil-type-grid {
    grid-template-columns: 1fr;
  }

  .gd-category-card {
    min-height: 330px;
    padding-inline: 16px;
  }
}

@media (max-width: 560px) {
  .gd-category-grid {
    grid-template-columns: 1fr;
  }

  .gd-category-card {
    min-height: auto;
  }

  .gd-oil-type-head,
  .gd-selected-series-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .gd-oil-type-card {
    align-items: center;
    text-align: center;
  }

  .gd-oil-type-pairing,
  .gd-oil-type-link {
    align-self: center;
  }
}

.gd-trust-section {
  padding: clamp(32px, 5vw, 64px) 0;
  background:
    linear-gradient(180deg, rgba(255, 254, 251, 0.96), rgba(238, 243, 234, 0.92)),
    linear-gradient(90deg, transparent, rgba(200, 166, 74, 0.16), transparent);
  border-top: 1px solid rgba(200, 166, 74, 0.24);
  border-bottom: 1px solid rgba(200, 166, 74, 0.24);
}

.gd-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 24px);
}

.gd-trust-item {
  min-height: 218px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 28px 18px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(229, 222, 208, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(79, 101, 72, 0.07);
}

.gd-trust-icon {
  width: clamp(88px, 7vw, 112px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: var(--gd-sage-dark);
  background: #faf8f2;
  border: 1px solid rgba(118, 88, 33, 0.18);
  border-radius: 50%;
  box-shadow:
    0 16px 30px rgba(79, 101, 72, 0.11);
}

.gd-trust-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.gd-trust-ring {
  fill: none;
  stroke: var(--gd-gold);
  stroke-width: 2.4;
}

.gd-trust-halo {
  fill: rgba(238, 243, 234, 0.34);
  stroke: none;
}

.gd-trust-symbol {
  fill: none;
  stroke: var(--gd-sage-dark);
  stroke-width: 3.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gd-trust-symbol-fill {
  fill: rgba(111, 127, 93, 0.15);
}

.gd-trust-title {
  display: block;
  min-height: 24px;
  color: var(--gd-charcoal);
  font-size: 0.9rem;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

.gd-trust-copy {
  display: block;
  max-width: 22ch;
  color: #5b6657;
  font-size: 0.92rem;
  line-height: 1.45;
}

.gd-choice-active {
  border-color: rgba(200, 166, 74, 0.82) !important;
  background: linear-gradient(135deg, rgba(200, 166, 74, 0.14), rgba(238, 243, 234, 0.78)) !important;
  color: var(--gd-charcoal) !important;
  box-shadow: inset 0 0 0 1px rgba(200, 166, 74, 0.26), 0 10px 26px rgba(79, 101, 72, 0.08);
}

.gd-sort-control {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 7px 46px 7px 16px;
  color: var(--gd-charcoal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 244, 0.9)),
    linear-gradient(120deg, rgba(200, 166, 74, 0.12), transparent 48%);
  border: 1px solid rgba(200, 166, 74, 0.34);
  border-radius: 8px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 14px 34px rgba(79, 101, 72, 0.08);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.gd-sort-control::after {
  content: "expand_more";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gd-gold);
  font-family: "Material Symbols Outlined";
  font-size: 22px;
  line-height: 1;
  pointer-events: none;
}

.gd-sort-control:focus-within,
.gd-sort-control:hover {
  border-color: rgba(200, 166, 74, 0.72);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 42px rgba(79, 101, 72, 0.12),
    0 0 0 3px rgba(200, 166, 74, 0.12);
}

.gd-sort-label {
  color: var(--gd-sage-dark);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gd-sort-select {
  min-width: 220px;
  appearance: none;
  -webkit-appearance: none;
  border: 0;
  color: var(--gd-charcoal);
  background: transparent;
  padding: 0;
  font-size: 0.98rem;
  line-height: 1.35;
  font-weight: 600;
  cursor: pointer;
}

.gd-sort-select:focus {
  outline: none;
  box-shadow: none;
}

.gd-sort-select option {
  color: var(--gd-charcoal);
  background: #ffffff;
}

.gd-collection-hero {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(200, 166, 74, 0.22);
}

.gd-collection-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--gd-gold);
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gd-special-selection {
  padding: clamp(28px, 4vw, 48px) 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 243, 234, 0.92)),
    linear-gradient(115deg, rgba(200, 166, 74, 0.16), transparent 44%);
  border-top: 1px solid rgba(200, 166, 74, 0.18);
  border-bottom: 1px solid rgba(200, 166, 74, 0.2);
}

.gd-special-shell {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(22px, 3vw, 44px);
  align-items: stretch;
}

.gd-special-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(200, 166, 74, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 48px rgba(79, 101, 72, 0.08);
}

.gd-special-copy h2,
.gd-origin-legend-copy h2 {
  margin: 0 0 12px;
  color: var(--gd-charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.72rem, 1.32rem + 1vw, 2.42rem);
  line-height: 1.08;
  font-weight: 700;
}

.gd-special-copy p,
.gd-origin-legend-copy p {
  margin: 0;
  color: #5b6657;
  font-size: 1rem;
  line-height: 1.72;
}

.gd-special-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  min-height: 42px;
  margin-top: 24px;
  color: var(--gd-sage-dark);
  font-size: 0.76rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.gd-special-link .material-symbols-outlined {
  color: var(--gd-gold);
  font-size: 18px;
}

.gd-special-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.gd-special-card {
  display: grid;
  align-content: start;
  gap: 9px;
  min-height: 154px;
  padding: 18px;
  color: var(--gd-charcoal);
  text-decoration: none;
}

.gd-special-card-category,
.gd-card-category {
  color: var(--gd-gold);
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gd-special-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  line-height: 1.18;
}

.gd-special-card small {
  color: #5b6657;
  font-size: 0.88rem;
  line-height: 1.42;
}

.gd-origin-legend {
  display: grid;
  grid-template-columns: minmax(260px, 0.52fr) minmax(0, 1.48fr);
  gap: clamp(22px, 3vw, 36px);
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(200, 166, 74, 0.26);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 244, 0.88)),
    linear-gradient(115deg, rgba(200, 166, 74, 0.12), transparent 50%);
  box-shadow: 0 16px 42px rgba(79, 101, 72, 0.08);
}

.gd-origin-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gd-origin-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(111, 127, 93, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.gd-origin-item span {
  display: block;
  color: var(--gd-gold);
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gd-origin-item strong {
  display: block;
  margin-top: 4px;
  color: var(--gd-charcoal);
  font-size: 0.95rem;
  line-height: 1.28;
}

.gd-origin-item small {
  display: block;
  margin-top: 6px;
  color: #5b6657;
  font-size: 0.86rem;
  line-height: 1.42;
}

.gd-origin-mark {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  color: #6d551e;
  border: 1px solid rgba(200, 166, 74, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.88), transparent 25%),
    linear-gradient(145deg, rgba(232, 208, 131, 0.42), rgba(238, 243, 234, 0.86));
  box-shadow:
    inset 0 1px 5px rgba(255, 255, 255, 0.72),
    0 10px 22px rgba(79, 101, 72, 0.1);
}

.gd-origin-item .gd-origin-mark {
  width: 52px;
  height: 52px;
}

.gd-origin-mark--asset {
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gd-origin-item .gd-origin-mark--asset {
  width: 76px;
  height: 76px;
  margin: -10px -6px -8px -10px;
}

.gd-origin-mark-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gd-origin-mark svg {
  width: 72%;
  height: 72%;
  display: block;
}

.gd-origin-mark path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gd-origin-mark .gd-origin-leaf {
  stroke-width: 4.2;
}

.gd-origin-mark .gd-origin-stem {
  stroke-width: 4.6;
}

.gd-origin-mark .gd-origin-vein {
  opacity: 0.82;
  stroke-width: 3;
}

.gd-origin-mark .gd-origin-vein--small {
  opacity: 0.55;
  stroke-width: 2.2;
}

.gd-origin-mark .gd-origin-check {
  stroke-width: 5.2;
}

.gd-origin-mark--farm {
  color: var(--gd-sage-dark);
}

.gd-origin-mark--curated {
  color: #6d551e;
}

.gd-origin-mark--partner {
  color: var(--gd-sage);
}

.gd-filter-panel {
  display: grid;
  gap: 24px;
  padding: 18px;
  border: 1px solid rgba(200, 166, 74, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 42px rgba(79, 101, 72, 0.08);
}

.gd-filter-panel fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.gd-filter-panel legend {
  width: 100%;
  margin: 0 0 8px;
  padding-bottom: 10px;
  color: var(--gd-charcoal);
  border-bottom: 1px solid rgba(229, 222, 208, 0.98);
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.gd-filter-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 38px;
  cursor: pointer;
  color: #5b6657;
  font-size: 0.92rem;
  line-height: 1.3;
}

.gd-filter-option input {
  width: 16px;
  height: 16px;
  accent-color: var(--gd-gold);
}

.gd-filter-option > span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.gd-filter-option .material-symbols-outlined {
  width: 22px;
  color: var(--gd-sage);
  font-size: 19px;
  line-height: 1;
}

.gd-filter-option:hover,
.gd-filter-option:has(input:checked) {
  color: var(--gd-charcoal);
}

@media (max-width: 640px) {
  .gd-sort-control {
    width: 100%;
    justify-content: space-between;
  }

  .gd-sort-select {
    min-width: 0;
    width: 100%;
  }
}

.gd-size-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.gd-size-option {
  position: relative;
  cursor: pointer;
}

.gd-size-input {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}

.gd-size-pill {
  min-height: 66px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 12px 14px;
  text-align: center;
  color: var(--gd-charcoal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 244, 0.88));
  border: 1px solid rgba(229, 222, 208, 0.95);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.gd-size-pill strong {
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
}

.gd-size-pill small {
  color: #5b6657;
  font-size: 0.72rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gd-size-option:hover .gd-size-pill,
.gd-size-input:focus-visible + .gd-size-pill {
  border-color: rgba(200, 166, 74, 0.62);
  box-shadow: 0 12px 28px rgba(79, 101, 72, 0.1), 0 0 0 3px rgba(200, 166, 74, 0.12);
}

.gd-size-input:checked + .gd-size-pill {
  color: #ffffff;
  background:
    linear-gradient(135deg, var(--gd-sage-dark), var(--gd-sage));
  border-color: rgba(200, 166, 74, 0.76);
  box-shadow: 0 14px 32px rgba(79, 101, 72, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.gd-size-input:checked + .gd-size-pill small {
  color: rgba(255, 255, 255, 0.78);
}

.gd-tasting-card {
  margin-top: 8px;
  padding: 22px;
  color: var(--gd-charcoal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(248, 250, 244, 0.9)),
    linear-gradient(120deg, rgba(200, 166, 74, 0.1), transparent 52%);
  border: 1px solid rgba(200, 166, 74, 0.26);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(79, 101, 72, 0.08);
}

.gd-tasting-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--gd-gold);
}

.gd-tasting-card-header h3 {
  margin: 0;
  color: var(--gd-charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.25;
  font-weight: 700;
}

.gd-tasting-list {
  display: grid;
  gap: 14px;
}

.gd-tasting-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(229, 222, 208, 0.8);
}

.gd-tasting-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.gd-tasting-label {
  display: block;
  color: var(--gd-charcoal);
  font-size: 0.82rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gd-tasting-copy {
  display: block;
  margin-top: 4px;
  color: #5b6657;
  font-size: 0.92rem;
  line-height: 1.35;
}

.gd-olive-scale {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.gd-olive-mark {
  width: 14px;
  height: 20px;
  display: inline-block;
  border: 1.5px solid rgba(111, 127, 93, 0.56);
  border-radius: 55% 45% 55% 45%;
  transform: rotate(28deg);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.72);
}

.gd-olive-mark.is-filled {
  border-color: rgba(79, 101, 72, 0.92);
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.65), transparent 24%),
    linear-gradient(145deg, var(--gd-sage), var(--gd-sage-dark));
}

.gd-product-card {
  position: relative;
  isolation: isolate;
  color: var(--gd-charcoal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 244, 0.88)) !important;
  border-color: rgba(229, 222, 208, 0.98) !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 42px rgba(79, 101, 72, 0.08) !important;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.gd-product-card:hover,
.gd-product-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(200, 166, 74, 0.58) !important;
  box-shadow: 0 24px 58px rgba(79, 101, 72, 0.13) !important;
}

.gd-product-card h2,
.gd-product-card h3,
.gd-product-card h4 {
  color: var(--gd-charcoal) !important;
}

.gd-product-card p {
  color: #5b6657;
}

.gd-product-card img {
  transition: transform 0.55s ease;
}

.gd-product-card:hover img {
  transform: scale(1.04);
}

.gd-product-card .font-price-display {
  color: var(--gd-charcoal) !important;
  font-weight: 800;
}

.gd-collection-product {
  min-height: 100%;
}

.gd-product-media {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f5efe5;
}

.gd-product-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.gd-product-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: flex-start;
}

.gd-special-badge {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 6px 9px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gd-gold), var(--gd-gold-light));
  border-radius: 3px;
  box-shadow: 0 10px 20px rgba(34, 48, 38, 0.12);
  font-size: 0.64rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.gd-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.gd-product-body h2 {
  margin: 0;
  color: var(--gd-charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.15;
  font-weight: 700;
}

.gd-product-body p {
  margin: 0;
  min-height: 4.2em;
  color: #5b6657;
  font-size: 0.94rem;
  line-height: 1.42;
}

.gd-product-origin {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  margin-top: 2px;
  color: var(--gd-sage-dark);
  font-size: 0.78rem;
  line-height: 1.2;
  font-weight: 800;
}

.gd-product-origin .gd-origin-mark {
  width: 30px;
  height: 30px;
}

.gd-product-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  min-height: 76px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(229, 222, 208, 0.92);
}

.gd-product-price {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.gd-product-price span,
.gd-product-price small {
  color: #6b725f;
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gd-product-price strong {
  color: var(--gd-charcoal);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 800;
}

.gd-product-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  color: #5b6657;
  background: rgba(238, 243, 234, 0.86);
  border: 1px solid rgba(111, 127, 93, 0.18);
  border-radius: 6px;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gd-product-card button,
.gd-product-card .gd-product-link,
.gd-product-card button[data-route="/sepet"] {
  min-height: 44px;
  border: 0 !important;
  border-radius: 6px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--gd-sage-dark), var(--gd-sage)) !important;
  box-shadow: 0 12px 26px rgba(79, 101, 72, 0.14);
}

.gd-product-card button:hover,
.gd-product-card .gd-product-link:hover,
.gd-product-card button[data-route="/sepet"]:hover {
  background: linear-gradient(135deg, var(--gd-gold), var(--gd-gold-light)) !important;
}

.gd-product-card .gd-product-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.gd-empty-state {
  margin-top: 28px;
  padding: 22px;
  color: #5b6657;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 244, 0.88));
  border: 1px solid rgba(200, 166, 74, 0.24);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(79, 101, 72, 0.07);
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .gd-collection-hero,
  .gd-special-shell,
  .gd-origin-legend {
    grid-template-columns: 1fr;
  }

  .gd-collection-hero {
    display: grid;
    align-items: start;
  }

  .gd-origin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .gd-special-grid {
    grid-template-columns: 1fr;
  }

  .gd-product-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .gd-product-status,
  .gd-product-card .gd-product-link,
  .gd-product-card button {
    width: 100%;
  }
}

.gd-cart-item {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 244, 0.88)) !important;
  border-color: rgba(229, 222, 208, 0.98) !important;
  border-radius: 8px !important;
  box-shadow: 0 16px 42px rgba(79, 101, 72, 0.08) !important;
}

.gd-empty-link-card {
  min-height: 188px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 28px 22px;
  text-align: center;
  color: var(--gd-charcoal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 244, 0.9)),
    linear-gradient(120deg, rgba(200, 166, 74, 0.1), transparent 52%);
  border: 1px solid rgba(229, 222, 208, 0.98);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(79, 101, 72, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.gd-empty-link-card:hover,
.gd-empty-link-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(200, 166, 74, 0.58);
  box-shadow: 0 24px 58px rgba(79, 101, 72, 0.13);
  outline: none;
}

.gd-empty-link-card .material-symbols-outlined {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--gd-gold);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(200, 166, 74, 0.28);
  border-radius: 50%;
  font-size: 30px;
}

.gd-empty-link-card strong {
  color: var(--gd-charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  line-height: 1.25;
}

.gd-empty-link-card small {
  max-width: 24ch;
  color: #5b6657;
  font-size: 0.92rem;
  line-height: 1.4;
}

@media (max-width: 640px) {
  .gd-size-grid,
  .gd-tasting-row {
    grid-template-columns: 1fr;
  }

  .gd-olive-scale {
    justify-content: flex-start;
  }
}

.gd-toast {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 80;
  max-width: min(360px, calc(100vw - 32px));
  padding: 14px 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gd-sage-dark), var(--gd-charcoal));
  border: 1px solid rgba(232, 208, 131, 0.42);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(34, 48, 38, 0.2);
  font-size: 0.92rem;
  line-height: 1.4;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.gd-toast[data-visible="true"] {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .gd-trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .gd-trust-grid {
    grid-template-columns: 1fr;
  }

  .gd-trust-item {
    min-height: auto;
  }
}

.btn-primary,
.btn-primary-gold,
a.bg-muted-gold,
button.bg-muted-gold,
button[class*="bg-brand-soft-olive"],
button[class*="bg-charcoal"],
button[class*="bg-[#1d1b20]"] {
  position: relative;
  overflow: hidden;
}

.btn-primary::after,
.btn-primary-gold::after,
a.bg-muted-gold::after,
button.bg-muted-gold::after,
button[class*="bg-brand-soft-olive"]::after,
button[class*="bg-charcoal"]::after,
button[class*="bg-[#1d1b20]"]::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.34) 46%, rgba(232, 208, 131, 0.55) 50%, transparent 58%);
  transition: transform 0.85s ease;
  pointer-events: none;
}

.btn-primary:hover::after,
.btn-primary-gold:hover::after,
a.bg-muted-gold:hover::after,
button.bg-muted-gold:hover::after,
button[class*="bg-brand-soft-olive"]:hover::after,
button[class*="bg-charcoal"]:hover::after,
button[class*="bg-[#1d1b20]"]:hover::after {
  transform: translateX(120%);
}

@media (prefers-reduced-motion: reduce) {
  .btn-primary::after,
  .btn-primary-gold::after,
  a.bg-muted-gold::after,
  button.bg-muted-gold::after,
  button[class*="bg-brand-soft-olive"]::after,
  button[class*="bg-charcoal"]::after,
  button[class*="bg-[#1d1b20]"]::after {
    display: none;
  }
}

/* 2026-08 buton, dropdown ve form araligi duzenlemeleri */
.gd-nav-trigger {
  min-height: 44px;
  gap: 6px;
  border-radius: var(--gd-control-radius);
  padding-inline: 13px;
  line-height: 1.15;
}

.gd-nav-menu {
  top: calc(100% + 12px);
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 26px 70px rgba(34, 48, 38, 0.16);
}

.gd-nav-kicker {
  margin-bottom: 14px;
  padding-inline: 2px;
}

.gd-nav-menu-grid {
  gap: 12px;
}

.gd-nav-link {
  min-height: 88px;
  gap: 7px;
  border-radius: 12px;
  padding: 16px 17px;
}

.gd-nav-link span {
  line-height: 1.18;
}

.gd-header-order-button,
.gd-mobile-actions button,
.gd-product-card button,
.gd-product-card .gd-product-link,
.gd-primary-order-button,
.gd-order-submit button,
.gd-contact-actions button,
.gd-contact-actions a,
.gd-contact-products > a,
.gd-order-result-primary,
.gd-order-result-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--gd-control-height);
  border-radius: var(--gd-control-radius) !important;
  padding: 0 19px;
  line-height: 1.15;
  text-align: center;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.gd-header-order-button {
  min-height: 44px;
  padding-inline: 16px;
}

.gd-header-order-button:hover,
.gd-mobile-actions button:hover,
.gd-product-card button:hover,
.gd-product-card .gd-product-link:hover,
.gd-primary-order-button:hover,
.gd-order-submit button:hover,
.gd-contact-actions button:hover,
.gd-contact-products > a:hover,
.gd-order-result-primary:hover {
  transform: translateY(-1px);
}

.gd-product-card button,
.gd-product-card .gd-product-link {
  flex: 0 0 auto;
  min-height: 48px;
  padding-inline: 18px;
}

.gd-product-card button {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.gd-primary-order-button {
  min-height: var(--gd-control-height-large);
  border: 0;
  background: linear-gradient(135deg, var(--gd-sage-dark), var(--gd-sage)) !important;
  color: #ffffff !important;
  padding-inline: 22px;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(79, 101, 72, 0.2);
}

.gd-primary-order-button:hover {
  background: linear-gradient(135deg, var(--gd-gold), var(--gd-gold-light)) !important;
}

.gd-variant-field {
  position: relative;
  gap: 8px;
}

.gd-variant-field::after,
.gd-order-field:has(> select)::after {
  content: "expand_more";
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  color: var(--gd-gold);
  font-family: "Material Symbols Outlined";
  font-size: 20px;
  line-height: 1;
  pointer-events: none;
}

.gd-variant-field select,
.gd-order-field select {
  appearance: none;
  -webkit-appearance: none;
}

.gd-variant-field select {
  min-height: 48px;
  border-radius: var(--gd-control-radius);
  background: #ffffff;
  padding: 0 44px 0 var(--gd-control-padding-x);
  line-height: 1.3;
  cursor: pointer;
}

.gd-variant-field--detail select {
  min-height: var(--gd-control-height-large);
  padding-inline: 18px 48px;
}

.gd-variant-field--detail::after {
  right: 16px;
  bottom: 17px;
}

.gd-sort-control {
  min-height: var(--gd-control-height);
  gap: 14px;
  border-radius: var(--gd-control-radius);
  padding: 0 46px 0 var(--gd-control-padding-x);
}

.gd-sort-control::after {
  right: 15px;
}

.gd-sort-select {
  min-height: 48px;
  padding-block: 0;
  line-height: 1.3;
}

.gd-mobile-filter-chip {
  min-height: 42px;
  padding-inline: 16px;
}

.gd-mobile-link {
  display: flex;
  align-items: center;
  min-height: 50px;
  padding: 0 16px;
}

.gd-mobile-group {
  gap: 0;
  padding: 14px 16px 6px;
}

.gd-mobile-group > span {
  padding-bottom: 10px;
}

.gd-mobile-group a {
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 0;
}

.gd-mobile-actions {
  padding-top: 2px;
}

.gd-mobile-actions button {
  min-height: 50px;
  padding-inline: 18px;
}

.gd-order-dialog-header {
  padding: 24px 28px 21px;
}

.gd-order-form {
  gap: 19px 20px;
  padding: 26px 28px 30px;
}

.gd-order-field {
  position: relative;
  gap: 8px;
}

.gd-order-field input,
.gd-order-field select,
.gd-order-field textarea {
  box-sizing: border-box;
  border-radius: var(--gd-control-radius);
  font-size: 1rem;
  line-height: 1.35;
}

.gd-order-field input,
.gd-order-field select {
  min-height: var(--gd-control-height);
  padding: 0 var(--gd-control-padding-x);
}

.gd-order-field select {
  padding-right: 46px;
  cursor: pointer;
}

.gd-order-field textarea {
  min-height: 108px;
  padding: 14px var(--gd-control-padding-x);
  resize: vertical;
}

.gd-order-field:has(> select)::after {
  right: 15px;
  bottom: 15px;
}

.gd-order-submit {
  gap: 22px;
  padding-top: 21px;
}

.gd-order-submit button {
  flex: 0 0 auto;
  min-height: 52px;
  padding-inline: 22px;
}

.gd-contact-actions button,
.gd-contact-actions a {
  min-height: 50px;
  padding-inline: 20px;
}

.gd-contact-products > a {
  min-height: 48px;
  padding-inline: 18px;
}

.gd-order-result-primary,
.gd-order-result-secondary {
  min-height: 48px;
}

@media (max-width: 767px) {
  .gd-sort-control {
    width: 100%;
    gap: 10px;
  }

  .gd-sort-select {
    width: 100%;
    min-width: 0;
  }

  .gd-product-card button,
  .gd-product-card .gd-product-link {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .gd-order-dialog {
    width: min(100% - 20px, 760px);
    max-height: calc(100vh - 20px);
  }

  .gd-order-dialog-shell {
    max-height: calc(100vh - 20px);
  }

  .gd-order-dialog-header {
    gap: 16px;
    padding: 20px 18px 17px;
  }

  .gd-order-form {
    gap: 17px;
    padding: 20px 18px 24px;
  }

  .gd-order-close {
    width: 40px;
    height: 40px;
  }

  .gd-contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gd-contact-actions button,
  .gd-contact-actions a {
    width: 100%;
  }
}

.gd-cart-count[hidden] {
  display: none !important;
}

.gd-account-order-list {
  display: grid;
  gap: 14px;
  padding: 16px;
}

.gd-account-order-card {
  display: grid;
  gap: 14px;
  padding: 16px;
  color: var(--gd-charcoal);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 244, 0.9));
  border: 1px solid rgba(229, 222, 208, 0.98);
  border-radius: 8px;
  box-shadow: 0 12px 30px rgba(79, 101, 72, 0.07);
}

.gd-account-order-card strong {
  display: block;
  margin-top: 3px;
  color: var(--gd-charcoal);
  font-size: 1rem;
  line-height: 1.25;
}

.gd-account-order-card span {
  color: #5b6657;
}

.gd-account-order-label {
  display: block;
  color: var(--gd-gold) !important;
  font-size: 0.68rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gd-account-order-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.gd-account-order-total {
  margin: 0 !important;
  white-space: nowrap;
}

.gd-account-order-action {
  min-height: 42px;
  width: 100%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--gd-sage-dark), var(--gd-sage));
  border: 0;
  border-radius: 6px;
  font-size: 0.72rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gd-mobile-filter-strip {
  display: none;
}

.gd-mobile-filter-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 40px;
  max-width: 210px;
  padding: 0 14px;
  color: #4e5b4e;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(200, 166, 74, 0.24);
  border-radius: 999px;
  font-size: 0.74rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease,
    box-shadow 160ms ease;
}

.gd-mobile-filter-chip.is-active {
  color: #ffffff;
  background: linear-gradient(135deg, var(--gd-sage-dark), var(--gd-sage));
  border-color: rgba(200, 166, 74, 0.58);
  box-shadow: 0 10px 22px rgba(79, 101, 72, 0.12);
}

@media (max-width: 767px) {
  .gd-mobile-filter-strip {
    display: flex;
    gap: 10px;
    margin-top: 18px;
    margin-right: calc(var(--page-gutter, 0px) * -1);
    margin-left: -2px;
    padding: 2px 2px 8px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scrollbar-width: none;
  }

  .gd-mobile-filter-strip::-webkit-scrollbar {
    display: none;
  }

  .gd-filter-sidebar {
    display: none;
  }

  .gd-origin-section {
    display: none;
  }

  .gd-special-selection {
    padding: 22px 0;
  }

  .gd-special-shell {
    display: block;
  }

  .gd-special-copy {
    padding: 20px;
  }

  .gd-special-copy p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .gd-special-grid {
    display: none;
  }

  #gd-product-grid {
    gap: 14px;
  }

  .gd-product-media {
    aspect-ratio: 1 / 1;
  }

  .gd-collection-product--simple .gd-product-media {
    display: none;
  }

  .gd-collection-product--simple .gd-product-body {
    gap: 8px;
    padding: 15px 16px;
  }

  .gd-collection-product--simple .gd-product-body h2 {
    font-size: 1.08rem;
    line-height: 1.18;
  }

  .gd-collection-product--simple .gd-product-body p {
    display: -webkit-box;
    min-height: 0;
    font-size: 0.88rem;
    line-height: 1.34;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .gd-collection-product--simple .gd-product-footer {
    align-items: center;
    flex-direction: row;
    min-height: 0;
    margin-top: 2px;
    padding-top: 10px;
  }

  .gd-collection-product--simple .gd-product-price strong,
  .gd-collection-product--simple .gd-product-price small {
    display: none;
  }

  .gd-collection-product--simple .gd-product-status {
    width: auto;
    min-height: 34px;
    padding: 8px 11px;
    font-size: 0.68rem;
  }
}

@media (max-width: 640px) {
  footer a {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
  }
}

@media (min-width: 768px) {
  .gd-account-order-list {
    display: none !important;
  }
}

/* Kullanıcının paylaştığı özgün logo kırpımı */
.gd-navbar {
  min-height: 118px;
}

@media (min-width: 1120px) and (max-width: 1360px) {
  .gd-brand {
    width: 118px;
  }
}

.gd-brand {
  width: 118px;
}

.gd-brand-logo {
  border-radius: 2px;
}

.gd-footer-brand {
  width: min(220px, 100%);
}

.gd-variant-field {
  display: grid;
  gap: 7px;
  margin-top: 2px;
}

.gd-variant-field > span {
  color: #6b725f;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.gd-variant-field select {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(111, 127, 93, 0.28);
  border-radius: 6px;
  background: #fffefb;
  color: var(--gd-charcoal);
  padding: 9px 36px 9px 11px;
  font: inherit;
  font-size: 0.9rem;
}

.gd-variant-field select:focus {
  border-color: var(--gd-gold);
  box-shadow: 0 0 0 3px rgba(200, 166, 74, 0.16);
  outline: none;
}

.gd-order-dialog {
  width: min(760px, calc(100vw - 28px));
  max-height: calc(100vh - 28px);
  border: 0;
  border-radius: 14px;
  background: transparent;
  padding: 0;
  color: var(--gd-charcoal);
  overflow: hidden;
  box-shadow: 0 28px 90px rgba(34, 48, 38, 0.28);
}

.gd-order-dialog::backdrop {
  background: rgba(23, 32, 25, 0.66);
  backdrop-filter: blur(4px);
}

.gd-order-dialog-shell {
  max-height: calc(100vh - 28px);
  overflow-y: auto;
  background: #fffdf8;
}

.gd-order-dialog-header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(200, 166, 74, 0.22);
  background: rgba(255, 253, 248, 0.96);
  padding: 24px 26px 20px;
  backdrop-filter: blur(14px);
}

.gd-order-dialog-header h2 {
  margin: 4px 0 5px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  line-height: 1.15;
}

.gd-order-dialog-header p {
  margin: 0;
  color: #5b6657;
}

.gd-order-eyebrow {
  color: var(--gd-gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gd-order-close {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(111, 127, 93, 0.24);
  border-radius: 999px;
  background: #ffffff;
  color: var(--gd-charcoal);
}

.gd-order-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 18px;
  padding: 24px 26px 28px;
}

.gd-order-field {
  display: grid;
  gap: 7px;
}

.gd-order-field--full {
  grid-column: 1 / -1;
}

.gd-order-field > span {
  color: #4e5a4b;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gd-order-field small {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.gd-order-field input,
.gd-order-field select,
.gd-order-field textarea {
  width: 100%;
  border: 1px solid rgba(111, 127, 93, 0.3);
  border-radius: 7px;
  background: #ffffff;
  color: var(--gd-charcoal);
  padding: 11px 12px;
  font: inherit;
}

.gd-order-field input:focus,
.gd-order-field select:focus,
.gd-order-field textarea:focus {
  border-color: var(--gd-gold);
  box-shadow: 0 0 0 3px rgba(200, 166, 74, 0.16);
  outline: none;
}

.gd-order-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #5b6657;
  font-size: 0.83rem;
  line-height: 1.45;
}

.gd-order-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gd-sage-dark);
}

.gd-order-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.gd-order-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(200, 166, 74, 0.2);
  padding-top: 19px;
}

.gd-order-submit p {
  max-width: 430px;
  margin: 0;
  color: #65705f;
  font-size: 0.8rem;
  line-height: 1.5;
}

.gd-order-submit button {
  min-height: 48px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--gd-sage-dark), var(--gd-sage));
  color: #ffffff;
  padding: 12px 18px;
  font-weight: 800;
  white-space: nowrap;
  box-shadow: 0 12px 28px rgba(79, 101, 72, 0.18);
}

@media (max-width: 1119px) {
  .gd-navbar {
    min-height: 104px;
  }

  .gd-brand {
    width: 100px;
  }
}

@media (max-width: 640px) {
  .gd-navbar {
    min-height: 94px;
  }

  .gd-brand {
    width: 88px;
  }

  .gd-order-dialog-header,
  .gd-order-form {
    padding-inline: 17px;
  }

  .gd-order-form {
    grid-template-columns: 1fr;
  }

  .gd-order-field--full {
    grid-column: auto;
  }

  .gd-order-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .gd-order-submit button {
    width: 100%;
  }
}

.gd-order-result-page {
  min-height: 68vh;
  display: grid;
  place-items: center;
  padding: clamp(48px, 8vw, 100px) 20px;
  background:
    radial-gradient(circle at top, rgba(200, 166, 74, 0.12), transparent 38%),
    #fffdf8;
}

.gd-order-result-card {
  width: min(680px, 100%);
  display: flex;
  align-items: center;
  flex-direction: column;
  border: 1px solid rgba(200, 166, 74, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: clamp(32px, 6vw, 62px);
  text-align: center;
  box-shadow: 0 24px 64px rgba(79, 101, 72, 0.12);
}

.gd-order-result-icon {
  margin-bottom: 14px;
  color: var(--gd-sage-dark);
  font-size: 48px;
}

.gd-order-result-card h1 {
  margin: 8px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  line-height: 1.12;
}

.gd-order-result-card > p {
  max-width: 540px;
  margin: 0 0 24px;
  color: #5b6657;
  line-height: 1.65;
}

.gd-order-result-primary,
.gd-order-result-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 7px;
  padding: 11px 18px;
  font-weight: 800;
  text-decoration: none;
}

.gd-order-result-primary {
  background: var(--gd-sage-dark);
  color: #ffffff;
}

.gd-order-result-secondary {
  margin-top: 14px;
  border: 1px solid rgba(111, 127, 93, 0.28);
  color: var(--gd-sage-dark);
}

.gd-order-validation {
  margin: 12px 0 20px;
  color: #9a342c;
  text-align: left;
}

/* 2026-08 UI bütünlük düzenlemeleri */
:where(a, button, input, select, textarea):focus-visible {
  outline: 3px solid rgba(200, 166, 74, 0.48);
  outline-offset: 3px;
}

.gd-brand-logo,
.gd-footer-brand img {
  background: transparent;
}

.gd-header-order-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid rgba(200, 166, 74, 0.42);
  border-radius: 999px;
  background: var(--gd-sage-dark);
  color: #ffffff;
  padding: 9px 15px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(79, 101, 72, 0.18);
}

.gd-header-order-button:hover {
  background: var(--gd-gold);
}

.gd-header-order-button .material-symbols-outlined {
  font-size: 19px;
}

.gd-mobile-actions button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--gd-sage-dark);
  color: #ffffff;
  padding: 12px 16px;
  font-weight: 800;
}

.gd-collection-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 20px;
}

.gd-collection-facts > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(111, 127, 93, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #53604e;
  padding: 7px 11px;
  font-size: 0.76rem;
  font-weight: 700;
}

.gd-collection-facts .material-symbols-outlined {
  color: var(--gd-gold);
  font-size: 17px;
}

.gd-variant-field--detail select {
  min-height: 54px;
  border-color: rgba(200, 166, 74, 0.5);
  background: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.gd-order-live-summary {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(200, 166, 74, 0.25);
  border-radius: 9px;
  background: rgba(238, 243, 234, 0.72);
  padding: 13px 14px;
}

.gd-order-live-summary > .material-symbols-outlined {
  color: var(--gd-gold);
  font-size: 23px;
}

.gd-order-live-summary div {
  display: grid;
  gap: 3px;
}

.gd-order-live-summary small {
  color: #6b725f;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gd-order-live-summary strong {
  color: var(--gd-charcoal);
  font-size: 0.9rem;
}

.gd-order-live-summary [data-order-total] {
  color: var(--gd-sage-dark);
  font-size: 1rem;
  font-weight: 900;
}

.gd-order-submit button:disabled {
  cursor: wait;
  opacity: 0.7;
}

.gd-contact-hero,
.gd-contact-process,
.gd-contact-products {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.gd-contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: clamp(36px, 7vw, 90px);
  padding-block: clamp(54px, 8vw, 110px);
}

.gd-contact-hero-copy h1 {
  max-width: 680px;
  margin: 12px 0 18px;
  color: var(--gd-charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 6vw, 4.8rem);
  line-height: 1.03;
}

.gd-contact-hero-copy > p {
  max-width: 660px;
  margin: 0;
  color: #5b6657;
  font-size: clamp(1rem, 1.7vw, 1.16rem);
  line-height: 1.72;
}

.gd-contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.gd-contact-actions button,
.gd-contact-actions a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  padding: 11px 17px;
  font-weight: 800;
  text-decoration: none;
}

.gd-contact-actions button {
  border: 0;
  background: var(--gd-sage-dark);
  color: #ffffff;
}

.gd-contact-actions a {
  border: 1px solid rgba(111, 127, 93, 0.28);
  background: #ffffff;
  color: var(--gd-charcoal);
}

.gd-contact-hero-media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 30px 70px rgba(79, 101, 72, 0.16);
}

.gd-contact-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gd-contact-process {
  padding-block: clamp(38px, 6vw, 78px);
}

.gd-contact-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.gd-contact-process-grid article {
  border: 1px solid rgba(200, 166, 74, 0.24);
  border-radius: 12px;
  background: #ffffff;
  padding: 26px;
  box-shadow: 0 18px 42px rgba(79, 101, 72, 0.07);
}

.gd-contact-process-grid article > span {
  color: var(--gd-gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.gd-contact-process-grid h3 {
  margin: 16px 0 9px;
  color: var(--gd-charcoal);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
}

.gd-contact-process-grid p,
.gd-contact-products p {
  margin: 0;
  color: #5b6657;
  line-height: 1.6;
}

.gd-contact-products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-block: clamp(30px, 6vw, 80px);
  border-radius: 16px;
  background: var(--gd-sage-dark);
  color: #ffffff;
  padding: clamp(24px, 5vw, 46px);
}

.gd-contact-products > div {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.gd-contact-products > div > .material-symbols-outlined {
  color: var(--gd-gold-light);
  font-size: 34px;
}

.gd-contact-products h2 {
  margin: 0 0 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.gd-contact-products p {
  color: rgba(255, 255, 255, 0.74);
}

.gd-contact-products > a {
  min-height: 46px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  border-radius: 8px;
  background: #ffffff;
  color: var(--gd-sage-dark);
  padding: 10px 16px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1119px) {
  .gd-header-order-button {
    display: none;
  }
}

@media (max-width: 760px) {
  .gd-contact-hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gd-contact-hero-media {
    aspect-ratio: 16 / 10;
  }

  .gd-contact-process-grid {
    grid-template-columns: 1fr;
  }

  .gd-contact-products {
    align-items: stretch;
    flex-direction: column;
  }

  .gd-contact-products > a {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .gd-collection-product--simple .gd-product-media {
    display: block;
  }

  .gd-collection-product--simple .gd-product-body {
    gap: 12px;
    padding: 18px;
  }

  .gd-collection-product--simple .gd-product-footer {
    align-items: stretch;
    flex-direction: column;
    min-height: 92px;
    margin-top: auto;
    padding-top: 14px;
  }

  .gd-collection-product--simple .gd-product-price strong,
  .gd-collection-product--simple .gd-product-price small {
    display: block;
  }

  .gd-contact-hero,
  .gd-contact-process,
  .gd-contact-products {
    width: min(100% - 28px, 1180px);
  }
}

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

/* Kontrol olculerini dosyanin sonundaki onceki kurallardan sonra sabitle. */
.gd-mobile-filter-chip {
  min-height: 42px;
  padding-inline: 16px;
}

.gd-variant-field {
  position: relative;
  gap: 8px;
}

.gd-variant-field select {
  min-height: 48px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: var(--gd-control-radius);
  background: #ffffff;
  padding: 0 44px 0 var(--gd-control-padding-x);
  line-height: 1.3;
  cursor: pointer;
}

.gd-variant-field--detail select {
  min-height: var(--gd-control-height-large);
  padding-inline: 18px 48px;
}

.gd-order-dialog-header {
  padding: 24px 28px 21px;
}

.gd-order-form {
  gap: 19px 20px;
  padding: 26px 28px 30px;
}

.gd-order-field {
  position: relative;
  gap: 8px;
}

.gd-order-field input,
.gd-order-field select,
.gd-order-field textarea {
  box-sizing: border-box;
  border-radius: var(--gd-control-radius);
  font-size: 1rem;
  line-height: 1.35;
}

.gd-order-field input,
.gd-order-field select {
  min-height: var(--gd-control-height);
  padding: 0 var(--gd-control-padding-x);
}

.gd-order-field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  cursor: pointer;
}

.gd-order-field textarea {
  min-height: 108px;
  padding: 14px var(--gd-control-padding-x);
  resize: vertical;
}

.gd-order-submit {
  gap: 22px;
  padding-top: 21px;
}

.gd-order-submit button {
  min-height: 52px;
  border-radius: var(--gd-control-radius);
  padding: 0 22px;
}

.gd-header-order-button {
  min-height: 44px;
  border-radius: var(--gd-control-radius);
  padding: 0 16px;
  line-height: 1.15;
}

.gd-mobile-actions button {
  min-height: var(--gd-control-height);
  border-radius: var(--gd-control-radius);
  padding: 0 18px;
}

.gd-order-result-primary,
.gd-order-result-secondary {
  min-height: 48px;
  border-radius: var(--gd-control-radius);
  padding: 0 19px;
}

.gd-contact-actions button,
.gd-contact-actions a {
  min-height: var(--gd-control-height);
  border-radius: var(--gd-control-radius);
  padding: 0 20px;
  line-height: 1.15;
}

.gd-contact-products > a {
  min-height: 48px;
  border-radius: var(--gd-control-radius);
  padding: 0 18px;
}

@media (max-width: 640px) {
  .gd-order-dialog {
    width: min(100% - 20px, 760px);
    max-height: calc(100vh - 20px);
  }

  .gd-order-dialog-shell {
    max-height: calc(100vh - 20px);
  }

  .gd-order-dialog-header {
    gap: 16px;
    padding: 20px 18px 17px;
  }

  .gd-order-form {
    gap: 17px;
    padding: 20px 18px 24px;
  }

  .gd-order-close {
    width: 40px;
    height: 40px;
  }

  .gd-contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .gd-contact-actions button,
  .gd-contact-actions a {
    width: 100%;
  }
}
