
:root {
  --lk-cream-50: #F6EFE6;
  --lk-cream-100: #ECE0D1;
  --lk-cream-200: #E2D2BF;
  --lk-wine-900: #3D1B22;
  --lk-wine-800: #4F232B;
  --lk-wine-700: #5A2C32;
  --lk-wine-600: #6D3942;
  --lk-wine-500: #804854;
  --lk-wine-200: #B98890;
  --lk-rose-300: #D9B2B8;
  --lk-font-display: "Cormorant Garamond", "Cormorant", "Tenor Sans", Georgia, serif;
  --lk-font-body: "Outfit", "Helvetica Neue", Helvetica, system-ui, sans-serif;
  --lk-font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
.lk-price-module.cennik {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  color: var(--lk-wine-900);
}
.lk-price-module .cennik__nav {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: calc(100vh - 140px);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
}
.lk-price-module .cennik__nav-btn {
  appearance: none;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 12px 16px;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lk-wine-700);
  border-radius: 4px;
  font-family: var(--lk-font-body);
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
  border-left: 2px solid transparent;
  cursor: pointer;
}
.lk-price-module .cennik__nav-btn:hover { background: var(--lk-cream-100); padding-left: 20px; }
.lk-price-module .cennik__nav-btn.active { background: var(--lk-wine-700); color: var(--lk-cream-50); border-left-color: var(--lk-rose-300); }
.lk-price-module .cennik__panel { display: none; }
.lk-price-module .cennik__panel.active { display: block; animation: lkCennikFadeIn 0.35s ease; }
@keyframes lkCennikFadeIn { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: translateY(0); } }
.lk-price-module .cennik__category-title {
  font-family: var(--lk-font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
  margin: 0 0 8px;
  font-weight: 500;
  color: var(--lk-wine-900);
}
.lk-price-module .cennik__category-sub {
  color: var(--lk-wine-700);
  margin: 0 0 32px;
  max-width: 56ch;
  font-size: 17px;
  line-height: 1.55;
}
.lk-price-module .cennik__rows { display: flex; flex-direction: column; }
.lk-price-module .cennik__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  padding: 16px 0;
  border-bottom: 1px solid var(--lk-cream-200);
  align-items: baseline;
  transition: padding-left 0.2s ease, background 0.2s ease;
}
.lk-price-module .cennik__row:hover { padding-left: 8px; background: linear-gradient(90deg, var(--lk-cream-100), transparent 30%); }
.lk-price-module .cennik__row-name { font-size: 16px; color: var(--lk-wine-900); line-height: 1.4; }
.lk-price-module .cennik__row-price {
  font-family: var(--lk-font-display);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  color: var(--lk-wine-700);
  white-space: nowrap;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums tabular-nums;
  text-align: right;
  min-width: 92px;
}
.lk-price-module .cennik__row-price.variable,
.lk-price-module .cennik__row-price.free {
  font-family: var(--lk-font-display);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  color: var(--lk-wine-700);
}
.lk-price-module .cennik__row-name.free { color: var(--lk-wine-900); font-style: normal; }
.lk-price-module .cennik__group-head {
  font-family: var(--lk-font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lk-wine-500);
  padding: 28px 0 8px;
  border-bottom: 1px solid var(--lk-wine-200);
  margin-bottom: 4px;
}
@media (max-width: 900px) {
  .lk-price-module.cennik { grid-template-columns: 1fr; gap: 32px; }
  .lk-price-module .cennik__nav {
    position: relative;
    top: 0;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    max-height: none;
    padding: 0 0 8px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .lk-price-module .cennik__nav-btn {
    white-space: nowrap;
    flex: 0 0 auto;
    scroll-snap-align: start;
    border-left: 0;
    border-bottom: 2px solid transparent;
    padding: 12px 16px;
  }
  .lk-price-module .cennik__nav-btn:hover { padding-left: 16px; }
  .lk-price-module .cennik__nav-btn.active { border-bottom-color: var(--lk-rose-300); }
}
@media (max-width: 560px) {
  .lk-price-module.cennik { gap: 24px; }
  .lk-price-module .cennik__category-sub { margin-bottom: 24px; font-size: 15px; }
  .lk-price-module .cennik__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }
  .lk-price-module .cennik__row-price { font-size: 20px; justify-self: start; }
   .lk-price-module .cennik__row-price.variable,
  .lk-price-module .cennik__row-price.free { font-size: 20px; }
}


/* Update: unified price typography across every value type */
.lk-price-module.cennik .cennik__row .cennik__row-price,
.lk-price-module.cennik .cennik__row .cennik__row-price.free,
.lk-price-module.cennik .cennik__row .cennik__row-price.variable {
  font-family: var(--lk-font-display);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0;
  text-transform: none;
  color: var(--lk-wine-700);
  white-space: nowrap;
  font-feature-settings: "lnum";
  font-variant-numeric: lining-nums tabular-nums;
  text-align: right;
}
@media (max-width: 560px) {
  .lk-price-module.cennik .cennik__row .cennik__row-price,
  .lk-price-module.cennik .cennik__row .cennik__row-price.free,
  .lk-price-module.cennik .cennik__row .cennik__row-price.variable {
    font-size: 20px;
    text-align: left;
  }
}
