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

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;
}

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;
  gap: 12px;
  min-width: 0;
  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-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(200, 166, 74, 0.5);
  border-radius: 999px;
  background:
    radial-gradient(circle at 32% 20%, rgba(232, 208, 131, 0.5), transparent 34%),
    linear-gradient(145deg, #ffffff, #eef3ea);
  color: var(--gd-sage-dark);
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 24px rgba(79, 101, 72, 0.1);
}

.gd-brand-copy {
  display: grid;
  min-width: 0;
  line-height: 1.05;
}

.gd-brand-title {
  overflow: hidden;
  color: var(--gd-charcoal);
  font-family: "Playfair Display", serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 700;
  letter-spacing: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.gd-brand-subtitle {
  margin-top: 4px;
  color: #6b725f;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

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

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

.gd-nav-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  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;
  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;
  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);
  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 {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
  visibility: visible;
}

.gd-nav-menu--series {
  width: min(700px, 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;
  gap: 6px;
  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);
  padding: 14px;
  text-decoration: none;
  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 {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
}

.gd-nav-link small {
  color: #5b6657;
  font-size: 13px;
  line-height: 1.4;
}

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

.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(250px, 0.85fr) minmax(580px, 1.7fr) minmax(210px, 0.8fr);
    min-height: 84px;
  }

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

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

@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 {
    gap: 9px;
  }

  .gd-brand-mark {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .gd-brand-title {
    max-width: 170px;
    font-size: 22px;
  }

  .gd-brand-subtitle {
    display: none;
  }

  .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-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;
  color: #5f4a1d;
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.9), transparent 22%),
    linear-gradient(145deg, rgba(232, 208, 131, 0.52), rgba(118, 88, 33, 0.34) 52%, rgba(255, 254, 251, 0.68));
  border: 1px solid rgba(118, 88, 33, 0.26);
  border-radius: 50%;
  box-shadow:
    inset 0 2px 7px rgba(255, 255, 255, 0.72),
    inset 0 -8px 16px rgba(79, 101, 72, 0.13),
    0 14px 26px rgba(79, 101, 72, 0.13);
}

.gd-medallion svg {
  width: 82%;
  height: 82%;
  display: block;
}

.gd-medallion circle,
.gd-medallion path {
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.58));
}

.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-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-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(76px, 6vw, 96px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  color: #6d551e;
  background:
    radial-gradient(circle at 32% 25%, rgba(255, 255, 255, 0.9), transparent 24%),
    linear-gradient(145deg, rgba(232, 208, 131, 0.54), rgba(200, 166, 74, 0.26) 48%, rgba(238, 243, 234, 0.82));
  border: 1px solid rgba(200, 166, 74, 0.34);
  border-radius: 50%;
  box-shadow:
    inset 0 2px 8px rgba(255, 255, 255, 0.76),
    0 16px 28px rgba(79, 101, 72, 0.12);
}

.gd-trust-icon svg {
  width: 62%;
  height: 62%;
}

.gd-trust-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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;
}

@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-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-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;
  }
}
