:root {
  --peach: #F8CDB4;
  --peach-soft: #FCEEE3;
  --bg: #FAF7F2;
  --surface: #FFFFFF;
  --ink: #241D17;
  --ink-soft: #8C8073;
  --line: #ECE3D8;
  --accent: #C5613B;
  --sage: #6E7C53;
  --mustard: #C0892C;
  --wolt: #00C2E8;
  --wolt-ink: #06303A;
  --bolt: #34D186;
  --bolt-ink: #0A331F;
  --shadow: 0 1px 2px rgba(36, 29, 23, .04), 0 12px 30px rgba(36, 29, 23, .06);
  --font-display: 'Archivo', system-ui, sans-serif;
  --font-body: 'Work Sans', system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  border-radius: 0 !important;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
}

a {
  color: inherit;
}

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

.kgk-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 65px;
  padding: 11px clamp(18px, 4vw, 52px);
  background: var(--peach);
  border-bottom: 1px solid rgba(36, 29, 23, .14);
}

.kgk-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0;
  text-decoration: none;
}

.kgk-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.kgk-brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.kgk-brand strong {
  font-family: var(--font-display);
  font-size: 14.5px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.kgk-brand small {
  margin-top: 4px;
  color: #9A6B4F;
  font-family: var(--font-body);
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.kgk-header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.language-switch {
  display: inline-flex;
  flex-shrink: 0;
  gap: 2px;
  border: 1px solid rgba(36, 29, 23, .24);
  background: rgba(255, 255, 255, .48);
  padding: 3px;
}

.language-switch button {
  min-width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
}

.language-switch button.active {
  background: var(--ink);
  color: #fff;
}

.kgk-icon-link,
.kgk-icon-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(36, 29, 23, .24);
  background: transparent;
  color: var(--ink);
  text-decoration: none;
}

.kgk-cart-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  gap: 9px;
  border: 0;
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
}

.kgk-cart-button strong {
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  place-items: center;
  background: var(--peach);
  color: var(--ink);
  font-size: 12px;
}

.kgk-hero {
  position: relative;
  width: 100%;
  margin: 0;
  aspect-ratio: 16 / 10;
  max-height: 560px;
  min-height: 300px;
  overflow: hidden;
  background: var(--peach-soft);
}

.kgk-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kgk-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(36, 29, 23, 0) 38%, rgba(36, 29, 23, .72) 100%);
}

.kgk-hero-overlay {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: clamp(22px, 4vw, 44px);
  z-index: 1;
  width: min(100% - 36px, 1180px);
  transform: translateX(-50%);
  color: #fff;
}

.kgk-eyebrow {
  margin: 0 0 8px;
  color: currentColor;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kgk-hero h1,
.kgk-section-head h2,
.kgk-story h2,
.kgk-cart-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.kgk-hero h1 {
  max-width: 18ch;
  margin-top: 12px;
  font-size: clamp(28px, 5.6vw, 52px);
  line-height: 1.02;
}

.kgk-hero-lead {
  max-width: 760px;
  margin: 14px 0 0;
  font-size: clamp(15px, 2vw, 19px);
  font-weight: 700;
  line-height: 1.35;
}

.kgk-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.kgk-hero-meta span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .48);
  background: rgba(36, 29, 23, .42);
  padding: 7px 10px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.kgk-order-mode,
.kgk-delivery-note,
.kgk-menu-shell,
.kgk-process,
.kgk-pay-methods,
.kgk-story {
  max-width: 1180px;
  margin: 0 auto;
  padding-inline: 18px;
}

.kgk-order-mode {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  margin-top: 22px;
  border: 1px solid var(--ink);
  padding: 4px;
  background: var(--surface);
}

.kgk-segment {
  min-height: 46px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
}

.kgk-segment.active {
  background: var(--ink);
  color: #fff;
}

.kgk-delivery-note {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  padding-block: 13px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink-soft);
}

.kgk-delivery-note strong {
  color: var(--ink);
  text-transform: uppercase;
}

.kgk-tabs-bar {
  position: sticky;
  top: 65px;
  z-index: 30;
  margin-top: 26px;
  background: rgba(250, 247, 242, .94);
  backdrop-filter: blur(10px);
}

.kgk-category-tabs {
  border-block: 1px solid var(--line);
  background: rgba(250, 247, 242, .94);
  overflow-x: auto;
  backdrop-filter: blur(10px);
}

.kgk-category-tabs > div {
  display: flex;
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 18px;
}

.kgk-category-tabs button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  border: 0;
  border-bottom: 3px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.kgk-category-tabs button:hover,
.kgk-category-tabs button.active {
  border-color: var(--ink);
  color: var(--ink);
}

.kgk-drink-subtabs {
  display: flex;
  gap: 16px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 8px 18px;
}

.kgk-drink-subtabs[hidden] {
  display: none;
}

.kgk-drink-subtabs button {
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  font-weight: 700;
  font-size: .9em;
  padding: 4px 0;
  cursor: pointer;
}

.kgk-drink-subtabs button:hover,
.kgk-drink-subtabs button.active {
  color: var(--ink);
  border-color: var(--ink);
}

.kgk-menu-shell,
.kgk-process,
.kgk-pay-methods,
.kgk-story {
  padding-top: clamp(30px, 5vw, 56px);
}

.kgk-pay-lead {
  max-width: 680px;
  margin: 10px 0 0;
  color: var(--ink-soft);
}

.kgk-pay-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 18px;
}

.kgk-pay-logos img {
  height: 28px;
  width: auto;
  padding: 8px 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.kgk-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.kgk-section-head .kgk-eyebrow,
.kgk-story .kgk-eyebrow {
  color: var(--accent);
}

.kgk-section-head h2,
.kgk-story h2 {
  font-size: clamp(24px, 4vw, 36px);
}

.kgk-status {
  padding: 18px;
  border: 1px dashed var(--line);
  background: var(--surface);
  color: var(--ink-soft);
}

.kgk-menu-list {
  display: grid;
  gap: 34px;
}

.kgk-category-block {
  scroll-margin-top: 140px;
}

.kgk-category-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.kgk-event-note {
  margin: -4px 0 14px;
  border: 1px solid var(--line);
  background: var(--peach-soft);
  color: var(--ink);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
}

.kgk-product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
  gap: 18px;
}

.kgk-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.kgk-product-media {
  position: relative;
  width: 100%;
  height: 168px;
  background: var(--peach-soft);
  overflow: hidden;
}

.kgk-product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.kgk-product-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--ink-soft);
  font-weight: 800;
}

.kgk-badges {
  position: absolute;
  top: 10px;
  right: 10px;
  left: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.kgk-badge {
  border: 1px solid rgba(36, 29, 23, .12);
  background: var(--label-color, var(--mustard));
  color: #fff;
  padding: 3px 7px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.kgk-price {
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--peach);
  color: var(--ink);
  padding: 6px 11px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 900;
  white-space: nowrap;
}

.kgk-product-body {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 15px 16px 16px;
}

.kgk-product-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.05;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.kgk-product-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.kgk-options {
  display: grid;
  gap: 10px;
}

.kgk-option-group {
  display: grid;
  gap: 7px;
}

.kgk-option-group strong {
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.kgk-option-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.kgk-option-list--single {
  gap: 0;
  flex-wrap: nowrap;
  border: 1px solid var(--ink);
}

.kgk-option-list--single label {
  flex: 1;
  justify-content: center;
  text-align: center;
  border: none;
  border-left: 1px solid var(--ink);
}

.kgk-option-list--single label:first-child {
  border-left: none;
}

.kgk-option-list label {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  max-width: 100%;
  border: 1px solid var(--ink);
  background: var(--surface);
  color: var(--ink);
  padding: 7px 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  cursor: pointer;
  overflow-wrap: anywhere;
}

.kgk-option-list label:has(input:checked) {
  background: var(--ink);
  color: var(--peach-soft);
}

.kgk-option-list input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.kgk-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  /* Push the button(s) to the bottom of the card so that side-by-side
     products keep their actions aligned regardless of description length. */
  margin-top: auto;
  padding-top: 4px;
}

.kgk-btn,
.kgk-btn-secondary,
.kgk-partner {
  display: inline-flex;
  flex: 1;
  min-width: 0;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  padding: 11px 14px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-decoration: none;
  overflow-wrap: anywhere;
  text-align: center;
}

.kgk-btn {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.kgk-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.kgk-btn[disabled] {
  opacity: 0.75;
  cursor: progress;
}

.kgk-spinner {
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  vertical-align: -0.15em;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: kgk-spin 0.6s linear infinite;
}

@keyframes kgk-spin {
  to { transform: rotate(360deg); }
}

.kgk-btn-plus {
  font-size: 18px;
  line-height: 1;
}

.kgk-btn-secondary {
  background: transparent;
  color: var(--ink);
}

.kgk-partner.wolt {
  border-color: var(--wolt);
  background: var(--wolt);
  color: var(--wolt-ink);
}

.kgk-partner.bolt {
  border-color: var(--bolt);
  background: var(--bolt);
  color: var(--bolt-ink);
}

.kgk-unavailable {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.kgk-process {
  margin-top: 12px;
}

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

.kgk-process-grid article {
  display: grid;
  gap: 9px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 18px;
}

.kgk-process-grid strong {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.kgk-process-grid span,
.kgk-story p {
  color: var(--ink-soft);
}

.kgk-story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, .65fr);
  gap: 22px;
  align-items: center;
  padding-bottom: clamp(36px, 6vw, 72px);
}

.kgk-story > div {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: clamp(22px, 4vw, 34px);
}

.kgk-story img {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--peach-soft);
}

.kgk-cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(36, 29, 23, .38);
}

.kgk-cart-drawer {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 90;
  width: min(100%, 460px);
  transform: translateX(100%);
  /* Hide when closed so the off-canvas panel does not stay pannable on iOS
     Safari (a fixed element parked off the right edge escapes ancestor
     overflow:hidden and otherwise causes a few-px horizontal page scroll).
     visibility flips only after the slide-out finishes. */
  visibility: hidden;
  transition: transform .22s ease, visibility 0s linear .22s;
  pointer-events: none;
}

.kgk-cart-drawer.open {
  transform: translateX(0);
  visibility: visible;
  transition: transform .22s ease, visibility 0s linear 0s;
  pointer-events: auto;
}

/* KORV & VORMISTUS — variant 1 „Korrastatud sahtel" */
.kgk-cart-panel {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  border-left: 1px solid var(--line);
  background: var(--surface);
  padding: 18px;
  box-shadow: var(--shadow);
}

.kgk-cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.kgk-cart-head .kgk-eyebrow {
  color: var(--accent);
}

.kgk-cart-head h2 {
  margin: 2px 0 0;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

/* Tooteread */
.kgk-cart-items {
  display: flex;
  flex-direction: column;
}

.kgk-cart-items.empty {
  border: 1px dashed var(--line);
  padding: 16px;
  color: var(--ink-soft);
}

.kgk-cart-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #F1EAE0;
}

.kgk-cart-thumb {
  flex: none;
  width: 52px;
  height: 52px;
  overflow: hidden;
  background: var(--peach-soft);
}

.kgk-cart-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kgk-cart-thumb-ph {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 900;
  color: var(--ink-soft);
}

.kgk-cart-info {
  flex: 1;
  min-width: 0;
}

.kgk-cart-info strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.kgk-cart-info small {
  display: block;
  margin-top: 2px;
  color: var(--ink-soft);
  font-size: 12px;
}

.kgk-cart-line {
  margin-top: 3px !important;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: var(--ink) !important;
}

/* Kogusenupp */
.kgk-qty {
  flex: none;
  display: inline-flex;
  border: 1px solid var(--ink);
}

.kgk-qty button,
.kgk-qty span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
}

.kgk-qty span {
  width: 32px;
  font-size: 14px;
}

.kgk-qty button:last-child {
  background: var(--ink);
  color: #fff;
}

/* Summa-plokk */
.kgk-cart-summary {
  background: var(--peach-soft);
  border: 1px solid #F0E2D4;
  padding: 14px 15px;
}

.kgk-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  font-size: 13.5px;
  color: var(--ink-soft);
}

.kgk-summary-row strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}

.kgk-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid #E7D7C7;
  padding-top: 8px;
}

.kgk-total-row span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}

.kgk-total-row strong {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
}

/* Makseteade */
.kgk-payment-note {
  margin: 0;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 10px 12px;
  color: #5C5349;
  font-size: 12.5px;
  font-weight: 700;
}

/* Vorm */
.kgk-form {
  display: grid;
  gap: 11px;
}

.kgk-form .kgk-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.kgk-form label {
  display: grid;
  gap: 6px;
}

.kgk-form label span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.kgk-form input,
.kgk-form select,
.kgk-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  padding: 12px;
  font-size: 14px;
}

.kgk-form textarea {
  resize: none;
}

.kgk-form input:focus,
.kgk-form select:focus,
.kgk-form textarea:focus {
  outline: none;
  border-color: var(--ink);
}

/* Esita tellimus — täislaiune, vormi järel (mitte fikseeritud) */
.kgk-form .kgk-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 52px;
  margin-top: 4px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  cursor: pointer;
}

.kgk-notice {
  border: 1px solid var(--line);
  padding: 12px;
  font-weight: 700;
}

.kgk-notice.success {
  border-color: var(--sage);
  background: #eef4e7;
}

.kgk-notice.error {
  border-color: var(--accent);
  background: #fff0ea;
}

.kgk-footer {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #3A322A;
  background: var(--ink);
  color: #EFE7DC;
  padding: 26px clamp(18px, 4vw, 52px);
}

.kgk-footer > div:first-child {
  display: grid;
  gap: 6px;
}

.kgk-footer span {
  color: #BEB3A6;
}

.kgk-footer-pay {
  font-size: 13px;
}

.kgk-footer-contact {
  font-size: 13px;
  margin-top: 2px;
}

.kgk-footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 18px;
}

.kgk-footer a {
  color: #EFE7DC;
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid #4A4036;
  padding-bottom: 2px;
}

.kgk-footer a:hover {
  border-color: var(--peach);
}

@media (max-width: 760px) {
  .kgk-header {
    align-items: center;
    flex-direction: row;
    gap: 10px;
    padding-inline: 12px;
  }

  .kgk-header-actions {
    justify-content: flex-end;
    gap: 6px;
  }

  .kgk-cart-button {
    padding-inline: 10px;
  }

  .kgk-cart-button span {
    display: none;
  }

  .language-switch {
    display: none;
  }

  .kgk-hero {
    min-height: 330px;
  }

  .kgk-order-mode {
    grid-template-columns: 1fr;
  }

  .kgk-tabs-bar {
    top: 65px;
  }

  .kgk-section-head,
  .kgk-delivery-note,
  .kgk-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .kgk-process-grid,
  .kgk-story {
    grid-template-columns: 1fr;
  }

  .kgk-product-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .kgk-product-media {
    height: 150px;
  }

  .kgk-product-body {
    padding: 14px 15px 15px;
  }

  .kgk-product-body h3 {
    font-size: 18px;
  }

  .kgk-product-card p {
    font-size: 13.5px;
  }
}

/* Etenduse kuupaeva-kaardid (ettetellimine) */
.kgk-event-field { display: grid; gap: 6px; }
.kgk-event-field-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.kgk-event-cards { display: grid; gap: 8px; }
.kgk-event-card {
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 12px;
  cursor: pointer;
}
.kgk-event-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--peach-soft);
}
.kgk-event-card input { position: absolute; opacity: 0; pointer-events: none; }
.kgk-event-card-date {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}
.kgk-event-card-lock { font-size: 12px; color: var(--ink-soft); }
.kgk-pay-options { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.kgk-pay-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid var(--line);
  background: var(--bg);
  padding: 12px;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
}
.kgk-pay-option:has(input:checked) {
  border-color: var(--accent);
  background: var(--peach-soft);
}
.kgk-pay-option input { position: absolute; opacity: 0; pointer-events: none; }
.kgk-event-empty {
  margin: 0;
  border: 1px dashed var(--line);
  padding: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}

/* Add-to-cart toast */
.kgk-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 16px);
  z-index: 1200;
  max-width: calc(100% - 32px);
  background: var(--ink);
  color: #FBF6F0;
  padding: 12px 18px;
  font-weight: 700;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}
.kgk-toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* Payment result overlay */
.kgk-result-overlay {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(20, 16, 12, .72);
}
.kgk-result-card {
  width: 100%;
  max-width: 440px;
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.kgk-result-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  font-weight: 900;
  color: #fff;
  border-radius: 50%;
}
.kgk-result-icon.is-ok { background: #1F7A4D; }
.kgk-result-icon.is-bad { background: var(--accent); }
.kgk-result-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.kgk-result-ref {
  display: block;
  margin: 0 0 14px;
  padding: 16px;
  background: var(--ink);
  color: #fff;
}
.kgk-result-ref span {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--peach);
}
.kgk-result-ref strong {
  display: block;
  margin-top: 4px;
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 2px;
}
.kgk-result-message {
  color: var(--ink-soft);
  margin: 0 0 22px;
  line-height: 1.5;
}
.kgk-result-card .kgk-btn {
  width: 100%;
}
