/* ============================================================
   FIREMNÍ KRABIČKY — Header CSS
   Verze: 30
   Změny proti v24/v26:
   - Mega menu má 2-column layout: L2 karty vlevo + pravý sloupec "Podle X"
   - L3 pod-texty pod kartami jsou klikatelné <a> odkazy
   - Větší font pro čitelnost (L3 13,5px, L2 name 16px)
   - Hover na L3 = zlaté podtržení
   - Card je <div> místo <a> (kvůli vnořeným <a> pro L3)
   ============================================================ */

@font-face {
  font-family: 'Aspekta';
  src: url('https://cdn.jsdelivr.net/npm/@aspekta/fonts/variable/AspektaVF.woff2') format('woff2-variations');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --fk-max-width: 1500px;
  --forest: #223924;
  --leaf: #5C765E;
  --ocean: #83918F;
  --sand: #E6DFCD;
  --sand-lt: #F4F0E6;
  --sand-nav: #EDE8D8;
  --sunshine: #E1B124;
  --wood: #816645;
  --text: #1A2B1C;
  --muted: #6B7B6D;
}

/* Zamezit horizontálnímu přetékání */
body {
  overflow-x: hidden;
}

/* ── Skrýt původní Shoptet elementy ── */
.box-categories,
#header .navigation-in,
#header .header-top,
.navigation-wrapper>.container>header,
header#header,
.top-navigation-bar,
.user-action {
  display: none !important;
}

#content-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.overall-wrapper,
#overall-wrapper,
.content-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body {
  padding-top: 133px !important;
  font-family: 'Aspekta', sans-serif !important;
}

input,
button,
select,
textarea {
  font-family: 'Aspekta', sans-serif !important;
}

.fk-header *,
.fk-header a,
.fk-header a:hover,
.fk-header button,
.fk-header img {
  opacity: 1 !important;
}

/* ============================================================
   OVERLAY
   ============================================================ */
.fk-overlay {
  position: fixed;
  inset: 0;
  top: 132px;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  z-index: 8998;
  display: none;
}

.fk-overlay--visible {
  display: block;
  animation: fkOverlayIn 300ms ease forwards;
}

@keyframes fkOverlayIn {
  from { background: rgba(0, 0, 0, 0); }
  to { background: rgba(0, 0, 0, 0.28); }
}

/* ============================================================
   HEADER WRAPPER
   ============================================================ */
.fk-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  font-family: 'Aspekta', sans-serif;
  box-shadow: 0 2px 20px rgba(34, 57, 36, 0.1);
  transition: transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.fk-header--hidden {
  transform: translateY(-100%);
}

.fk-header--menu-open {
  transform: translateY(0) !important;
}

.fk-header-main {
  background: #fff;
  border-bottom: 1px solid rgba(34, 57, 36, 0.08);
  height: 84px;
  display: flex;
  align-items: center;
}

.fk-container {
  max-width: var(--fk-max-width);
  width: 100%;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  gap: 28px;
  height: 100%;
}

.fk-logo {
  display: flex;
  align-items: center;
  text-decoration: none !important;
  flex-shrink: 0;
}

.fk-logo img {
  height: 52px;
  width: auto;
  transition: transform 300ms ease !important;
}

.fk-logo:hover img {
  transform: scale(1.02);
}

.fk-divider {
  width: 1px;
  height: 32px;
  background: rgba(34, 57, 36, 0.12);
  flex-shrink: 0;
}

/* ── SEARCH ── */
.fk-search {
  flex: 1;
  max-width: 500px;
  position: relative;
}

.fk-search form {
  display: flex;
  border: 1.5px solid rgba(34, 57, 36, 0.15);
  background: var(--sand-lt);
  transition: border-color 300ms ease !important;
  border-radius: 10px;
  overflow: hidden;
}

.fk-search form:focus-within {
  border-color: var(--leaf);
}

.fk-search-inner {
  flex: 1;
  display: flex;
  align-items: center;
  position: relative;
  padding: 0 12px;
}

.fk-search-icon {
  width: 16px;
  height: 16px;
  stroke: var(--ocean);
  flex-shrink: 0;
  margin-right: 8px;
}

.fk-search-inner input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text);
  outline: none;
  font-family: 'Aspekta', sans-serif;
}

.fk-search-inner input::placeholder {
  color: var(--ocean);
}

.fk-search button {
  background: var(--forest);
  color: var(--sand);
  border: none;
  padding: 0 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  font-family: 'Aspekta', sans-serif;
  flex-shrink: 0;
  transition: background 300ms ease, color 300ms ease !important;
}

.fk-search button:hover {
  background: var(--sunshine) !important;
  color: var(--forest) !important;
}

.fk-search-suggestions {
  position: absolute;
  top: calc(100% + 8px);
  left: -12px;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(34, 57, 36, 0.15);
  border: 1px solid rgba(34, 57, 36, 0.08);
  overflow: hidden;
  display: none;
  z-index: 10000;
  min-width: 340px;
}

.fk-search-suggestions--visible {
  display: block;
}

.fk-suggestion-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(34, 57, 36, 0.06);
  transition: background 200ms ease !important;
}

.fk-suggestion-item:last-child {
  border-bottom: none;
}

.fk-suggestion-item:hover {
  background: var(--sand-lt);
}

.fk-suggestion-item img {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid rgba(34, 57, 36, 0.08);
  flex-shrink: 0;
}

.fk-suggestion-img-placeholder {
  width: 44px;
  height: 44px;
  background: var(--sand);
  border-radius: 6px;
  flex-shrink: 0;
}

.fk-suggestion-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fk-suggestion-name {
  font-size: 13px;
  font-weight: 500;
  color: var(--text) !important;
  line-height: 1.3;
}

.fk-suggestion-price {
  font-size: 13px;
  font-weight: 700;
  color: var(--forest) !important;
}

/* Kontakt */
.fk-contact {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.fk-contact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 2px;
}

.fk-contact-phone {
  font-size: 18px !important;
  font-weight: 700;
  color: var(--forest) !important;
  text-decoration: none !important;
  transition: color 300ms ease !important;
}

.fk-contact-phone:hover {
  color: var(--leaf) !important;
}

/* Akce */
.fk-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

.fk-login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--forest) !important;
  text-decoration: none !important;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1.5px solid rgba(34, 57, 36, 0.2);
  background: transparent;
  white-space: nowrap;
  transition: border-color 300ms ease, background 300ms ease !important;
}

.fk-login-btn:hover {
  border-color: var(--forest) !important;
  background: var(--sand-lt) !important;
}

.fk-login-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--forest) !important;
  fill: none;
}

.fk-login-btn span {
  color: var(--forest) !important;
}

/* ── KOŠÍK WRAPPER ── */
.fk-cart-wrapper {
  position: relative;
  flex-shrink: 0;
}

.fk-cart-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--forest);
  color: var(--sand) !important;
  border: none;
  border-radius: 10px;
  padding: 11px 22px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none !important;
  font-family: 'Aspekta', sans-serif;
  white-space: nowrap;
  transition: background 300ms ease, color 300ms ease !important;
}

.fk-cart-btn:hover {
  background: var(--sunshine) !important;
  color: var(--forest) !important;
}

.fk-cart-btn:hover svg {
  stroke: var(--forest) !important;
}

.fk-cart-btn:hover span {
  color: var(--forest) !important;
}

.fk-cart-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--sand);
  fill: none;
}

.fk-cart-badge {
  background: var(--sunshine);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── KOŠÍK DROPDOWN ── */
.fk-cart-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 420px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(34, 57, 36, 0.18);
  border: 1px solid rgba(34, 57, 36, 0.08);
  overflow: hidden;
  display: none;
  z-index: 10001;
}

.fk-cart-dropdown--visible {
  display: block;
  animation: fkFadeIn 250ms ease forwards;
}

@keyframes fkFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fk-cart-dropdown-inner {
  max-height: 320px;
  overflow-y: auto;
}

.fk-cart-empty {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0;
  min-height: 180px;
}

.fk-cart-empty-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  gap: 10px;
  text-align: center;
}

.fk-cart-empty-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fk-cart-empty-icon svg {
  width: 54px;
  height: 54px;
  stroke: var(--sunshine);
}

.fk-cart-empty-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text) !important;
  margin: 0;
}

.fk-cart-empty-desc {
  font-size: 13px;
  color: var(--muted) !important;
  margin: 0;
  line-height: 1.5;
}

.fk-cart-empty-divider {
  background: rgba(34, 57, 36, 0.1);
  width: 1px;
}

.fk-cart-empty-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px 24px;
  gap: 16px;
}

.fk-cart-empty-right-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text) !important;
  margin: 0;
}

.fk-cart-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
}

.fk-cart-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--sunshine);
  flex-shrink: 0;
}

.fk-cart-contact-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text) !important;
}

.fk-cart-items {
  padding: 12px;
}

.fk-cart-item {
  padding: 10px;
  border-bottom: 1px solid rgba(34, 57, 36, 0.06);
  font-size: 13px;
}

.fk-cart-dropdown-footer {
  padding: 12px 16px;
  border-top: 1px solid rgba(34, 57, 36, 0.08);
  background: var(--sand-lt);
}

.fk-cart-go {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--forest);
  color: var(--sand) !important;
  text-decoration: none !important;
  padding: 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: background 300ms ease !important;
}

.fk-cart-go:hover {
  background: var(--sunshine) !important;
  color: var(--forest) !important;
}

.fk-cart-go,
.fk-cart-go * {
  color: var(--sand) !important;
  stroke: var(--sand) !important;
}

.fk-cart-go:hover,
.fk-cart-go:hover * {
  color: var(--forest) !important;
  stroke: var(--forest) !important;
}

.fk-cart-go svg {
  width: 14px;
  height: 14px;
}

.fk-cart-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 200ms ease;
  z-index: 1;
}

.fk-cart-close:hover {
  background: var(--sand);
}

.fk-cart-close svg {
  width: 16px;
  height: 16px;
  stroke: var(--ocean);
}

.fk-cart-close:hover svg {
  stroke: var(--forest);
}

/* ============================================================
   NAV LIŠTA
   ============================================================ */
.fk-nav {
  background: var(--forest);
  position: fixed;
  top: 84px;
  left: 0;
  right: 0;
  z-index: 8999;
  margin: 0;
  padding: 0;
  line-height: 1;
}

.fk-nav-container {
  height: 48px;
  gap: 0;
  padding: 0 48px;
}

.fk-nav-list {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: nowrap;
}

.fk-nav-item {
  position: static;
}

.fk-nav-item>a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--sand-nav) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 14px;
  white-space: nowrap;
  font-family: 'Aspekta', sans-serif;
  position: relative;
  transition: color 300ms ease !important;
}

.fk-nav-item>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  height: 2px;
  width: 0;
  background: var(--sunshine);
  transition: width 300ms ease !important;
}

.fk-nav-item:hover>a::after,
.fk-nav-item--active>a::after {
  width: calc(100% - 28px);
}

.fk-nav-item--active>a {
  color: var(--sunshine) !important;
}

.fk-nav-item>a svg {
  width: 11px;
  height: 11px;
  stroke: currentColor;
  fill: none;
  transition: transform 300ms ease !important;
  flex-shrink: 0;
}

.fk-nav-item--active>a svg {
  transform: rotate(180deg);
}

/* ============================================================
   MEGA MENU — 2-column layout (L2 karty + pravý sloupec)
   ============================================================ */
.fk-mega {
  position: fixed;
  top: 132px;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid var(--sunshine);
  box-shadow: 0 16px 48px rgba(34, 57, 36, 0.12);
  z-index: 8999;
  width: 100vw;
  display: none;
}

.fk-nav-item--active .fk-mega {
  display: block;
  animation: fkFadeIn 220ms ease forwards;
}

.fk-mega-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 34px 48px 40px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
}

/* Mega menu bez pravého sloupce */
.fk-mega-inner--no-side {
  grid-template-columns: minmax(0, 1fr);
}

/* Levý sloupec — L2 karty */
.fk-mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 8px;
}

.fk-mega-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--sand-lt);
  cursor: pointer;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: background 250ms ease, border-color 250ms ease, transform 250ms ease !important;
}

.fk-mega-card:hover {
  background: var(--sand) !important;
  border-color: rgba(34, 57, 36, 0.1) !important;
  transform: translateY(-2px) !important;
}

.fk-mega-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  height: 2px;
  width: 0;
  background: var(--sunshine);
  transition: width 300ms ease !important;
}

.fk-mega-card:hover::after {
  width: calc(100% - 32px);
}

.fk-mega-card-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(34, 57, 36, 0.08);
}

.fk-mega-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--forest);
  fill: none;
}

.fk-mega-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.fk-mega-card-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--forest) !important;
  line-height: 1.25;
  font-family: 'Aspekta', sans-serif;
  text-decoration: none !important;
  transition: color 180ms ease !important;
}

.fk-mega-card-name:hover {
  color: var(--leaf) !important;
}

/* L3 klikatelné pod-odkazy */
.fk-mega-card-subs {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.6;
  letter-spacing: 0.01em;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: break-word;
}

.fk-mega-card-sub {
  display: inline;
  color: var(--muted) !important;
  text-decoration: none !important;
  transition: color 180ms ease !important;
  white-space: nowrap;
}

.fk-mega-card-sub:hover {
  color: var(--forest) !important;
  text-decoration: underline !important;
  text-decoration-color: var(--sunshine) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
}

.fk-mega-card-sep {
  display: inline;
  color: var(--sand);
  margin: 0 5px;
  user-select: none;
}

/* Pravý sloupec */
.fk-mega-side {
  padding-left: 32px;
  border-left: 1px solid rgba(34, 57, 36, 0.1);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fk-mega-side-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ocean);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.fk-mega-side-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text) !important;
  background: transparent;
  text-decoration: none !important;
  transition: background 200ms ease, color 200ms ease !important;
}

.fk-mega-side-link:hover {
  background: var(--sand-lt) !important;
  color: var(--forest) !important;
}

.fk-mega-side-link .tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 4px;
  margin-left: 8px;
}

.tag--param {
  background: rgba(92, 118, 94, 0.12);
  color: var(--leaf);
}

.tag--seo {
  background: rgba(225, 177, 36, 0.18);
  color: var(--wood);
}

.fk-mega-side-link .arrow {
  width: 14px;
  height: 14px;
  stroke: var(--ocean);
  fill: none;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 200ms ease, transform 200ms ease !important;
}

.fk-mega-side-link:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Nav right */
.fk-nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.fk-nav-right a {
  color: var(--sand-nav) !important;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 14px;
  position: relative;
  font-family: 'Aspekta', sans-serif;
  white-space: nowrap;
}

.fk-nav-right a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 14px;
  height: 2px;
  width: 0;
  background: var(--sunshine);
  transition: width 300ms ease !important;
}

.fk-nav-right a:hover::after {
  width: calc(100% - 28px);
}

.fk-nav-right a.highlight {
  background: var(--sunshine);
  color: var(--forest) !important;
  border-radius: 8px;
  padding: 9px 20px;
  font-weight: 700;
  margin-left: 8px;
  transition: opacity 300ms ease !important;
}

.fk-nav-right a.highlight::after {
  display: none;
}

.fk-nav-right a.highlight:hover {
  opacity: 0.9;
}

/* ============================================================
   SHOPTET CART WIDGET SCHOVAT
   ============================================================ */
.toggle-window-content[data-target="cart"],
#cart-widget,
.cart-widget,
[data-testid="cartWidget"],
.cart-hover-widget,
.cart-window {
  display: none !important;
}

.overall-wrapper>.toggle-window-content,
.toggle-window-content,
[data-target="cart"].toggle-window-content,
.cart-window-content,
div[id*="cart-widget"],
div[class*="cart-widget"],
div[class*="cart-window"] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* ============================================================
   TABLET (1200px) — pravý sloupec pod karty
   ============================================================ */
@media (max-width: 1200px) {
  .fk-mega-inner {
    grid-template-columns: 1fr;
  }
  .fk-mega-side {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(34, 57, 36, 0.1);
    padding-top: 24px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 4px;
  }
  .fk-mega-side-title {
    grid-column: 1 / -1;
  }
}

/* ============================================================
   TABLET (992px)
   ============================================================ */
@media (max-width: 992px) {
  body {
    padding-top: 110px !important;
  }

  .fk-nav {
    top: 64px;
  }

  .fk-container {
    padding: 0 16px;
    height: 64px;
    gap: 12px;
  }

  .fk-contact {
    display: none;
  }

  .fk-search {
    max-width: none;
  }

  .fk-login-btn span {
    display: none;
  }

  .fk-nav-container {
    padding: 0 16px;
    overflow-x: auto;
    height: 46px;
  }

  .fk-nav-item>a {
    padding: 12px 10px;
    font-size: 11px;
  }

  .fk-mega {
    display: none !important;
  }

  .fk-nav-right a {
    padding: 12px 8px;
    font-size: 11px;
  }

  .fk-cart-dropdown {
    width: 300px;
    right: -60px;
  }
}

/* ============================================================
   HAMBURGER — desktop schovaný
   ============================================================ */
.fk-hamburger {
  display: none !important;
}

.fk-mobile-menu {
  display: none !important;
}

/* ============================================================
   MOBILNÍ (768px)
   ============================================================ */
@media (max-width: 768px) {
  body {
    padding-top: 64px !important;
  }

  .fk-container {
    height: 64px !important;
    padding: 0 16px !important;
    gap: 10px !important;
  }

  .fk-logo img {
    height: 38px !important;
  }

  .fk-divider {
    display: none !important;
  }

  .fk-contact {
    display: none !important;
  }

  .fk-search {
    display: none !important;
  }

  .fk-login-btn span {
    display: none !important;
  }

  .fk-login-btn {
    padding: 8px !important;
    border: none !important;
    background: transparent !important;
  }

  .fk-cart-btn {
    padding: 9px 14px !important;
    font-size: 13px !important;
  }

  .fk-cart-dropdown {
    position: fixed !important;
    top: 68px !important;
    left: 12px !important;
    right: 12px !important;
    width: auto !important;
    border-radius: 14px !important;
  }

  .fk-cart-empty {
    grid-template-columns: 1fr !important;
  }

  .fk-cart-empty-divider {
    width: 100% !important;
    height: 1px !important;
  }

  .fk-cart-empty-left,
  .fk-cart-empty-right {
    padding: 20px 20px !important;
  }

  .fk-cart-empty-left {
    padding-bottom: 0 !important;
  }

  .fk-nav {
    display: none !important;
  }

  /* ── HAMBURGER ── */
  .fk-hamburger {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 38px;
    height: 38px;
    padding: 8px;
    cursor: pointer;
    border: none;
    background: none;
    flex-shrink: 0;
  }

  .fk-hb-line {
    display: block;
    width: 20px;
    height: 2px;
    background: #223924;
    border-radius: 2px;
    transition: all 300ms ease;
  }

  .fk-hb-line:last-of-type {
    width: 13px;
    align-self: flex-start;
  }

  .fk-hb-x {
    display: none;
    width: 22px;
    height: 22px;
  }

  .fk-hamburger.open .fk-hb-line {
    display: none;
  }

  .fk-hamburger.open .fk-hb-x {
    display: block;
  }

  /* ── MOBILNÍ MENU DRAWER ── */
  .fk-mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 8990;
    overflow-y: auto;
    border-top: 3px solid #E1B124;
    animation: fkSlideDown 250ms ease forwards;
    display: flex;
    flex-direction: column;
  }

  .fk-mobile-menu.open {
    display: flex !important;
  }

  .fk-mob-footer {
    margin-top: auto !important;
    background: #F4F0E6;
    padding: 20px 16px;
    border-top: 2px solid rgba(34, 57, 36, 0.1);
  }

  @keyframes fkSlideDown {
    from {
      opacity: 0;
      transform: translateY(-8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .fk-mob-item {
    border-bottom: 1px solid rgba(34, 57, 36, 0.08);
  }

  .fk-mob-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 62px;
    cursor: pointer;
    user-select: none;
    text-decoration: none !important;
    color: inherit !important;
  }

  a.fk-mob-row:hover {
    background: var(--sand-lt);
  }

  .fk-mob-left {
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .fk-mob-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #223924;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .fk-mob-icon svg {
    width: 20px;
    height: 20px;
  }

  .fk-mob-name {
    font-size: 16px;
    font-weight: 600;
    color: #1A2B1C;
    letter-spacing: -0.01em;
  }

  .fk-mob-name.open {
    color: #E1B124;
  }

  .fk-mob-chev {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 250ms ease;
  }

  .fk-mob-chev.open {
    transform: rotate(180deg);
    stroke: #E1B124 !important;
  }

  .fk-mob-sub {
    background: #F4F0E6;
    border-top: 1px solid rgba(34, 57, 36, 0.08);
    display: none;
  }

  .fk-mob-sub a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px 14px 70px;
    font-size: 15px;
    font-weight: 500;
    color: #223924 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(34, 57, 36, 0.07);
  }

  .fk-mob-sub a:last-child {
    border-bottom: none;
  }

  .fk-mob-sub a:hover {
    background: var(--sand);
  }

  .fk-mob-sub a::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #E1B124;
    flex-shrink: 0;
  }

  .fk-mob-sub-all {
    display: flex !important;
    align-items: center;
    padding: 11px 16px 11px 70px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ocean) !important;
    border-bottom: 1px solid rgba(34, 57, 36, 0.07) !important;
  }

  .fk-mob-sub-all::before {
    display: none !important;
  }

  .fk-mob-firmy {
    display: block;
    margin: 14px 16px 4px;
    background: #E1B124;
    color: #223924 !important;
    text-align: center;
    padding: 15px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
  }

  .fk-mob-footer-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #83918F;
    margin-bottom: 6px;
  }

  .fk-mob-footer-tel {
    font-size: 20px;
    font-weight: 700;
    color: #223924 !important;
    display: block;
    margin-bottom: 2px;
    text-decoration: none !important;
  }

  .fk-mob-footer-hrs {
    font-size: 12px;
    color: #6B7B6D;
  }
}
