/* =========================================================
   FAJNKOS.CZ – komplet nový vizuální CSS základ
   Směr: teplý retail / friendly e-shop / tmavší indian red
   Nahrazuje namakanej fitness vibe.
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;500;600;700;800;900&display=swap');

:root {
  --red: #b33a3a;
  --red-dark: #8f2d2d;
  --red-soft: #fff0ec;

  --dark: #2b2522;
  --dark2: #3a312d;
  --mid: #6d625c;

  --text: #2b2522;
  --text-2: #655b55;
  --text-3: #92857d;
  --muted: #a4978f;

  --white: #fff;
  --bg: #f7f3ef;
  --soft: #fffaf5;
  --line: #eadfd7;
  --border: #eadfd7;

  --green: #3c8f5a;
  --green-soft: #edf7ef;

  --shadow-sm: 0 4px 14px rgba(80,50,20,.045);
  --shadow-md: 0 10px 26px rgba(80,50,20,.07);
  --shadow-lg: 0 18px 46px rgba(80,50,20,.12);

  --font-body: 'Nunito Sans', sans-serif;
  --font-condensed: 'Nunito Sans', sans-serif;
  --bs-body-font-family: 'Nunito Sans', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(to bottom, #fffaf5 0%, #f7f3ef 320px, #f5f1ed 100%);
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

@media (min-width: 1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1390px;
    }
}

@media (min-width: 1600px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1480px;
    }
}
@media (min-width: 1800px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1720px;
        max-width: 1480px;
    }
}




/* =========================================================
   TOPBAR
   ========================================================= */

.nm-topbar {
    height: 34px;
    overflow: hidden;
    position: relative;
    background: #A42327;
    border-bottom: 1px solid var(--line);
}

.nm-topbar-track {
  display: flex;
  flex-direction: column;
  animation: topbarSlide 12s infinite;
}

.nm-topbar-item {
color: white;
	height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: white;
  letter-spacing: .25px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nm-topbar-item a {
  color: white;
}
.nm-topbar-item strong {
  color: white;
  font-weight: 900;
}

.nm-topbar-item .tb-sep {
  color: #d4c8bf;
  margin: 0 4px;
}

.nm-topbar-dots {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  gap: 5px;
}

.nm-topbar-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #d8cbc2;
  transition: .25s ease;
}

.nm-topbar-dot.active {
  background: var(--red);
  transform: scale(1.15);
}

@keyframes topbarSlide {
  0%,28% { transform: translateY(0); }
  33%,61% { transform: translateY(-34px); }
  66%,94% { transform: translateY(-68px); }
  99%,100% { transform: translateY(0); }
}

/* =========================================================
   HEADER
   ========================================================= */

.nm-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 6px 22px rgba(70,45,25,.055);
  transition: box-shadow .25s ease, background .25s ease;
}

.nm-header.is-scrolled {
  background: rgba(255,255,255,.98);
  box-shadow: 0 10px 28px rgba(70,45,25,.085);
}

.nm-header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-top: 0;
  padding-bottom: 0;
}

.nm-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  padding: 18px 0;
  max-width: 200px;
  flex-shrink: 0;
  border-radius: 18px;
  transition: transform .18s ease;
}

.nm-logo:hover {
  background: transparent;
  transform: translateY(-1px);
  box-shadow: none;
}

.nm-logo img {
  max-width: 100%;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.10));
}

.nm-logo-text {
  font-family: var(--font-body);
  font-size: 38px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.04em;
  line-height: .9;
  text-transform: none;
}

.nm-logo-text span {
  color: var(--red);
  font-size: .74em;
}

.nm-logo-sub {
  font-size: 11px;
  color: var(--text-3);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 2px;
  margin-left: 2px;
  display: block;
}

/* Search */

.nm-search {
  flex: 1;
  max-width: 760px;
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s, background .2s;
}

.nm-search::before {
  content: '';
  position: absolute;
  left: 17px;
  top: 50%;
  width: 15px;
  height: 15px;
  transform: translateY(-50%);
  border: 2px solid #aa9b92;
  border-radius: 50%;
  pointer-events: none;
}

.nm-search::after {
  content: '';
  position: absolute;
  left: 30px;
  top: calc(50% + 6px);
  width: 8px;
  height: 2px;
  background: #aa9b92;
  transform: rotate(45deg);
  border-radius: 2px;
  pointer-events: none;
}

.nm-search:hover {
  border-color: #ddcfc5;
  box-shadow: 0 6px 18px rgba(80,50,20,.06);
}

.nm-search:focus-within {
  border-color: rgba(179,58,58,.45);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(179,58,58,.08), var(--shadow-md);
}

.nm-search input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--dark);
  font-size: 14px;
  padding: 15px 16px 15px 48px;
  outline: none;
  font-family: var(--font-body);
  font-weight: 700;
  box-shadow: none !important;
}

.nm-search input::placeholder {
  color: #ad9f96;
  font-weight: 600;
}

.nm-search-btn {
    min-width: 38px;
    height: 38px;
    margin: 4px;
    background: var(--red);
    border: none;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .18s ease;
    flex-shrink: 0;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(179, 58, 58, .20);
}

.nm-search-btn:hover {
  background: var(--red-dark);
  box-shadow: 0 12px 24px rgba(143,45,45,.24);
  transform: translateY(-1px);
}

.nm-search-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
}

/* Phone + icons */

.nm-phone {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  text-decoration: none;
  border-radius: 999px;
}

.nm-phone:hover {
  background: var(--red-soft);
}

.nm-phone svg {
  width: 16px;
  height: 16px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0;
}

.nm-phone small {
  display: block;
  font-size: 10px;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  font-weight: 900;
}

.nm-phone strong {
  display: block;
  color: var(--dark);
  font-size: 13px;
  font-weight: 900;
}

.nm-hicons {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-left: auto;
}

.nm-hicon {
  position: relative;
  min-width: 56px;
  min-height: 56px;
  padding: 8px 10px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: transparent;
  color: #6f625c;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  transition: .18s ease;
}

.nm-hicon:hover {
  color: var(--red-dark);
  background: #fff3ec;
  transform: none;
}

.nm-hicon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.3;
}

.nm-hicon-label {
  font-size: 9px;
  color: #a4978f;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: .45px;
}

.nm-hicon:hover .nm-hicon-label {
  color: var(--red-dark);
}

.nm-hicon .nm-badge,
.nm-bottom-nav-item .nm-bn-badge {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: 5px;
  min-height: unset;
  width: 20px;
  height: 20px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 99px;
  border: 2px solid #fff;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
  box-shadow: 0 5px 12px rgba(179,58,58,.22);
}

/* =========================================================
   GOALBAR / NAVBAR
   ========================================================= */

.nm-goalbar {
  background: transparent;
}

.nm-goalbar-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 0 8px;
}

.nm-goal-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--text-3);
  padding-right: 18px;
  border-right: 1px solid var(--line);
  margin-right: 8px;
  white-space: nowrap;
  font-weight: 900;
  display: flex;
  align-items: center;
}

.nm-goal-tag,
.browse-subcat-chip {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    color: #4b403b;
    font-size: 15px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: none;
    box-shadow: var(--shadow-sm);
    gap: 8px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    text-decoration: none;
    transition: .18s ease;
}

.nm-goal-tag:hover,
.browse-subcat-chip:hover {
  color: var(--red-dark) !important;
  background: #fff3ec;
  border-color: #e4c4b6;
  transform: translateY(-1px);
}

.nm-goal-tag .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nm-navbar {
  background: #fffdfb;
  border-bottom: 1px solid var(--line);
}

.nm-navbar-inner {
  display: flex;
  align-items: stretch;
  padding-top: 12px;
  padding-bottom: 0;
}

.nm-nav-item {
  position: static;
}

.nm-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 36px;
  padding: 0 15px;
  margin: 0 4px 10px 0;
  border-radius: 999px;
  background: transparent;
  border: 1px solid transparent;
  color: #3b332f;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  text-transform: none;
  letter-spacing: .01em;
  transition: .18s ease;
}

.nm-nav-link:hover {
  text-decoration: none;
}

.nm-nav-link::after {
  display: none;
}

.nm-nav-link svg {
    width: 18px;
    height: 18px;
    margin-bottom: 3px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    transition: transform .2s;
}
.nm-nav-link svg.category-icon {
    transition: transform .8s;
}

.nm-nav-item:hover > .nm-nav-link {
  color: var(--red-dark);
  background: #fff0e8;
  transform: none;
}

.nm-nav-item:hover > .nm-nav-link svg {
  transform: rotate(180deg);
}
.nm-nav-item:hover > .nm-nav-link svg.category-icon {
  transform: rotate(360deg);
}

.nm-nav-link-all {
  background: var(--red) !important;
  color: #fff !important;
  border-radius: 999px;
  margin: 0 10px 10px 0;
  padding: 10px 17px;
  border: 1px solid var(--red) !important;
  box-shadow: 0 8px 18px rgba(179,58,58,.18);
}

.nm-nav-link-all::after {
  display: none;
}

.nm-nav-item:hover .nm-nav-link-all {
  background: var(--red-dark) !important;
  border-color: var(--red-dark) !important;
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(143,45,45,.22) !important;
}

.nm-nav-extra {
  margin-left: auto;
  display: flex;
  align-items: center;
}

.nm-nav-extra .nm-nav-link {
  color: #82746b;
  font-size: 13px;
}

.nm-nav-extra .nm-nav-link:hover {
  background: #fff3ec;
  color: var(--red-dark);
}

.nm-nav-badge,
.nm-hot-tag {
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 999px;
  letter-spacing: .5px;
  box-shadow: 0 6px 14px rgba(179,58,58,.20);
}

.nm-new-tag {
  background: var(--green);
}

/* =========================================================
   MEGA MENU
   ========================================================= */

.nm-mega {
  position: fixed;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 44px rgba(80,50,20,.14);
  display: none;
  z-index: 999;
  padding: 24px 0 30px;
}

.nm-nav-item:hover .nm-mega {
  /* display: block;*/
}

.nm-mega-shortcuts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.nm-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 13px;
  border-radius: 999px;
  background: #fffaf5;
  border: 1px solid var(--line);
  color: #5a4f49;
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  text-transform: none;
  transition: .18s ease;
}

.nm-chip:hover {
  background: #fff0e8;
  border-color: #e4c4b6;
  color: var(--red-dark);
  transform: translateY(-1px);
}

.nm-mega-col {
    padding: 0 24px;
    border-right: 1px solid var(--line);
    max-height: 50vh;
    overflow: hidden;
    overflow-y: auto;
}

.nm-mega-col:first-child { padding-left: 0; }
.nm-mega-col:last-child { border-right: none; }

.nm-mega-col-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: -.01em;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
  color: var(--dark);
  display: flex;
}

.nm-mega-col-title a {
  color: inherit;
  text-decoration: none;
}

.nm-mega-col-title a:hover {
  color: var(--red-dark);
}

.nm-mega-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nm-mega-col ul li {
  margin-bottom: 2px;
}

.nm-mega-col ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #5a4f49;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 7px 0;
  transition: color .15s, padding-left .15s;
}

.nm-mega-col ul li a:hover {
  color: var(--red);
  padding-left: 6px;
}

.nm-mega-second-row {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 8px;
}

.nm-mega-col-promo {
	width: 360px;
	border-right: none;
}

.nm-mega-promo {
  background: linear-gradient(145deg, #b33a3a, #7f2a2a);
  border-radius: 20px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(143,45,45,.18);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
  min-height: 200px;
}
.nm-mega-promo img {
	width: 100%;
	margin-bottom: 15px;
	border-radius: 12px;
}


.nm-mega-col-promo.has-image .nm-mega-promo {
	background: white;	

	padding: 15px 14px;
}

.nm-mega-promo-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  text-transform: none;
  letter-spacing: -.04em;
}



.nm-mega-promo-sub {
  font-size: 14px;
  color: rgba(255,255,255,.84);
  margin-top: 9px;
  line-height: 1.45;
}

.nm-mega-col-promo.has-image  .nm-mega-promo-title, 
.nm-mega-col-promo.has-image .nm-mega-promo-sub 
{
	 color: var(--red-dark);
}

.nm-mega-promo-btn {
  display: inline-block;
  background: #fff;
  color: var(--red-dark);
  font-weight: 900;
  font-size: 13px;
  text-transform: none;
  padding: 10px 15px;
  border-radius: 999px;
  text-decoration: none;
  margin-top: 18px;
  transition: .18s ease;
  align-self: flex-start;
  box-shadow: 0 8px 18px rgba(0,0,0,.14);
}

.nm-mega-col-promo.has-image .nm-mega-promo-btn {
	  background: var(--red-dark);
  color:  #fff;
	}

/* =========================================================
   HERO / HOMEPAGE
   ========================================================= */

.nm-hero {
  padding: 18px 0 0;
}

.nm-hero--split {
  display: grid;
  grid-template-columns: 1fr 340px;
  grid-template-rows: 480px;
  gap: 14px;
  align-items: stretch;
}

.nm-hero-slider {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: linear-gradient(135deg, #fff7ef 0%, #f5e6dc 55%, #ead2c4 100%);
  border-radius: 26px;
  box-shadow: 0 12px 34px rgba(80,50,20,.08);
}

.nm-hero-prog {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: var(--red);
  z-index: 30;
}

.nm-hslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .6s ease;
}

.nm-hslide.active {
  opacity: 1;
  pointer-events: auto;
}

.nm-hslide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.nm-hslide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(255,250,245,.94) 0%,
      rgba(255,250,245,.80) 42%,
      rgba(255,250,245,.26) 75%,
      rgba(255,250,245,.04) 100%),
    linear-gradient(180deg, transparent 52%, rgba(245,225,210,.35) 100%);
}

.nm-hslide-inner {
  position: relative;
  z-index: 5;
  height: 100%;
  max-width: 52%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 56px 90px;
}

.nm-hslide-kicker,
.nm-sales-kicker,
.nm-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  padding: 7px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #efd8ce;
  color: var(--red-dark);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.nm-hslide-kicker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
}

.nm-hslide-title,
.nm-sales-title {
  font-family: var(--font-body);
  font-size: clamp(46px, 5.5vw, 74px);
  font-weight: 900;
  line-height: .92;
  letter-spacing: -.06em;
  text-transform: none;
  color: var(--dark);
  margin-bottom: 20px;
}

.nm-hslide-title .red {
  color: var(--red);
}

.nm-hslide-desc,
.nm-sales-text {
  font-size: 15px;
  line-height: 1.65;
  color: #675b55;
  max-width: 420px;
  margin-bottom: 28px;
}

.nm-hslide-desc strong {
  color: var(--dark);
  font-weight: 900;
}

.nm-hslide-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.nm-hslide-btn,
.nm-sales-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: .16s ease;
  font-family: var(--font-body);
}

.nm-hslide-btn--primary,
.nm-sales-btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 22px rgba(179,58,58,.22);
}

.nm-hslide-btn--primary:hover,
.nm-sales-btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  color: #fff;
}

.nm-hslide-btn--ghost,
.nm-sales-btn-secondary {
  background: #fff;
  color: var(--dark);
  border: 1px solid var(--line);
}

.nm-hslide-btn--ghost:hover,
.nm-sales-btn-secondary:hover {
  background: #fff3ec;
  color: var(--red-dark);
  transform: translateY(-1px);
}

.nm-hslide-prod {
  position: absolute;
  right: 52px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 220px;
}

.nm-hslide-prod-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.nm-hslide-prod-img {
  height: 170px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nm-hslide-prod-img img {
  max-height: 88%;
  max-width: 88%;
  object-fit: contain;
}

.nm-hslide-prod-label {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.nm-hslide-prod-body {
  padding: 14px 16px 16px;
  border-top: 1px solid var(--line);
}

.nm-hslide-prod-brand {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-bottom: 4px;
}

.nm-hslide-prod-name {
  font-size: 16px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 10px;
}

.nm-hslide-prod-price {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 900;
  color: var(--red-dark);
  letter-spacing: -.04em;
}

.nm-hslide-prod-old {
  font-size: 12px;
  color: var(--muted);
  text-decoration: line-through;
  font-weight: 600;
  margin-left: 6px;
}

.nm-hslide-prod-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 38px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  width: 100%;
  transition: .15s;
  font-family: var(--font-body);
  position: relative;
  z-index: 2;
}

.nm-hslide-prod-btn:hover {
  background: var(--red-dark);
  color: #fff;
}

.nm-hero-dots {
  position: absolute;
  left: 56px;
  bottom: 28px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.nm-hero-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 999px;
  background: rgba(43,37,34,.22);
  cursor: pointer;
  transition: .2s;
  padding: 0;
}

.nm-hero-dot.active {
  width: 28px;
  background: var(--red);
}

.nm-hero-arrows {
  position: absolute;
  right: 20px;
  bottom: 22px;
  display: flex;
  gap: 7px;
  z-index: 10;
}

.nm-hero-arrow {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  color: var(--dark);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .15s;
}

.nm-hero-arrow:hover {
  background: var(--red);
  color: #fff;
}

.nm-hside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.nm-hside-block,
.nm-sales-side-dark {
  flex: 1;
  min-height: 0;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 22px 22px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none;
  color: var(--dark);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: .18s ease;
}

.nm-hside-block::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(179,58,58,.08);
  pointer-events: none;
}

.nm-hside-block:hover {
  background: #fff7f1;
  border-color: #e6c8ba;
  transform: translateY(-2px);
  color: var(--dark) !important;
  text-decoration: none !important;
}

.nm-hside-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
}

.nm-hside-tag {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--text-3);
}

.nm-hside-badge {
  padding: 2px 9px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .04em;
  flex-shrink: 0;
}

.nm-hside-icon {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--red-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 12px;
}

.nm-hside-name,
.nm-sales-side-card h3 {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  text-transform: none;
  letter-spacing: -.06em;
  margin-bottom: 7px;
  color: var(--dark);
}

.nm-hside-desc,
.nm-sales-side-dark p {
  font-size: 12.5px;
  color: #746963;
  line-height: 1.55;
  margin-bottom: 16px;
}

.nm-hside-link,
.nm-sales-side-dark a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 900;
  color: var(--red);
  letter-spacing: .02em;
  text-transform: none;
}

/* Sales / feature blocks */

.nm-sales-hero-main {
  position: relative;
  overflow: hidden;
  min-height: 430px;
  border-radius: 26px;
  padding: 34px;
  background: linear-gradient(135deg, #fff7ef 0%, #f5e6dc 55%, #ead2c4 100%);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nm-sales-side-card,
.nm-prod-card,
.nm-hero-card,
.nm-insight-card {
  border-radius: 22px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.nm-sales-side-light {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--dark);
}

.nm-section-title,
.browse-header,
h1.browse-header,
.details-frame-title,
.frame-title,
.details-name {
  font-family: var(--font-body);
  font-size: clamp(28px, 3vw, 30px);
  line-height: 1;
  font-weight: 900;
  color: var(--dark);
  margin: 0 0 8px;
  letter-spacing: -.06em;
  text-transform: none;
}

.nm-section-sub {
  font-size: 15px;
  color: var(--text-2);
  margin: 0;
}

.nm-section-link {
  color: var(--red);
  text-decoration: none;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}

.nm-prod-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 18px;
}

.nm-prod-card h3 {
  font-family: var(--font-body);
  font-size: 22px;
  line-height: 1.05;
  font-weight: 900;
  color: var(--dark);
  margin: 0 0 10px;
  letter-spacing: -.04em;
}

.nm-prod-card p {
  font-size: 15px;
  line-height: 1.45;
  color: var(--text-2);
  margin: 0 0 20px;
}

/* =========================================================
   CATEGORY / BROWSE
   ========================================================= */

#breadcrumbs.breadcrumbs {
  padding-top: 14px !important;
  padding-bottom: 10px !important;
  margin-bottom: 0;
  background: transparent;
}

#breadcrumbs .breadcrumb {
  margin-bottom: 0;
  font-size: 13px;
  color: var(--text-3);
  gap: 2px;
}

#breadcrumbs a {
  color: #776b64;
  text-decoration: none;
}

#breadcrumbs a:hover {
  color: var(--red-dark);
}

#breadcrumbs .breadcrumb-item.active {
  color: var(--dark);
}

#main-content {
  background: transparent;
}

.inner-section.shop-part {
  padding-top: 8px !important;
  padding-bottom: 42px !important;
}


.content-reverse {
  align-items: flex-start;
}

#filters-container {
  position: sticky;
  top: 24px;
}

.filter-container,
.nm-filters {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.shop-widget {
  margin-bottom: 22px !important;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.shop-widget:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0 !important;
}

.shop-widget-title,
.nm-filters__section-title {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--dark);
  margin-bottom: 14px !important;
}

.subcategories-list a,
.filter-ajax-link.d-block,
.nm-filters__cat-item {
    display: block;
    padding: 12px 20px;
    margin-bottom: 2px !important;
    border-radius: 22px;
    color: #5a4f49;
    text-decoration: none;
    line-height: 1.0;
    transition: .18s ease;
    font-weight: 600;
}

.subcategories-list a:hover,
.filter-ajax-link.d-block:hover,
.nm-filters__cat-item:hover {
  background: #fff3ec;
  color: var(--red-dark);
  transform: none;
}

.filter-ajax-link.d-block.active,
.subcategories-list a.active,
.nm-filters__cat-item--active {
  background: var(--red-soft);
  color: var(--red-dark) !important;
  font-weight: 900;
  border-left-color: var(--red);
}

.header-section.browse {
  margin-bottom: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px 26px 22px;
  box-shadow: var(--shadow-sm);
}

.header-section.browse .container {
  max-width: 100%;
  padding: 0;
}

.browse-description,
#browse-header-container .browse-description,
#browse-footer-container .browse-description {
  max-width: 900px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.7;
}

.header-section.browse hr,
#browse-header-container hr {
  margin: 18px 0 14px;
  border-color: var(--line);
}

.sort-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  border: 0;
  margin: 0;
  padding: 0;
}

.sort-tabs .nav-link,
.nm-hfilter__btn,
.nm-filters__quick-btn,
.nm-filters__price-chip {
display: inline-flex;
    gap: 5px;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid var(--line) !important;
    border-radius: 999px !important;
    padding: 0 16px;
    font-size: 14px;
    color: #4b403b !important;
    background: #fff !important;
    font-weight: 700;
    transition: .18s ease;
    box-shadow: var(--shadow-sm) !important;
    text-decoration: none;
}



.nm-filters__quick-btn

 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 10px;
    margin-bottom: 5px;
/*    border-radius: 10px;
    color: var(--dark, #141414);
    text-decoration: none;
    border: 1.5px solid var(--line, #e9e9e9);
    background: #fff; */
    
    
}

.nm-filters__quick-count

 {
    margin-left: auto;
    font-size: 11px;
    opacity: .55;
    font-weight: 700;
}

.nm-filters__section {
    padding: 20px 0 16px;
    margin-top: 4px;
}

.nm-filters__cat-up {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    color: var(--muted, #999);
    text-decoration: none;
    margin-bottom: 8px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    padding: 5px 8px;
    border-radius: 6px;
    transition: color .15s, background .15s;
}

.sort-tabs .nav-link:hover,
.nm-hfilter__btn:hover,
.nm-filters__quick-btn:hover,
.nm-filters__price-chip:hover {
  border-color: #e4c4b6 !important;
  color: var(--red-dark) !important;
  background: #fff3ec !important;
}

.sort-tabs .nav-link.active,
.nm-hfilter__btn--active,
.nm-filters__quick-btn--active,
.nm-filters__price-chip--active,
.browse-subcat-chip.active {
  background: var(--red) !important;
  border-color: var(--red) !important;
  color: #fff !important;
  box-shadow: 0 8px 18px rgba(179,58,58,.18) !important;
}

.nm-hfilter {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 20px;
}

.nm-hfilter__spacer {
  flex: 1;
}

.nm-hfilter__dropdown {
  position: relative;
}

.nm-hfilter__panel-footer {
    display: flex;
    justify-content: space-between;
    padding: 9px 12px;
    border-top: 1px solid #e8e8e8;
    gap: 8px;
    align-items: center;
    background: #fafafa;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.nm-hfilter__panel {
display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 250px;
    max-width: 340px;
    max-height: 320px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    z-index: 600;
    overflow: auto;
    padding: 10px;
}

.nm-hfilter__dropdown--open .nm-hfilter__panel {
  display: flex;
  flex-direction: column;
}

.nm-hfilter__search-wrap {
  padding: 10px 12px 8px;
  border-bottom: 1px solid var(--line);
}

.nm-hfilter__search {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  outline: none;
  font-family: var(--font-body);
  background: var(--soft);
}

.nm-hfilter__search:focus {
  border-color: var(--red);
  background: #fff;
}

.nm-check-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  transition: background .1s;
  font-family: var(--font-body);
  user-select: none;
}

.nm-check-item:hover {
  background: var(--soft);
}

.nm-check-item input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--red);
  cursor: pointer;
}

.nm-hfilter__apply {
  background: var(--red);
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: .15s;
  font-family: var(--font-body);
}

.nm-hfilter__apply:hover {
  background: var(--red-dark);
}


.nm-cat-expand {
    margin-top: 0.5rem;
    margin-bottom: 0.25rem;
}

.nm-cat-expand__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: none;
    border: none;
    padding: 0;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--nm-primary, #e8151b);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.nm-cat-expand__btn:hover {
    opacity: 0.8;
}

.nm-cat-expand__icon {
    width: 14px;
    height: 14px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.nm-cat-expand__btn[aria-expanded="true"] .nm-cat-expand__icon {
    transform: rotate(180deg);
}

.nm-cat-expand__body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.nm-cat-expand__body.nm-cat-expand__body--open {
    max-height: 1000px;
}

.nm-cat-expand__text {
    padding: 0.75rem 0 0.25rem;

    color: #656565;
    font-size: 15px;
    line-height: 1.75;
}

.nm-cat-expand__text p { margin-bottom: 0.5rem; }
.nm-cat-expand__text ul { padding-left: 1.2rem; margin-bottom: 0.5rem; }
.nm-cat-expand__text li { margin-bottom: 0.25rem; position: relative;

    padding-left: 25px;
    line-height: 20px;
    font-size: 15px;
    margin-bottom: 10px;
    

 }

.nm-cat-expand__text li::before {
    content: "✓";
    position: absolute;
    left: 2px;
    top: 2px;
    color: #666;
    font-weight: 600;
    font-size: 18px;
}

.nm-cat-expand__text strong { color: var(--nm-text, #222); }
.nm-filters__cat-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    max-height: 300px;
    overflow-y: auto;
}


/* =========================================================
   PRODUCT CARDS
   ========================================================= */

#products-container .row {
  --bs-gutter-x: 18px;
  --bs-gutter-y: 22px;
}

#products-container .col {
  display: flex;
}

.cola {
  width: 100%;
}

.product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  position: relative;
  padding: 15px 8px 12px;
}

.product-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #e2cfc3;
}

.product-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  min-height: 230px;
  padding: 10px 10px 0;
  border-bottom: 0 !important;
}

.product-media::after {
  display: none !important;
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 190px;
  height: 210px;
  background: transparent !important;
}

.product-image img {
  max-width: 92%;
  max-height: 92%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform .22s ease;
  display: block;
}

.product-card:hover .product-image img {
  transform: scale(1.03);
}

.product-wish {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 4;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,.94) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9b8e86 !important;
  transition: .18s ease;
  box-shadow: none !important;
}

.product-wish:hover, .product-wish.active {
  color: var(--red) !important;
  background: #fff3ec !important;
}

.product-content {
  padding: 12px 16px 18px;
  text-align: center;
  border-top: 1px solid var(--line);
}

.product-rating {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 12px;
}

.product-name {
  margin-bottom: 6px;
  min-height: 50px;
  line-height: 1.32;
  text-align: left;
}

.product-name a {
  color: var(--dark);
  font-size: 16px;
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: -.02em;
  text-decoration: none;
}

.product-name a:hover {
  color: var(--red-dark);
}

.mf-name {
  margin-bottom: 10px;
  min-height: auto;
}

.mf-name a,
.product-brand-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: #746963;
  font-size: 12px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0 9px;
  border-radius: 999px;
  background: #f7f1ec;
  text-decoration: none;
}

.product-price {
  margin-bottom: 0;
  margin-top: auto;
}

.product-price span {
  display: inline-block;
  font-family: var(--font-body) !important;
  line-height: .95;
  letter-spacing: -.06em;
  font-size: 30px !important;
  font-weight: 900 !important;
  color: var(--red-dark) !important;
}

.nm-badge-stack {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}

.nm-badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: #4d433e;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-sm);
  gap: 6px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(80,50,20,.10);
  background: rgba(255,255,255,.92);
}

.nm-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.nm-stock {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: var(--green);
  font-size: 11px;
  line-height: 1;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  gap: 6px;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--green-soft);
}

.nm-stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.nm-variants {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
}

/* =========================================================
   CART / SIDEBARS / MOBILE NAV
   ========================================================= */

.nm-burger {
  display: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: #6f625c;
  flex-direction: column;
  gap: 4px;
  border-radius: 999px;
  background: #fff3ec;
}

.nm-burger span {
  display: block;
  width: 20px;
  height: 3px;
  background: currentColor;
  border-radius: 2px;
  transition: .3s;
}

.nm-mobile-search {
  display: none;
  background: #fff;
  border-bottom: 2px solid var(--red);
  padding: 10px 16px;
  animation: slideDown .2s ease;
}

.nm-mobile-search.open {
  display: flex;
  gap: 8px;
}

.nm-mobile-search input {
  flex: 1;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 14px;
  font-size: 15px;
  font-family: var(--font-body);
  outline: none;
  color: var(--dark);
}

.nm-mobile-search button {
  background: var(--red);
  border: none;
  border-radius: 999px;
  color: #fff;
  padding: 0 16px;
  cursor: pointer;
}

.nm-sidebar-overlay,
.nm-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43,37,34,.45);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.nm-sidebar-overlay.open,
.nm-cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nm-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: #fff;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 30px rgba(80,50,20,.16);
}

.nm-sidebar.open {
  transform: translateX(0);
}

.nm-sidebar-header {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.nm-sidebar-logo {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}

.nm-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nm-sidebar-cat {
  border-bottom: 1px solid var(--line);
}

.nm-sidebar-cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: -.01em;
  color: var(--dark);
  text-align: left;
}

.nm-sidebar-cat-btn:hover,
.nm-sidebar-cat-btn.active {
  background: #fff3ec;
  color: var(--red-dark);
}

.nm-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  z-index: 1500;
  box-shadow: 0 -6px 22px rgba(80,50,20,.10);
}

.nm-bottom-nav-inner {
  display: flex;
  align-items: stretch;
}

.nm-bottom-nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 8px 4px 10px;
  color: #5f544e;
  text-decoration: none;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  cursor: pointer;
  background: none;
  border: none;
  font-family: var(--font-body);
  position: relative;
  transition: color .2s;
}

.nm-bottom-nav-item:hover,
.nm-bottom-nav-item.active,
.nm-bottom-nav-item.nm-cart-item {
  color: var(--red);
}

.nm-sidebar-cat-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentcolor;
    fill: none;
    stroke-width: 2.5;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.nm-sidebar-cat {
  border-bottom: 1px solid #f0f0f0;
}

.nm-sidebar-cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--dark);
  text-align: left;
  transition: background .2s, color .2s;
}

.nm-sidebar-cat-btn:hover {
  background: #fafafa;
  color: var(--red);
}

.nm-sidebar-cat-btn.active {
  color: var(--red);
  background: #fff8f8;
}

.nm-sidebar-cat-btn svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5;
  transition: transform .25s;
  flex-shrink: 0;
}

.nm-sidebar-cat-btn.active svg {
  transform: rotate(180deg);
}

.nm-sidebar-sub {
  display: none;
  background: #fafafa;
  border-top: 1px solid #f0f0f0;
}

.nm-sidebar-sub.open {
  display: block;
}

.nm-sidebar-sub-group {
  padding: 10px 0;
  border-bottom: 1px solid #efefef;
}

.nm-sidebar-sub-group:last-child {
  border-bottom: none;
}

.nm-sidebar-sub-title {
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  padding: 6px 20px 4px;
}

.nm-sidebar-sub a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #444;
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 20px 8px 28px;
  transition: color .15s, background .15s;
}

.nm-sidebar-sub a:hover {
  color: var(--red);
  background: #fff3f3;
}

.nm-sidebar-sub a .nm-hot-tag, .nm-sidebar-sub a .nm-new-tag {
  margin-left: auto;
}

.nm-sidebar-footer {
  padding: 16px 20px;
  background: #f7f7f7;
  border-top: 1px solid #e8e8e8;
  flex-shrink: 0;
}

.nm-sidebar-footer a {
  color: #666;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
}

.nm-sidebar-footer a:hover {
  color: var(--red);
}


.nm-bottom-nav-item:hover, .nm-bottom-nav-item.active {
  color: var(--red);
}

.nm-bottom-nav-item svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.nm-bottom-nav-item .nm-bn-badge {
    text-align: center;
    position: absolute;
    top: 3px;
    left: 50%;
    margin-left: 5px;
    min-height: unset;
    width: 20px;
    height: 20px;
    padding: 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 99px;
    border: 2px solid #fff;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: #fff;
    font-size: 10px;
    line-height: 1;
    font-weight: 800;
    box-shadow: 0 6px 14px rgba(232, 21, 27, .25);
}

.nm-bottom-nav-item.nm-cart-item {
  color: var(--red);
}






.nm-cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 390px;
  max-width: 100vw;
  background: #fff;
  z-index: 2999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -16px 0 50px rgba(80,50,20,.18);
}

.nm-cart-sidebar.open {
  transform: translateX(0);
}

.nm-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  background: #fffaf5;
}

.nm-cart-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: -.02em;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nm-cart-count {
    /* background: var(--red); */
    color: #666;
    font-size: 11px;
    font-weight: 900;
    padding: 2px 8px;
    /* border-radius: 999px; */
    font-family: var(--font-body);
    white-space: nowrap;
}

.nm-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
}

.nm-cart-item-row {
  display: flex;
  gap: 14px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}

.nm-cart-item-row:hover {
  background: var(--soft);
}

.nm-cart-item-img {
  width: 66px;
  height: 66px;
  border-radius: 14px;
  border: 1px solid var(--line);
  flex-shrink: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nm-cart-item-img img {
  max-height: 100%;
  max-width: 100%;
}

.nm-cart-item-name {
  font-size: 13px;
  font-weight: 900;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 4px;
}

.nm-cart-item-price {
  font-size: 17px;
  font-weight: 900;
  color: var(--red-dark);
  font-family: var(--font-body);
  letter-spacing: -.04em;
}

.nm-cart-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  background: var(--soft);
  flex-shrink: 0;
}

.nm-cart-checkout-btn,
.btn-primary,
.product-detail-btn-add-to-cart,
.nm-suggest__all-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  border: 1px solid var(--red);
  border-radius: 999px;
  padding: 14px 20px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 900;
  text-transform: none;
  letter-spacing: -.01em;
  cursor: pointer;
  transition: .18s ease;
  box-shadow: 0 10px 22px rgba(179,58,58,.20);
}

.nm-cart-checkout-btn:hover,
.btn-primary:hover,
.product-detail-btn-add-to-cart:hover,
.nm-suggest__all-btn:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  transform: translateY(-1px);
}

/* =========================================================
   PRODUCT DETAIL
   ========================================================= */

.inner-section-product {
  margin-top: 10px;
  margin-bottom: 0;
}

.inner-section-product .details-content,
.product-basic-info,
.product-details-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 24px;
}

/*.inner-section-product .details-content::before,
.product-basic-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), #d77b6f 55%, rgba(255,255,255,0) 100%);
  z-index: 1;
} */

.product-header {
  margin-bottom: 18px;
}

.details-name {
  font-size: 32px;
  margin-bottom: 10px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.product-rating-stars span {
  color: #f5a623;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
}

.details-short-desc .text-link,
.nm-cat-expand__btn {
  font-size: 14px;
  color: var(--red);
  font-weight: 800;
}

.product-detail-variant-chip.active {
  border-color: var(--red);
  background: var(--red);
  color: white;
}

.product-info-wrapper {
  position: sticky;
  top: 110px;
}

.product-basic-info .info-row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.product-basic-info .info-row:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.product-basic-info .info-label {
  margin: 0;
  color: var(--text-3);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 900;
  letter-spacing: .02em;
}

.product-basic-info .info-value {
  margin: 0;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.55;
  font-weight: 700;
}

.abtn-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fffaf5;
  color: #4b403b !important;
  text-decoration: none !important;
  font-size: 13px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: var(--shadow-sm);
  transition: .18s ease;
}

.abtn-pill:hover {
  background: #fff0e8;
  border-color: #e4c4b6;
  color: var(--red) !important;
  transform: translateY(-1px);
}

.inner-section > .container > .row:first-child .nav.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.inner-section > .container > .row:first-child .nav.nav-tabs li a,
.inner-section > .container > .row:first-child .nav.nav-tabs li .tab-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: #4b403b;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  box-shadow: var(--shadow-sm);
  transition: .18s ease;
}

.inner-section > .container > .row:first-child .nav.nav-tabs li a:hover,
.inner-section > .container > .row:first-child .nav.nav-tabs li .tab-link:hover {
  background: #fff3ec;
  border-color: #e4c4b6;
  color: var(--red-dark);
}

.inner-section > .container > .row:first-child .nav.nav-tabs li a.active,
.inner-section > .container > .row:first-child .nav.nav-tabs li .tab-link.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff !important;
}

/* Feature cards */

.nm-feature-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
  margin-bottom: 18px;
}

.nm-feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 12px 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: .18s ease;
}

.nm-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #e4c4b6;
}

.nm-feature-card > div:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
}

.nm-feature-card__value {
  margin-bottom: 3px;
  color: var(--dark);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
}

.nm-feature-card__label {
  max-width: 140px;
  color: var(--text-2);
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
}

/* =========================================================
   FOOTER / MODAL / PAGINATION
   ========================================================= */

.footer-part {
  margin-top: 52px;
  border-top: 1px solid var(--line);
  background: #fffaf5;
}

.footer-title {
  position: relative;
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--dark);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1;
  font-weight: 900;
  text-transform: none;
  letter-spacing: -.02em;
}

.footer-widget,
.footer-widget h3,
.footer-widget h4,
.footer-links a,
.footer-contact a {
  color: var(--text-2);
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--red);
}

.bottom-paginate {
  padding: 16px 18px;
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.page-info {
  margin: 0;
  color: var(--text-2);
  font-size: 14px;
  font-weight: 700;
}

.modal-content {
  border: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.modal-header,
.modal-footer {
  border-color: var(--line);
}

.list-group-item {
  border-radius: 14px !important;
  margin-bottom: 8px;
  border: 1px solid var(--line);
}

.list-group-item.active {
  background: var(--red);
  border-color: var(--red);
}

/* =========================================================
   UTIL
   ========================================================= */

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

#breadcrumbs .invisible {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.inactive {
  color: #bbb;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1280px) {
  .nm-hero--split {
    grid-template-columns: 1fr 300px;
  }
}

@media (max-width: 1100px) {
  .nm-hslide-prod {
    right: 28px;
    width: 195px;
  }

  .nm-hslide-title {
    font-size: 62px;
  }
}

.nm-hfilter__checks {
    max-height: 270px;
    overflow-y: auto;
    padding: 6px 0;
}

@media (max-width: 991px) {
  .nm-burger {
    display: flex;
  }

  .nm-navbar,
  .nm-goalbar,
  .nm-phone,
  .nm-search,
  .nm-hide-mobile {
    display: none !important;
  }

  .nm-bottom-nav {
    display: block;
  }

  body {
    padding-bottom: 62px;
  }

  .nm-header-inner {
    justify-content: space-between;
    min-height: 55px;
    gap: 4px;
  }

  .nm-search-mobile-btn {
    display: flex !important;
  }

  .nm-hicon .nm-badge {
    top: 9px;
    right: 3px;
  }

  .nm-hicons {
    margin-left: 0;
  }

  .nm-sidebar,
  .nm-sidebar-overlay,
  .nm-mobile-search,
  .nm-bottom-nav,
  .nm-burger,
  .nm-search-mobile-btn {
    /* keep controlled by individual classes */
  }

  .nm-hero--split {
    grid-template-columns: 1fr;
    grid-template-rows: 420px auto;
  }

  .nm-hero--split .nm-hero-slider {
    height: 100%;
    border-radius: 20px;
  }

  .nm-hero--split .nm-hside {
    height: auto;
    flex-direction: row;
    min-height: 150px;
  }

  .nm-hside-block {
    flex: 1;
  }

  .nm-hslide-prod {
    display: none;
  }

  .nm-hslide-inner {
    max-width: 72%;
    padding: 36px 32px 80px;
  }

  .nm-hslide-title {
    font-size: 52px;
  }

  #filters-container,
  .product-info-wrapper {
    position: static;
    top: auto;
  }

  .filter-container {
    margin-bottom: 18px;
  }

  .header-section.browse {
    padding: 20px 18px 18px;
    border-radius: 20px;
  }

  .product-name {
    min-height: auto;
  }

  .product-price span {
    font-size: 23px !important;
  }

  .nm-feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

@media (min-width: 992px) {
  .nm-sidebar,
  .nm-sidebar-overlay,
  .nm-mobile-search,
  .nm-bottom-nav,
  .nm-burger,
  .nm-search-mobile-btn {
    display: none !important;
  }
}

@media (max-width: 767.98px) {
  #breadcrumbs.breadcrumbs {
    padding-top: 10px !important;
    padding-bottom: 8px !important;
  }

  .inner-section.shop-part {
    padding-top: 2px !important;
    padding-bottom: 24px !important;
  }

  .header-section.browse {
    padding: 16px 14px;
    border-radius: 18px;
    margin-bottom: 14px;
  }

  .browse-header,
  h1.browse-header {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .browse-description {
    font-size: 14px;
  }

  .product-media {
    min-height: 180px;
    padding: 10px 10px 0;
  }

  .product-image {
    height: 150px;
    min-height: 150px;
  }

  .product-content {
    padding: 12px 12px 14px;
  }

  .product-name a {
    font-size: 14px;
  }

  .product-price span {
    font-size: 21px !important;
  }

  .nm-hfilter__btn {
    min-height: 35px;
    padding: 0 16px;
  }

  .nm-hfilter__panel {
position: fixed;
        bottom: auto;
        left: 0;
        right: 0;
        top: 0;
        max-width: 100%;
        border-radius: 18px 18px 0 0;
        max-height: 100vh;
        overflow-y: auto;
        z-index: 10000;
  }

.nm-hfilter__checks {
    max-height: 100vh;
    overflow-y: auto;
    padding: 6px 0;
}
  .nm-logo {
    padding: 5px 0;
    max-width: 160px;
  }

  .nm-hero--split {
    grid-template-rows: 360px auto;
  }

  .nm-hero--split .nm-hside {
    flex-direction: column;
    min-height: 0;
  }

  .nm-hside-block {
    min-height: 160px;
  }

  .nm-hslide-inner {
    max-width: 92%;
    padding: 26px 22px 68px;
  }

  .nm-hslide-title {
    font-size: 40px;
  }

  .nm-hslide-desc {
    font-size: 14px;
    max-width: 100%;
  }

  .nm-hero-dots {
    left: 22px;
    bottom: 18px;
  }

  .nm-hero-arrows {
    right: 12px;
    bottom: 14px;
  }
}

@media (max-width: 575.98px) {
  .nm-logo-sub,
  .nm-topbar-dots,
  .nm-hicon-label {
    display: none;
  }

  .nm-logo-text {
    font-size: 22px;
  }

  .nm-hero-card,
  .product-details-frame,
  .product-basic-info,
  .inner-section-product .details-content {
    padding: 16px;
    border-radius: 18px;
  }

  .nm-hero-h2 {
    font-size: 34px;
  }

  .nm-feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nm-feature-card {
    min-height: 108px;
    border-radius: 16px;
  }

  .nm-feature-card__value {
    font-size: 22px;
  }

  .nm-feature-card__label {
    font-size: 12px;
  }

  .product-basic-info .info-row {
    grid-template-columns: 1fr;
    gap: 5px;
    padding: 11px 0;
  }

  .abtn-pill {
    min-height: 34px;
    padding: 0 11px;
    font-size: 12px;
  }
}

@media (max-width: 420px) {
  .nm-cart-sidebar {
    width: 100vw;
  }
}



/* =========================================================
   FAJNKOS v2 – jemnější produkční doladění
   Cíl: držet brand červenou, ale nejet Namakanej dark/fitness styl.
   ========================================================= */

/* trochu čistší font feel */
:root {
  --red: #c52b2f;
  --red-dark: #a72025;
  --red-soft: #fff1ef;

  --bg: #fbf7f3;
  --soft: #fffaf6;
  --line: #eee2da;

  --dark: #262626;
  --text: #262626;
  --text-2: #68605b;
  --text-3: #9a8f88;

  --shadow-sm: 0 5px 16px rgba(88, 58, 32, .045);
  --shadow-md: 0 12px 28px rgba(88, 58, 32, .07);
  --shadow-lg: 0 22px 48px rgba(88, 58, 32, .11);
}

/* méně růžové, víc čisté */
body {
  background:
    radial-gradient(circle at top center, rgba(197,43,47,.035), transparent 360px),
    linear-gradient(to bottom, #fff 0%, #fbf7f3 360px, #f8f3ef 100%);
}

/* header méně vysoký, víc e-shop */
.nm-header-inner {
  gap: 16px;
}

.nm-logo {
  padding: 13px 0;
  max-width: 190px;
}

.nm-logo img {
  filter: drop-shadow(0 1px 4px rgba(97, 43, 47, .3))
}

/* červená jen jako akcent */
.nm-search-btn,
.nm-nav-link-all,
.nm-hslide-btn--primary,
.nm-sales-btn-primary,
.nm-cart-checkout-btn,
.btn-primary,
.product-detail-btn-add-to-cart,
.nm-suggest__all-btn,
.nm-hslide-prod-btn, 

.form-button button


{
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  border-color: var(--red);
  box-shadow: 0 10px 22px rgba(197,43,47,.18);
}

.nm-search-btn:hover,
.nm-nav-item:hover .nm-nav-link-all,
.nm-hslide-btn--primary:hover,
.nm-sales-btn-primary:hover,
.nm-cart-checkout-btn:hover,
.btn-primary:hover,
.product-detail-btn-add-to-cart:hover,
.nm-suggest__all-btn:hover,
.nm-hslide-prod-btn:hover,
.form-button button:hover
 {
  background: linear-gradient(180deg, #b9282c, #8f1d21);
  border-color: var(--red-dark);
}

/* search víc jako na mockupu */
.nm-search {
  height: 46px;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
}

.nm-search input {
  font-size: 15px;
}

/* navigace: červený jen Produkty, ostatní neutrální */
.nm-navbar {

}

.nm-nav-link {
  color: #262626;
}

.nm-nav-item:hover > .nm-nav-link:not(.nm-nav-link-all) {
  background: #f4eee9;
  color: #222;
}

/* kategorie/filtry v levém panelu: klidnější */
.filter-container,
.nm-filters {
  background: rgba(255,255,255,.92);
  border-radius: 18px;
}

.nm-filters__cat-item--active,
.filter-ajax-link.d-block.active,
.subcategories-list a.active {
  background: #f2ebe5;
  color: #262626 !important;
  border-left-color: transparent;
}

/* aktivní chip ne vždy červený */
.sort-tabs .nav-link.active,
.nm-filters__price-chip--active,
.browse-subcat-chip.active {
    background: none !important;
    border-color: var(--red) !important;
    color: var(--red) !important;
    box-shadow: none !important;
}

/* filter tlačítka jako v ukázce */
.nm-hfilter {
  border-color: rgba(238,226,218,.8);
}
.nm-hfilter i {
	font-size: 0.9em;
	margin: 0 5px;
}

.nm-hfilter__btn,
.sort-tabs .nav-link,
.nm-filters__price-chip,
.browse-subcat-chip {
  min-height: 40px;
  padding: 0 17px;
  margin-bottom: 5px;
  background: rgba(255,255,255,.92) ;
}

.nm-hfilter__btn:hover,
.sort-tabs .nav-link:hover,
.nm-filters__price-chip:hover,
.browse-subcat-chip:hover {
  background: #fff !important;
  color: #222 !important;
  border-color: #ddd1c8 !important;
}

.nm-hfilter__btn--active .nm-hfilter__badge {
    background: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.nm-hfilter__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 17px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .28);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    min-width: 17px;
    padding: 0 4px;
}


/* product cards – víc čistota, míň barevnosti */
.product-card {
  border-radius: 20px;
  padding: 12px 8px 14px;
  background: rgba(255,255,255,.96);
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-media {
  min-height: 200px;
  padding: 0;
}

.product-image {
  height: 195px;
}

.product-content {
  border-top: none;
    padding: 14px 5px 0px;
}

.product-name a {
  font-size: 16px;
  font-weight: 800;
  color: #262626;
}

.product-price span {
  color: var(--red-dark) !important;
  font-size: 30px !important;
}

/* tlačítko do košíku na kartě – pokud máš / přidáš .product-add */
.product-add,
.product-card .btn-primary,
.product-card button[type="submit"],
.product-card .add-to-cart,
.product-card .product-detail-btn-add-to-cart {
  width: 100%;
  min-height: 44px;
  margin-top: 12px;
  border-radius: 999px;
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  border: 1px solid var(--red);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(197,43,47,.16);
}

.product-add:hover,
.product-card .btn-primary:hover,
.product-card button[type="submit"]:hover,
.product-card .add-to-cart:hover,
.product-card .product-detail-btn-add-to-cart:hover {
  background: linear-gradient(180deg, #b9282c, #8f1d21);
  color: #fff;
}

/* zelená jen sklad, ne další prvky */
.product-rating,
.nm-stock {
  background: #eaf7ef;
  color: #2f8c55;
}

.mf-name a,
.product-brand-badge {
  background: #f3eee9;
  color: #6f625b;
}

/* nadpisy – ne kondenzované, ne fitness */
.nm-section-title,
.browse-header,
h1.browse-header,
.details-frame-title,
.frame-title,
.details-name {
  letter-spacing: -.045em;
  font-weight: 900;
  color: #262626;
}

/* hero/card sekce a search result header */
.header-section.browse {
  background: rgba(255,255,255,.88);
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(88,58,32,.055);
}

/* footer neutral */
.footer-part {
  background: #fbf7f3;
}

/* mobil */
@media (max-width: 767.98px) {
  .nm-logo {
    max-width: 150px;
  }

  .product-media {
    min-height: 190px;
  }

  .product-image {
    height: 160px;
  }

  .product-price span {
    font-size: 24px !important;
  }
}

.country-switch .switch-options {
  display: flex;
  gap: 4px;
  background: #f5f3f1;
  padding: 3px;
  border-radius: 8px;
  width: fit-content;
}

.country-switch .switch-option {
  padding: 4px 10px;
  border-radius: 6px;
  background: transparent;
  color: #777;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* hover */
.country-switch .switch-option:hover {
  background: #ebe7e4;
  color: #333;
}

/* active */
.country-switch .switch-option.active {
  background: #fff;
  color: #c62828;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.nm-col-icon
 {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    stroke: var(--red);
}

.nm-mega-col ul li a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid #333;
    border-top: 1.5px solid #333;
    transform: rotate(45deg);
    flex-shrink: 0;
    margin-left: auto;
    opacity: 0.4;
}

.nm-mega-col ul li a {
    display: flex;
    justify-content: space-between;
}

/* =========================================================
   CHECKOUT + ADD TO CART DIALOG – FajnKoš
   Portováno z Namakanej, přebarveno na červenou paletu.
   ========================================================= */

/* ── CHECKOUT LAYOUT ────────────────────── */

.nm-checkout-section {
  background: var(--bg);
  min-height: 70vh;
  padding: 28px 0 60px;
}

.nm-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* ── HEADER ─────────────────────────────── */

.nm-co-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}

.nm-co-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-3);
}

.nm-co-title {
  font-family: var(--font-body);
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--dark);
  margin: 0;
  line-height: 1;
  letter-spacing: -.04em;
}

.nm-co-subtitle {
  font-size: .82rem;
  color: var(--text-3);
  margin: 4px 0 0;
}

.nm-co-continue-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-size: .84rem;
  font-weight: 700;
  color: var(--text-2);
  text-decoration: none;
  transition: .18s ease;
  box-shadow: var(--shadow-sm);
}

.nm-co-continue-btn:hover {
  border-color: #ddd1c8;
  color: var(--dark);
  text-decoration: none;
  background: var(--soft);
}

/* Guest bar */

.nm-co-guest-bar {
  background: var(--red-soft);
  border: 1px solid rgba(197,43,47,.18);
  border-radius: 14px;
  padding: 12px 16px;
  font-size: .84rem;
  color: var(--text-2);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nm-co-guest-bar a { color: var(--red); font-weight: 800; text-decoration: none; }
.nm-co-guest-bar a:hover { text-decoration: underline; }

/* Empty */

.nm-co-empty {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 60px 40px;
  text-align: center;
  color: var(--text-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
}

.nm-co-empty p { font-size: 1rem; color: var(--text-3); }

.nm-co-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  color: #fff;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid var(--red);
  box-shadow: 0 10px 22px rgba(197,43,47,.18);
  transition: .18s ease;
}

.nm-co-btn-primary:hover {
  background: linear-gradient(180deg, #b9282c, #8f1d21);
  color: #fff;
  transform: translateY(-1px);
}

/* ── POLOŽKY ─────────────────────────────── */

.nm-co-items {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
}

.nm-co-item {
  display: grid;
  grid-template-columns: 96px 1fr auto auto auto;
  gap: 0 16px;
  align-items: center;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}

.nm-co-item:last-child { border-bottom: none; }
.nm-co-item:hover { background: var(--soft); }

.nm-co-item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: #f9f5f1;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid var(--line);
}

.nm-co-item-img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

.nm-co-item-brand {
  display: block;
  font-size: .7rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  margin-bottom: 4px;
}

.nm-co-item-name {
  display: block;
  font-size: .95rem;
  font-weight: 900;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 4px;
  transition: color .15s;
}

.nm-co-item-name:hover { color: var(--red); }

.nm-co-item-variant {
  display: block;
  font-size: .78rem;
  color: var(--text-3);
  margin-bottom: 6px;
}

.nm-co-item-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 900;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nm-co-item-price-mob { display: none; }

/* Množství */

.nm-qty-form {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
  width: fit-content;
  box-shadow: var(--shadow-sm);
}

.nm-qty-btn {
  width: 34px;
  height: 38px;
  background: #f5efe9;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: .15s;
}

.nm-qty-btn:hover { background: #eee4da; color: var(--dark); }

.nm-qty-input {
  width: 44px;
  height: 38px;
  border: none;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  text-align: center;
  font-size: .9rem;
  font-weight: 900;
  color: var(--dark);
  background: #fff;
  outline: none;
  -moz-appearance: textfield;
}

.nm-qty-input::-webkit-inner-spin-button,
.nm-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.nm-co-item-unit-label {
  display: block;
  font-size: .72rem;
  color: var(--text-3);
  margin-top: 4px;
  text-align: center;
}

/* Cena desktop */

.nm-co-item-price-desk {
  text-align: right;
  min-width: 90px;
}

.nm-co-item-total {
  display: block;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--red-dark);
  font-family: var(--font-body);
  letter-spacing: -.04em;
}

.nm-co-item-unit {
  display: block;
  font-size: .75rem;
  color: var(--text-3);
  margin-top: 2px;
}

.nm-co-item-saving {
  display: block;
  font-size: .72rem;
  color: var(--red);
  font-weight: 800;
  margin-top: 3px;
}

/* Odebrat */

.nm-co-item-remove {
  background: none;
  border: none;
  color: var(--line);
  cursor: pointer;
  padding: 6px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .15s;
}

.nm-co-item-remove:hover { color: var(--red); background: var(--red-soft); }

/* ── SIDEBAR ─────────────────────────────── */

.nm-checkout-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Doprava zdarma */

.nm-cos-shipping-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.nm-cos-ship-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.nm-cos-ship-label {
  font-size: .78rem;
  color: var(--text-3);
  margin: 0 0 4px;
  font-weight: 700;
}

.nm-cos-ship-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--red-dark);
  font-family: var(--font-body);
  margin: 0;
  line-height: 1;
  letter-spacing: -.04em;
}

.nm-cos-ship-free { color: var(--green); font-size: 1rem; font-weight: 900; }

.nm-cos-ship-bar {
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 6px;
}

.nm-cos-ship-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #e07070);
  border-radius: 999px;
  transition: width .5s ease;
}

.nm-cos-ship-limits {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: var(--text-3);
}

/* Doporučené produkty */

.nm-cos-recommend {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.nm-cos-rec-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid var(--line);
}

.nm-cos-rec-header strong {
  display: block;
  font-size: .88rem;
  color: var(--dark);
  font-weight: 900;
}

.nm-cos-rec-sub {
  font-size: .74rem;
  color: var(--text-3);
}

.nm-cos-rec-list {
  display: flex;
  flex-direction: column;
}

.nm-cos-rec-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  transition: background .12s;
}

.nm-cos-rec-row:last-child { border-bottom: none; }
.nm-cos-rec-row:hover { background: var(--soft); }

.nm-cos-rec-row-img {
  width: 48px;
  height: 48px;
  background: #f9f5f1;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}

.nm-cos-rec-row-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.nm-cos-rec-row-info { flex: 1; min-width: 0; }

.nm-cos-rec-name {
  display: block;
  font-size: .8rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .15s;
}

.nm-cos-rec-name:hover { color: var(--red); }

.nm-cos-rec-variant-hint {
  display: block;
  font-size: .7rem;
  color: var(--text-3);
}

.nm-cos-rec-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}

.nm-cos-rec-price {
  font-size: .9rem;
  font-weight: 900;
  color: var(--red-dark);
  font-family: var(--font-body);
  letter-spacing: -.03em;
}

.nm-cos-rec-add {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 12px;
  background: #f5efe9;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 900;
  color: var(--dark);
  cursor: pointer;
  font-family: var(--font-body);
  transition: .15s;
  white-space: nowrap;
}

.nm-cos-rec-add:hover {
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  border-color: var(--red);
  color: #fff;
  box-shadow: 0 6px 14px rgba(197,43,47,.18);
}

/* Kupón */

.nm-cos-coupon {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.nm-cos-coupon-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  background: none;
  border: none;
  font-size: .84rem;
  font-weight: 800;
  color: var(--red);
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
}

.nm-cos-coupon-form { display: none; padding: 0 14px 14px; }
.nm-cos-coupon-form.open { display: block; }

.nm-cos-coupon-input {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.nm-cos-coupon-input input {
  flex: 1;
  border: none;
  padding: 10px 16px;
  font-size: .84rem;
  font-family: var(--font-body);
  color: var(--dark);
  outline: none;
  background: transparent;
}

.nm-cos-coupon-input button {
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  border: none;
  color: #fff;
  padding: 10px 18px;
  font-size: .84rem;
  font-weight: 900;
  cursor: pointer;
  font-family: var(--font-body);
  transition: .15s;
  white-space: nowrap;
  border-radius: 0 999px 999px 0;
}

.nm-cos-coupon-input button:hover { background: linear-gradient(180deg, #b9282c, #8f1d21); }

.nm-cos-coupon-applied {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 700;
}

.nm-cos-coupon-remove { color: var(--text-3); margin-left: auto; text-decoration: none; }
.nm-cos-coupon-remove:hover { color: var(--red); }

/* Souhrn */

.nm-cos-summary {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}

.nm-cos-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
  color: var(--text-2);
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
}

.nm-cos-sum-row:first-child { padding-top: 0; }

.nm-cos-sum-val { font-weight: 800; color: var(--dark); }
.nm-cos-sum-discount { color: var(--red); font-weight: 800; }

.nm-cos-sum-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0 4px;
  font-size: .84rem;
  font-weight: 900;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nm-cos-sum-total-val {
  font-size: 1.7rem;
  font-family: var(--font-body);
  color: var(--red-dark);
  line-height: 1;
  letter-spacing: -.04em;
  font-weight: 900;
}

.nm-cos-sum-vat {
  font-size: .72rem;
  color: var(--text-3);
  margin: 0 0 16px;
}

.nm-cos-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  color: #fff;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid var(--red);
  box-shadow: 0 10px 22px rgba(197,43,47,.20);
  transition: .18s ease;
  margin-bottom: 14px;
  font-family: var(--font-body);
}

.nm-cos-checkout-btn:hover {
  background: linear-gradient(180deg, #b9282c, #8f1d21);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(197,43,47,.26);
}

/* Platební ikony */

.nm-cos-payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-wrap: wrap;
}

.nm-cos-payments .nm-pay-icon {
  height: 22px;
  width: auto;
  background: #f5f0ec;
  border-radius: 4px;
  padding: 2px 5px;
  border: 1px solid var(--line);
}

.nm-cos-pay-more {
  font-size: .72rem;
  color: var(--text-3);
}

/* ── RESPONSIVE ─────────────────────────── */

@media (max-width: 992px) {
  .nm-checkout-layout {
    grid-template-columns: 1fr;
  }

  .nm-checkout-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .nm-co-item {
    grid-template-columns: 72px 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 12px;
  }

  .nm-co-item-img {
    width: 72px;
    height: 72px;
    grid-row: 1 / 3;
  }

  .nm-co-item-info { grid-column: 2; grid-row: 1; }
  .nm-co-item-remove { grid-column: 3; grid-row: 1; align-self: start; }
  .nm-co-item-price-mob { display: block; grid-column: 2; grid-row: 2; }
  .nm-co-item-price-desk { display: none; }
  .nm-co-item > .nm-co-item-qty { grid-column: 3; grid-row: 2; }

  .nm-co-title { font-size: 1.4rem; }
}


/* =========================================================
   ADD TO CART DIALOG – FajnKoš
   ========================================================= */

.nm-cart-dialog {
  position: relative;
  padding: 24px;
  color: var(--text);
  font-family: var(--font-body);
}

.nm-cd-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  cursor: pointer; color: var(--text-3);
  opacity: .6; transition: opacity .15s;
}

.nm-cd-close:hover { opacity: 1; }

/* Header */

.nm-cd-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.nm-cd-check {
  width: 44px; height: 44px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.nm-cd-title { font-size: 1.2rem; font-weight: 900; line-height: 1.2; color: var(--dark); letter-spacing: -.02em; }
.nm-cd-subtitle { font-size: 1.2rem; font-weight: 900; color: var(--red); letter-spacing: -.02em; }

.nm-cd-shipping {
  margin-left: auto;
  margin-right: 30px;
  text-align: right;
  min-width: 260px;
}

.nm-cd-shipping-text { font-size: .82rem; margin-bottom: 6px; color: var(--text-2); }
.nm-cd-shipping-free { color: var(--red); font-weight: 900; }

.nm-cd-progress {
  position: relative;
  height: 6px;
  background: var(--line);
  border-radius: 999px;
  overflow: visible;
}

.nm-cd-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #e07070);
  border-radius: 999px;
  transition: width .4s;
}

.nm-cd-progress-icon {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  color: var(--red);
}

/* Warning */

.nm-cd-warning {
  background: var(--red-soft);
  border: 1px solid rgba(197,43,47,.25);
  color: var(--red-dark);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 16px;
  font-size: .85rem;
  font-weight: 700;
}

/* Product row */

.nm-cd-product {
  display: flex; gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 16px;
}

.nm-cd-product-img { flex-shrink: 0; }
.nm-cd-img { width: 72px; height: 72px; object-fit: contain; border-radius: 10px; }

.nm-cd-product-name { font-weight: 900; margin-bottom: 6px; color: var(--dark); font-size: .95rem; }
.nm-cd-variant { font-weight: 600; color: var(--text-3); }
.nm-cd-product-meta { font-size: .82rem; color: var(--text-3); display: flex; gap: 8px; flex-wrap: wrap; }
.nm-cd-sep { opacity: .4; }
.nm-cd-price { color: var(--red-dark); font-weight: 900; }

/* Summary */

.nm-cd-summary {
  display: flex; gap: 12px;
  margin-bottom: 20px;
}

.nm-cd-sum-item {
  flex: 1;
  display: flex; gap: 10px; align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
}

.nm-cd-sum-label { font-size: .75rem; color: var(--text-3); font-weight: 700; }
.nm-cd-sum-value { font-size: 1.1rem; font-weight: 900; color: var(--dark); letter-spacing: -.03em; }

/* Buttons */

.nm-cd-actions {
  display: flex; gap: 10px;
  margin-bottom: 24px;
}

.nm-cd-btn-continue {
  flex: 1; padding: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  color: var(--text-2);
  font-weight: 800;
  font-family: var(--font-body);
  transition: .15s;
  background: #fff;
}

.nm-cd-btn-continue:hover { background: var(--soft); color: var(--dark); border-color: #ddd1c8; }

.nm-cd-btn-checkout {
  flex: 1; padding: 12px;
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  color: #fff;
  border-radius: 999px;
  border: 1px solid var(--red);
  text-align: center;
  text-decoration: none;
  font-weight: 900;
  font-family: var(--font-body);
  display: flex;
  align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 8px 18px rgba(197,43,47,.18);
  transition: .15s;
}

.nm-cd-btn-checkout:hover {
  background: linear-gradient(180deg, #b9282c, #8f1d21);
  color: #fff;
  transform: translateY(-1px);
}

/* Related products */

.nm-cd-related { margin-bottom: 24px; }
.nm-cd-related-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 4px; }
.nm-cd-related-title { font-weight: 900; font-size: .95rem; color: var(--dark); letter-spacing: -.02em; }
.nm-cd-related-more { font-size: .82rem; color: var(--text-3); text-decoration: none; }
.nm-cd-related-more:hover { color: var(--red); }
.nm-cd-related-sub { font-size: .78rem; color: var(--text-3); margin-bottom: 12px; }

.nm-cd-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.nm-cd-rp { border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: #fff; transition: .18s ease; }
.nm-cd-rp:hover { border-color: #ddd1c8; box-shadow: var(--shadow-sm); }

.nm-cd-rp-img-wrap { display: block; position: relative; padding: 8px; background: #f9f5f1; text-align: center; }
.nm-cd-rp-img { aspect-ratio: 1; object-fit: contain; }

.nm-cd-rp-badge {
  position: absolute; top: 6px; left: 6px;
  font-size: .65rem; font-weight: 900;
  padding: 2px 8px; border-radius: 999px;
}

.nm-badge-action { background: var(--red); color: #fff; }
.nm-badge-best { background: #e07030; color: #fff; }

.nm-cd-rp-body { padding: 8px 10px 10px; }
.nm-cd-rp-name { display: block; font-size: .78rem; font-weight: 800; color: var(--dark); text-decoration: none; margin-bottom: 2px; line-height: 1.3; }
.nm-cd-rp-name:hover { color: var(--red); }
.nm-cd-rp-size { font-size: .72rem; color: var(--text-3); margin-bottom: 4px; }
.nm-cd-rp-stars { font-size: .75rem; margin-bottom: 4px; }
.nm-star-on { color: #f59e0b; }
.nm-star-off { color: var(--line); }
.nm-cd-rp-orig { font-size: .72rem; color: var(--text-3); text-decoration: line-through; }
.nm-cd-rp-price { font-weight: 900; font-size: .9rem; color: var(--red-dark); margin-bottom: 8px; letter-spacing: -.03em; font-family: var(--font-body); }

.nm-cd-rp-add {
  width: 100%; padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f5efe9;
  cursor: pointer;
  font-size: .78rem;
  font-weight: 900;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  font-family: var(--font-body);
  color: var(--dark);
  transition: .15s;
}

.nm-cd-rp-add:hover {
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 6px 14px rgba(197,43,47,.18);
}

/* Trust */

.nm-cd-trust {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.nm-cd-trust-item { display: flex; gap: 8px; align-items: flex-start; }
.nm-cd-trust-item svg { flex-shrink: 0; margin-top: 2px; stroke: var(--red); }
.nm-cd-trust-item strong { display: block; font-size: .78rem; color: var(--dark); font-weight: 900; }
.nm-cd-trust-item small { font-size: .72rem; color: var(--text-3); }

/* ── MOBIL dialog ────────────────────────── */

@media (max-width: 767px) {
  .nm-cart-dialog { padding: 16px 14px 24px; }

  .nm-cd-header { flex-wrap: wrap; }
  .nm-cd-shipping { margin-left: 0; min-width: 100%; text-align: left; }
  .nm-cd-related-grid { grid-template-columns: repeat(2, 1fr); }
  .nm-cd-trust { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .nm-cd-actions { flex-direction: column-reverse; }
  .nm-cd-summary { flex-direction: row; }
  .nm-cd-sum-item { padding: 10px 12px; }
  .nm-cd-sum-value { font-size: .95rem; }

  #addToCartDialog .modal-dialog {
    margin: 0;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    max-width: 100%;
    transform: none !important;
  }

  #addToCartDialog .modal-content {
    border-radius: 20px 20px 0 0;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nm-cd-product {
    flex-direction: row;
    align-items: flex-start;
    flex-wrap: nowrap;
  }

  .nm-cd-product-img { flex-shrink: 0; width: 80px; min-width: 80px; }
  .nm-cd-img { width: 80px; height: 80px; }
  .nm-cd-product-info { flex: 1; min-width: 0; }
  .nm-cd-product-name { word-break: break-word; }
  .nm-cd-product-meta { flex-direction: column; gap: 2px; }
  .nm-cd-sep { display: none; }
}



/* ── CART DIALOG – šířka modalu ── */
#addToCartDialog .modal-dialog {
  max-width: 860px;

}

#addToCartDialog .modal-content {
  border-radius: 20px;
  border: 0;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.nm-cd-rp-img-wrap {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nm-cd-rp-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: 140px;
}

/* =========================================================
   SIDEBAR CART – FajnKoš
   ========================================================= */

.nm-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(43,37,34,.45);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.nm-cart-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nm-cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 390px;
  max-width: 100vw;
  background: #fff;
  z-index: 2999;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -16px 0 50px rgba(80,50,20,.18);
}

.nm-cart-sidebar.open {
  transform: translateX(0);
}

/* Header */

.nm-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
  background: var(--soft);
}

.nm-cart-title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 900;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -.02em;
}

.nm-cart-title svg {
  stroke: var(--red);
}

.nm-cart-count {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 2px 9px;
  border-radius: 999px;
}

.nm-cart-close {
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .15s;
}

.nm-cart-close:hover {
  background: var(--red-soft);
  color: var(--red-dark);
}

/* Items */

.nm-cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 4px 0;
}

.nm-cart-items::-webkit-scrollbar { width: 4px; }
.nm-cart-items::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }

.nm-cart-item-row {
  display: flex;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
  transition: background .15s;
}

.nm-cart-item-row:hover { background: var(--soft); }
.nm-cart-item-row:last-child { border-bottom: none; }

.nm-cart-item-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  border: 1px solid var(--line);
  flex-shrink: 0;
  background: #f9f5f1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nm-cart-item-img img {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
}

.nm-cart-item-info {
  flex: 1;
  min-width: 0;
}

.nm-cart-item-name {
  font-size: 13px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 3px;
}

.nm-cart-item-name a {
  color: var(--dark);
  text-decoration: none;
  transition: color .15s;
}

.nm-cart-item-name a:hover { color: var(--red); }

.nm-cart-item-variant {
  font-size: 12px;
  color: var(--text-3);
  margin-bottom: 8px;
}

.nm-cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

/* Qty – sdíleno s checkoutem (.nm-qty-form/.nm-qty-btn/.nm-qty-input) */

.nm-cart-item-bottom .nm-qty-form {
  border-radius: 999px;
}

.nm-cart-item-bottom .nm-qty-btn {
  width: 28px;
  height: 30px;
  font-size: 14px;
}

.nm-cart-item-bottom .nm-qty-input {
  width: 36px;
  height: 30px;
  font-size: .82rem;
}

.nm-cart-item-price {
  font-size: 16px;
  font-weight: 900;
  color: var(--red-dark);
  font-family: var(--font-body);
  letter-spacing: -.03em;
  white-space: nowrap;
}

.nm-cart-item-remove {
  background: none;
  border: none;
  color: var(--text-3);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 999px;
  flex-shrink: 0;
  text-decoration: none;
  transition: .15s;
  align-self: flex-start;
  margin-top: 2px;
}

.nm-cart-item-remove:hover {
  color: var(--red);
  background: var(--red-soft);
}

/* Empty */

.nm-cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 60px 20px;
  text-align: center;
  color: var(--text-3);
  font-size: .9rem;
  font-weight: 700;
}

.nm-cart-empty svg {
  stroke: var(--line);
}

/* Footer */

.nm-cart-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--line);
  background: var(--soft);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Free shipping bar */

.nm-cart-free-bar {
  font-size: .78rem;
  color: var(--text-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
  line-height: 1.5;
}

.nm-cart-free-bar span {
  color: var(--red);
  font-weight: 900;
}

.nm-cart-free-bar--ok {
  background: var(--green-soft);
  border-color: rgba(60,143,90,.2);
  color: var(--green);
}

.nm-cart-free-bar--ok span {
  color: var(--green);
  font-weight: 900;
}

.nm-shipping-bar {
  height: 5px;
  background: var(--line);
  border-radius: 999px;
  margin-top: 8px;
  overflow: hidden;
}

.nm-shipping-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--red), #e07070);
  border-radius: 999px;
  transition: width .4s ease;
}

/* Total */

.nm-cart-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: .9rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.02em;
}

.nm-cart-total span:last-child {
  font-size: 1.4rem;
  color: var(--red-dark);
  font-family: var(--font-body);
  letter-spacing: -.04em;
}

/* Buttons */

.nm-cart-checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px;
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  color: #fff;
  border: 1px solid var(--red);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  transition: .18s ease;
  box-shadow: 0 10px 22px rgba(197,43,47,.18);
}

.nm-cart-checkout-btn:hover {
  background: linear-gradient(180deg, #b9282c, #8f1d21);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(197,43,47,.24);
}

.nm-cart-continue {
  background: none;
  border: 1px solid var(--line);
  color: var(--text-2);
  border-radius: 999px;
  padding: 10px;
  font-size: .82rem;
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  text-align: center;
  transition: .15s;
}

.nm-cart-continue:hover {
  color: var(--dark);
  border-color: #ddd1c8;
  background: var(--soft);
}

@media (max-width: 420px) {
  .nm-cart-sidebar { width: 100vw; }
}


/* =========================================================
   FAJNKOS – TITULKA (index.php)
   Všechny třídy mají prefix fk- aby nekonflikovaly
   ========================================================= */

/* ── HERO SLIDER ──────────────────────── */
/* ── HERO SLIDER ──────────────────────── */

.fk-hero {
  position: relative;
  padding: 16px 0 0;
  

  
}

.fk-hero-prog {
  position: absolute;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--red, #c52b2f);
  
  z-index: 10;
  transition: width .1s linear;

}

.fk-hero-track {
  position: relative;
  width: 100%;
  height: 520px;
  border-radius: 20px;
  overflow: hidden;
  background: #1e1510;
  background: #DDB487;
  box-shadow: var(--shadow-md);
}

@media (max-width: 991px) {
  .fk-hero-track { height: 55vw; min-height: 320px; max-height: 480px; }
}
@media (max-width: 575px) {
  .fk-hero-track { height: 70vw; min-height: 260px; max-height: 380px; }
}

.fk-hslide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .7s ease;

/*background:
  linear-gradient(to right,
    rgba(222, 180, 135, 1.0) 0%,
    rgba(222, 180, 135, .75) 36%,
    rgba(222, 180, 135, .58) 50%,
    transparent 80%
  ),
  var(--slide-bg) right / auto 100% no-repeat; */

/* 1. TEPLÁ CREAM – za mě první volba */
/* 2. SVĚTLEJŠÍ CHAMPAGNE – čistší, premium */
/* 4. WARM WHITE – nejčistší, moderní e-shop */
background:
  linear-gradient(to right,
    rgba(247, 241, 232, .92) 0%,
    rgba(247, 241, 232, .74) 26%,
    rgba(247, 241, 232, .48) 40%,
    transparent 72%
  ),
  var(--slide-bg) right / auto 100% no-repeat;
}

.fk-hslide.active {
  opacity: 1;
  pointer-events: auto;
}

.fk-hslide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 750px;
  display: flex;
  flex-direction: column;
  justify-content: center;
 /* padding: 48px 0 72px 52px;*/
  padding-left: 80px;
}

@media (max-width: 991px) {
  .fk-hslide-content { padding: 36px 0 64px 36px; max-width: 460px; }
}
@media (max-width: 575px) {
  .fk-hslide-content { padding: 28px 20px 56px; max-width: 100%; }
}

.fk-hslide-kicker {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 5px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.5);
/*  color: rgba(255,255,255,.9);*/
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 36px;
  backdrop-filter: blur(6px);
  width: fit-content;
}

.fk-hslide-title {
  font-family: var(--font-body, 'Nunito Sans', sans-serif);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.04em;
  color: #262626;
  margin: 0 0 16px;
  text-transform: none;
}
/*
.fk-hslide-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -.04em;
  color: #262626;
  margin: 0 0 16px;
  text-transform: none;
}
*/
.fk-hslide-title em {
  font-style: normal;
  color: var(--red, #c52b2f);
}

.fk-hslide-desc {
  font-size: 15px;
  line-height: 1.65;
  color: #262626;
  margin: 0 0 28px;
  max-width: 600px;
}

.fk-hslide-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons */

.fk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--font-body, 'Nunito Sans', sans-serif);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: .18s ease;
}

.fk-btn--primary {
  background: linear-gradient(180deg, #cf3236, var(--red-dark, #a72025));
  color: #fff;
  box-shadow: 0 10px 22px rgba(197,43,47,.28);
  border: 1px solid var(--red, #c52b2f);
}

.fk-btn--primary:hover {
  background: linear-gradient(180deg, #b9282c, #8f1d21);
  color: #fff;
  transform: translateY(-1px);
}

.fk-btn--ghost {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  backdrop-filter: blur(6px);
}

.fk-btn--ghost:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
  transform: translateY(-1px);
}

/* Dots */

.fk-hero-dots {
  position: absolute;
  bottom: 22px;
  left: 152px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

@media (max-width: 575px) {
  .fk-hero-dots { left: 20px; }
}

.fk-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
  border: 1px solid rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
  transition: .2s;
}

.fk-hero-dot.active {
  width: 28px;
  background: var(--red, #c52b2f);
  border-color: var(--red, #c52b2f);
}

/* Arrows */

.fk-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .18s;
}

.fk-hero-arrow:hover {
  background: var(--red, #c52b2f);
  border-color: var(--red, #c52b2f);
}

.fk-hero-arrow--prev { left: 14px; }
.fk-hero-arrow--next { right: 14px; }

@media (max-width: 575px) {
  .fk-hero-arrow { display: none; }
}

/* Buttons */

.fk-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 26px;
  border-radius: 999px;
  font-family: var(--font-body, 'Nunito Sans', sans-serif);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: .18s ease;
}

.fk-btn--primary {
  background: linear-gradient(180deg, #cf3236, var(--red-dark, #a72025));
  color: #fff;
  box-shadow: 0 10px 22px rgba(197,43,47,.25);
  border: 1px solid var(--red, #c52b2f);
}

.fk-btn--primary:hover {
  background: linear-gradient(180deg, #b9282c, #8f1d21);
  color: #fff;
  transform: translateY(-1px);
}

.fk-btn--ghost {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.28);
  color: #fff;
  backdrop-filter: blur(6px);
}

.fk-btn--ghost:hover {
  background: rgba(255,255,255,.22);
  color: #fff;
  transform: translateY(-1px);
}

/* Progress bar */

.fk-hero-prog {
  position: absolute;
  bottom: 0; left: 0;   /* ← bottom místo top */
  height: 3px;
  width: 0;
  background: var(--red, #c52b2f);
  z-index: 10;
  transition: width .1s linear;
}

/* Dots */

.fk-hero-dots {
  position: absolute;
  bottom: 24px;
  left: max(60px, calc((100vw - 1320px) / 2 + 60px));
  left: 60px;
  display: flex;
  gap: 8px;
  z-index: 10;
}

@media (max-width: 1400px) { .fk-hero-dots { left: 60px; } }
@media (max-width: 575px) { .fk-hero-dots { left: 20px; } }

.fk-hero-dot {
width: 20px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .0135);
    border: 2px solid var(--red, #c52b2f);
    cursor: pointer;
    padding: 0;
    transition: .2s;
}

.fk-hero-dot.active {
  width: 28px;
  background: var(--red, #c52b2f);
}

/* Arrows */

.fk-hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .18s;
}

.fk-hero-arrow:hover {
  background: var(--red, #c52b2f);
  border-color: var(--red, #c52b2f);
}

.fk-hero-arrow--prev { left: 16px; }
.fk-hero-arrow--next { right: 16px; }

@media (max-width: 575px) {
  .fk-hero-arrow { display: none; }
}

.fk-products-section {
	
}
/* ── PROMO GRID ───────────────────────── */

.fk-promo-section {
    margin-top: 20px;
    padding: 40px 0;
    background: white;
    border-top: 1px solid #f4e8dc;
    border-bottom: 1px solid #f4e8dc;
}

.fk-promo-grid {
  display: grid;
  grid-template-columns: minmax(400px, 600px) repeat(3, 1fr);
  gap: 16px;
  height: 280px;
}

.fk-promo-card {
  display: block;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
  
  
      border-radius:20px;

    box-shadow:
        0 4px 14px rgba(20,20,20,.14),
        0 12px 32px rgba(20,20,20,.15);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.fk-promo-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  
      transform:translateY(-3px);

    box-shadow:
        0 10px 24px rgba(20,20,20,.07),
        0 20px 50px rgba(20,20,20,.10);
}

.fk-promo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}

.fk-promo-card:hover img {
  transform: scale(1.03);
}

@media (max-width: 991px) {
  .fk-promo-grid {
    grid-template-columns: repeat(2, 1fr);
    height: auto;
    gap: 12px;
  }

  .fk-promo-card img {
    aspect-ratio: 3/4;
    height: auto;
  }
}

@media (max-width: 480px) {
  .fk-promo-grid {
    gap: 8px;
  }
}


/* ── KATEGORIE IKONKY ─────────────────── */

.fk-cats-section {
  padding: 50px 0;
  background: white;
      border-bottom: 1px solid #f4e8dc;
}

.fk-cats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}

@media (max-width: 991px) {
  .fk-cats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .fk-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.fk-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: #fff;
  border: 1px solid var(--line, #eee2da);
  border-radius: 16px;
  text-decoration: none;
  color: var(--text, #262626);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
  box-shadow: var(--shadow-sm);
  transition: .18s ease;
}

.fk-cat-item:hover {
  border-color: rgba(197,43,47,.25);
  background: var(--red-soft, #fff1ef);
  color: var(--red-dark, #a72025);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.fk-cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red-soft, #fff1ef);
  color: var(--red, #c52b2f);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .18s ease;
}

.fk-cat-item:hover .fk-cat-icon {
  background: var(--red, #c52b2f);
  color: #fff;
}


/* ── USP LIŠTA ────────────────────────── */

.fk-usp-section {
  padding: 20px 0;
  margin: 16px 0;
  border-top: 1px solid var(--line, #eee2da);
  border-bottom: 1px solid var(--line, #eee2da);
  background: var(--soft, #fffaf6);
}

.fk-usp-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

@media (max-width: 1100px) {
  .fk-usp-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media (max-width: 575px) {
  .fk-usp-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

.fk-usp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border-right: 1px solid var(--line, #eee2da);
}

.fk-usp-item:last-child { border-right: none; }

@media (max-width: 1100px) {
  .fk-usp-item { border-right: none; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
}

.fk-usp-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--red-soft, #fff1ef);
  color: var(--red, #c52b2f);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fk-usp-item > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.fk-usp-item strong {
  font-size: 13px;
  font-weight: 900;
  color: var(--dark, #262626);
  line-height: 1.2;
}

.fk-usp-item span {
  font-size: 12px;
  color: var(--text-3, #9a8f88);
  line-height: 1.4;
}


/* ── SEKCE HEADER (společný) ──────────── */

.fk-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.fk-section-title {
  font-family: var(--font-body, 'Nunito Sans', sans-serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--dark, #262626);
  margin: 0 0 4px;
  letter-spacing: -.04em;
  line-height: 1;
}

.fk-section-sub {
  font-size: 14px;
  color: var(--text-3, #9a8f88);
  margin: 0;
}

.fk-section-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 900;
  color: var(--red, #c52b2f);
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s;
}

.fk-section-link:hover {
  opacity: .75;
  color: var(--red, #c52b2f);
}


/* ── AKCE TÝDNE ───────────────────────── */

.fk-products-section {
  padding: 50px 0;
      border-bottom: 1px solid #f4e8dc;
}


/* ── OBLÍBENÉ ZNAČKY ──────────────────── */

.fk-brands-section {
  padding: 28px 0 8px;
}

.fk-brands-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

@media (max-width: 991px) {
  .fk-brands-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 575px) {
  .fk-brands-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
}

.fk-brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 12px;
  background: #fff;
  border: 1px solid var(--line, #eee2da);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: .18s ease;
  min-height: 70px;
  text-decoration: none;
  color: var(--text-2, #68605b);
  font-size: 13px;
  font-weight: 800;
}

.fk-brand-card:hover {
  border-color: rgba(197,43,47,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.fk-brand-card img {
  max-height: 38px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(.3);
  transition: filter .18s ease;
}

.fk-brand-card:hover img {
  filter: grayscale(0);
}


/* ── NEWSLETTER ───────────────────────── */

.fk-newsletter-section {
  padding: 32px 0 40px;
}

.fk-newsletter-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line, #eee2da);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.fk-newsletter-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red-soft, #fff1ef);
  color: var(--red, #c52b2f);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fk-newsletter-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 180px;
}

.fk-newsletter-text strong {
  font-size: 16px;
  font-weight: 900;
  color: var(--dark, #262626);
  letter-spacing: -.02em;
}

.fk-newsletter-text span {
  font-size: 13px;
  color: var(--text-3, #9a8f88);
}

.fk-newsletter-form {
  display: flex;
  border: 1px solid var(--line, #eee2da);
  border-radius: 999px;
  overflow: hidden;
  background: var(--soft, #fffaf6);
  flex-shrink: 0;
}

.fk-newsletter-form input {
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 18px;
  font-size: 14px;
  font-family: var(--font-body, 'Nunito Sans', sans-serif);
  color: var(--dark, #262626);
  width: 240px;
}

.fk-newsletter-form input::placeholder {
  color: var(--text-3, #9a8f88);
}

.fk-newsletter-form button {
  background: linear-gradient(180deg, #cf3236, var(--red-dark, #a72025));
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 12px 20px;
  cursor: pointer;
  font-family: var(--font-body, 'Nunito Sans', sans-serif);
  white-space: nowrap;
  transition: .15s;
}

.fk-newsletter-form button:hover {
  background: linear-gradient(180deg, #b9282c, #8f1d21);
}

.fk-newsletter-note {
  width: 100%;
  font-size: 11px;
  color: var(--text-3, #9a8f88);
  margin: -8px 0 0 72px;
}

@media (max-width: 767px) {
  .fk-newsletter-inner { padding: 20px; }
  .fk-newsletter-form { width: 100%; }
  .fk-newsletter-form input { flex: 1; width: auto; }
  .fk-newsletter-note { margin-left: 0; }
}


/* ── BROWSE SUBCAT CHIP – obrázek + text pod ── */

.browse-subcat-chip {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px 10px 10px;
    min-height: unset;
    min-width: 100px;
    /* max-width: 80px; */
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    color: #262626;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: -.05em;
    text-transform: none;
    text-decoration: none;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: .18s ease;
    border: 0;
    box-shadow: none;
}

.browse-subcat-chip:hover, .browse-subcat-chip.active {
  border-color: rgba(197,43,47,.25);
  background: var(--red-soft, #fff1ef);
  color: var(--red-dark, #a72025) !important;
  transform: translateY(-2px);
  box-shadow: none !important;
/*  box-shadow: var(--shadow-md);*/
}
.browse-subcat-chip:hover img, .browse-subcat-chip.active img{
  
  border: 2px solid var(--red) !important;
  
}

.browse-subcat-chip img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: contain;
    background: var(--soft, #fffaf6);
    border: 1px solid var(--line);
    flex-shrink: 0;
    display: block;
    padding: 4px;
    box-shadow: var(--shadow-md);
    
    border: 2px solid var(--line);
    background: #fff;
    box-shadow: 0 8px 20px rgba(10, 10, 10, 0.2);
}

/* Přebij obecné pravidlo které nastavuje výšku a padding */
.nm-hfilter__btn.browse-subcat-chip,
.sort-tabs .nav-link.browse-subcat-chip,
.nm-filters__price-chip.browse-subcat-chip,
.browse-subcat-chip {
min-height: unset !important;
    padding: 10px 0px 5px !important;
    margin-bottom: 8px;
}

/* Chip bez obrázku — jen barevný kruh s písmenem */
.browse-subcat-chip:not(:has(img)) {
  padding: 14px 16px;
  flex-direction: row;
  min-width: unset;
  min-height: 40px;
}
/*.fk-subcat-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.fk-subcat-scroll {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.fk-subcat-scroll::-webkit-scrollbar {
  display: none;
}
*/
.browse-subcat-chip {
  scroll-snap-align: start;
  flex-shrink: 0;
}

.browse-subcat-chip.active img {

}

.browse-subcat-chip.active {
  color: var(--red-dark) !important;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: var(--red);
}
/*
.fk-subcat-arrow {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .18s ease;
  box-shadow: var(--shadow-sm);
}

.fk-subcat-arrow:hover {
  background: var(--red-soft);
  border-color: var(--red);
  color: var(--red);
}

.fk-subcat-arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 767px) {
  .fk-subcat-arrow {
    display: none;
  }
} */


.fk-subcat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

@media (max-width: 767px) {
  .fk-subcat-grid { display: none; }
}

.fk-subcat-dropdown { display: none; position: relative; }

@media (max-width: 767px) {
  .fk-subcat-dropdown { display: block; }
}

.fk-subcat-dropdown__btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 800;
  color: var(--dark);
  cursor: pointer;
}

.fk-subcat-dropdown__btn img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--soft);
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.fk-subcat-dropdown__btn span { flex: 1; text-align: left; }

.fk-subcat-dropdown__chevron {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform .25s ease;
}

.fk-subcat-dropdown.open .fk-subcat-dropdown__chevron { transform: rotate(180deg); }

.fk-subcat-dropdown__panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  max-height: 320px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  z-index: 500;
  padding: 8px;
}

.fk-subcat-dropdown.open .fk-subcat-dropdown__panel { display: block; }

.fk-subcat-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--dark);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.fk-subcat-dropdown__item img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--soft);
  border: 1px solid var(--line);
  flex-shrink: 0;
}

.fk-subcat-dropdown__item:hover,
.fk-subcat-dropdown__item.active {
  background: var(--red-soft);
  color: var(--red-dark);
}

.fk-browse-header {
  display: flex;
  align-items: stretch;
  gap: 20px;
}

.fk-browse-header__content {
  flex: 1;
  min-width: 0;
}

.fk-browse-header__banner {
  flex-shrink: 0;
  width: 50%;
  border-radius: 14px;
  overflow: hidden;
}

.fk-browse-header__banner img {
    object-fit: cover;
    display: block;
    border-radius: 14px;
    max-height: 250px;
    float: right;
}

@media (max-width: 767px) {
  .fk-browse-header--with-banner {
    flex-direction: column;
  }

  .fk-browse-header__banner {
    width: 100%;
    max-height: 160px;
  }
}

.nm-filters__cat-item img{
	object-fit: contain;
}



/* ── KATEGORIE – velké karty s fotkou ─────── */

.fk-cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px;
}

@media (max-width: 1100px) {
  .fk-cats-grid { grid-template-columns: repeat(3, 1fr); 
  gap: 26px;
  }
}
@media (max-width: 600px) {
  .fk-cats-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

.fk-cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(20,20,20,.10), 0 12px 32px rgba(20,20,20,.08);
  text-decoration: none;
  color: var(--dark, #262626);
  transition: transform .22s ease, box-shadow .22s ease;
}

.fk-cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(20,20,20,.12), 0 24px 50px rgba(20,20,20,.10);
  text-decoration: none;
  color: var(--dark);
}

/* Foto část */
.fk-cat-card__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2.6;
  
  background: #2a1e14;
}

.fk-cat-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .32s ease;
}

.fk-cat-card:hover .fk-cat-card__photo img {
  transform: scale(1.04);
}

/* Ikonka ve středu dole přes fotku */
.fk-cat-card__icon-wrap {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.fk-cat-card__icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #2a1e14;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .14);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fk-cat-card__icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

/* Textová část */
.fk-cat-card__body {
  padding: 34px 16px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  flex: 1;
}

.fk-cat-card__name {
  font-size: 15px;
  font-weight: 900;
  color: var(--dark, #262626);
  letter-spacing: -.02em;
  line-height: 1.2;
}

.fk-cat-card__desc {
  font-size: 13px;
  color: var(--text-3, #9a8f88);
  line-height: 1.45;
  flex: 1;
}

.fk-cat-card__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  font-size: 13px;
  font-weight: 900;
  color: var(--red, #c52b2f);
  text-decoration: none;
}

.fk-cat-card:hover .fk-cat-card__link {
  gap: 8px;
}



/**** browse product ****/

/* =========================================================
   PRODUCT CARD – FajnKoš browse
   Prefix: pc-
   ========================================================= */

/* Červený badge s procentem slevy */
.nm-badge.nm-badge--red {
  background: var(--red);
  color: #fff;
  border-color: transparent;
  font-weight: 900;
}

/* Hodnocení */
.pc-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 8px;
}

.pc-stars {
  color: #f5a623;
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1;
}

.pc-rating-count {
  font-size: 12px;
  color: var(--text-3);
  font-weight: 600;
}

/* Cena */
.pc-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 10px;
}

.pc-price-final {
  font-family: var(--font-body);
  font-size: 26px;
  font-weight: 900;
  color: var(--red-dark);
  letter-spacing: -.05em;
  line-height: 1;
}

.pc-price-old {
  font-size: 14px;
  color: var(--muted);
  font-weight: 600;
  text-decoration: line-through;
}

/* Sklad + doprava */
.pc-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 12px;
  font-weight: 700;
}

.pc-stock {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--green);
}

.pc-stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.pc-delivery {
  display: flex;
  align-items: center;
  gap: 4px;
  color: var(--text-3);
}

.pc-delivery svg {
  stroke: var(--text-3);
  flex-shrink: 0;
}

/* Cart form row */
.pc-cart-form {
  margin: 0;
}

.pc-cart-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Qty stepper */
.pc-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  flex-shrink: 0;
}

.pc-qty-btn {
  width: 24px;
  height: 36px;
  
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: background .15s, color .15s;
  flex-shrink: 0;
}

.pc-qty-btn:hover {
  background: #eee4da;
  color: var(--dark);
}

.pc-qty-btn svg {
  display: block;
}

.pc-qty-input {
  width: 26px;
  height: 36px;
  border: none;
/*  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);*/
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  background: #fff;
  outline: none;
  -moz-appearance: textfield;
  font-family: var(--font-body);
}

.pc-qty-input::-webkit-inner-spin-button,
.pc-qty-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
}
.product-card {
	margin-bottom: 0;
}

.product-card .mf-name {
    margin-bottom: 10px;
    min-height: auto;
    display: none;
}

.product-name a {
    font-size: 15px;
    font-weight: 700;
    color: #262626;
}

/* Do košíku tlačítko */
.product-card button.pc-add-btn {
flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    height: 38px !important;
    min-height: unset;
    padding: 0px;
    background: linear-gradient(180deg, #cf3236, var(--red-dark));
    color: #fff;
    border: 1px solid var(--red);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: .18s ease;
    box-shadow: 0 8px 18px rgba(197, 43, 47, .18);
    white-space: nowrap;
    margin-top: 0;
}

.product-card .pc-add-btn:hover {
  background: linear-gradient(180deg, #b9282c, #8f1d21);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(197,43,47,.26);
}

.pc-add-btn svg {
  flex-shrink: 0;
}

/* Mobil */
@media (max-width: 767px) {
  .pc-price-final {
    font-size: 22px;
  }

  .pc-add-btn {
    font-size: 13px;
    padding: 0 10px;
    gap: 4px;
  }

  .pc-add-btn span {
    display: none;
  }

  .pc-qty-btn {
    width: 28px;
    height: 34px;
  }

  .pc-qty-input {
    width: 30px;
    height: 34px;
    font-size: 13px;
  }
}

/************* fooooter ******/



/* =========================================================
   FOOTER – FajnKoš
   ========================================================= */

/* ── HERO NEWSLETTER BANNER ── */

.fk-footer-hero {
    position: relative;
    overflow: hidden;
    margin: 32px 0 0;
    background: white;
    padding: 60px 0;


}

.fk-footer-hero .container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
  box-shadow: var(--shadow-md);
	
	}


.fk-footer-hero__img-wrap {
  position: absolute;
  inset: 0;
}

.fk-footer-hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* hlavní content row uvnitř hero */
.fk-footer-hero__inner {
  position: relative;
min-height: 360px;
    z-index: 2;
  display: grid;
  grid-template-columns: 1fr 400px;
  
  background: linear-gradient(to right,
    rgba(15,8,3,.75) 0%,
    rgba(15,8,3,.55) 40%,
    rgba(15,8,3,.18) 65%,
    transparent 85%
  );
}

/* levá – headline */
.fk-footer-hero__left {
  display: flex;
  align-items: flex-end;
  padding: 36px 40px 36px 40px;
}

.fk-footer-hero__headline h2 {
  font-family: var(--font-body);
  font-size: clamp(28px, 3.2vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.045em;
  margin: 0 0 10px;
}

.fk-footer-hero__headline p {
  font-size: 15px;
  color: rgba(255,255,255,.78);
  margin: 0;
}

/* pravá – newsletter karta */
.fk-footer-hero__nl-card {
  background: rgba(255,255,255,.97);
  margin: 54px 24px 54px 0;
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}

.fk-footer-hero__nl-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.fk-footer-hero__nl-title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 900;
  color: var(--dark);
  margin: 0 0 8px;
  letter-spacing: -.03em;
}

.fk-footer-hero__nl-sub {
  font-size: 14px;
  color: var(--text-2);
  margin: 0 0 18px;
  line-height: 1.6;
}

.fk-footer-hero__nl-form {
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--soft);
  margin-bottom: 12px;
}

.fk-footer-hero__nl-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--dark);
  min-width: 0;
}

.fk-footer-hero__nl-form input::placeholder {
  color: var(--text-3);
}

.fk-footer-hero__nl-form button {
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  border: none;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  padding: 12px 20px;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
  transition: .15s;
  flex-shrink: 0;
}

.fk-footer-hero__nl-form button:hover {
  background: linear-gradient(180deg, #b9282c, #8f1d21);
}

.fk-footer-hero__nl-cats {
  font-size: 13px;
  color: var(--text-3);
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: center;
}

.fk-footer-hero__nl-cats .sep {
  color: var(--line);
}

.fk-footer-hero__nl-note {
  font-size: 12px;
  color: var(--text-3);
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
}

/* USP lišta – absolutně dole přes celou šířku */
.fk-footer-hero__usps {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(10,5,2,.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255,255,255,.12);
}

.fk-footer-hero__usp {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-right: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.9);
}

.fk-footer-hero__usp:last-child {
  border-right: none;
}

.fk-footer-hero__usp svg {
  stroke: var(--red);
  flex-shrink: 0;
}

.fk-footer-hero__usp i {
font-size: 34px;
    color: var(--red);
    flex-shrink: 0;
    width: 40px;
    text-align: center;
}

.fk-footer-hero__usp strong {
  display: block;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}

.fk-footer-hero__usp span {
  font-size: 13px;
  color: rgba(255,255,255,.65);
  line-height: 1.4;
}

/* ── HLAVNÍ FOOTER ── */

.fk-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

.fk-footer-grid {
  display: grid;
  grid-template-columns: 240px repeat(4, 1fr);
  gap: 36px;
  padding: 48px 0 40px;
}

/* Logo */

.fk-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 14px;
}

.fk-footer-logo svg {
  color: var(--red);
  stroke: var(--red);
  flex-shrink: 0;
}

.fk-footer-logo span {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.04em;
}

.fk-footer-logo em {
  font-style: normal;
  color: var(--red);
  font-size: .82em;
}

.fk-footer-desc {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0 0 16px;
}

.fk-footer-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.fk-footer-social-btn {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  transition: .18s ease;
}

.fk-footer-social-btn:hover {
  background: var(--red-soft);
  border-color: rgba(197,43,47,.25);
  color: var(--red);
}

/* Dárkové balení card */

.fk-footer-gift-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--soft);
}

.fk-footer-gift-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.fk-footer-gift-card strong {
  display: block;
  font-size: 13px;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 3px;
}

.fk-footer-gift-card p {
  font-size: 12px;
  color: var(--text-3);
  margin: 0 0 7px;
  line-height: 1.5;
}

.fk-footer-gift-card a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 900;
  color: var(--red);
  text-decoration: none;
}

.fk-footer-gift-card a:hover { opacity: .75; }

/* Sloupce linků */

.fk-footer-heading {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--dark);
  margin: 0 0 14px;
}

.fk-footer-heading--mt { margin-top: 22px; }

.fk-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fk-footer-links li { margin-bottom: 1px; }

.fk-footer-links a {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  padding: 4px 0;
  transition: color .15s;
}

.fk-footer-links a:hover { color: var(--red); }

/* Kontakt */

.fk-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.fk-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--text-2);
}

.fk-footer-contact-list li:last-child { border-bottom: none; }

.fk-footer-contact-list svg {
  stroke: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}

.fk-footer-contact-list a {
  color: var(--dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: block;
  transition: color .15s;
}

.fk-footer-contact-list a:hover { color: var(--red); }

.fk-footer-hours {
  display: block;
  font-size: 12px;
  color: var(--text-3);
  margin-top: 2px;
}

.fk-footer-operator {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 13px;
  color: var(--text-2);
}

.fk-footer-operator strong {
  color: var(--dark);
  font-weight: 900;
  font-size: 14px;
}

/* ── FOOTER BOTTOM ── */

.fk-footer-bottom {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.fk-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.fk-footer-bottom p {
  font-size: 13px;
  color: var(--text-3);
  margin: 0;
}

.fk-footer-payments img {
  height: 28px;
  width: auto;
}

/* ── RESPONSIVE ── */

@media (max-width: 1200px) {
  .fk-footer-grid {
    grid-template-columns: 200px repeat(4, 1fr);
    gap: 24px;
  }
}

@media (max-width: 991px) {
  .fk-footer-hero__inner {
    grid-template-columns: 1fr;
    min-height: 300px;
  }

  .fk-footer-hero__nl-card {
    margin: 16px;
    position: relative;
    z-index: 2;
  }

  .fk-footer-hero__usps {
    grid-template-columns: repeat(2, 1fr);
  }

  .fk-footer-hero__usp:nth-child(2) {
    border-right: none;
  }

  .fk-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    padding: 32px 0 28px;
  }

  .fk-footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .fk-footer-hero__usps {
    grid-template-columns: repeat(2, 1fr);
  }

  .fk-footer-hero__usp {
    padding: 12px 14px;
  }

  .fk-footer-grid {
    grid-template-columns: 1fr;
  }

  .fk-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

@media (max-width: 990px) {
  .nm-header-inner  .sidebar-switches {
        display: none;
    }
    .fk-cat-card__desc {
        display: none;
    }
    .fk-hero-dots, .fk-hslide-kicker, .fk-hslide-desc  {
        display: none;
    }
    
    .fk-footer-hero .container
 {
 border-radius: 0;
}
.fk-footer-logo img {
	max-width: 200px;
}
    
}

/* =========================================================
   SIDEBAR – FajnKoš
   ========================================================= */

.nm-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(38,20,10,.45);
  z-index: 1999;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}

.nm-sidebar-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.nm-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 310px;
  background: #fff;
  z-index: 2000;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: 6px 0 40px rgba(38,20,10,.14);
}

.nm-sidebar.open {
  transform: translateX(0);
}

/* Header */

.nm-sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}

.nm-sidebar-logo img {
  max-height: 36px;
  width: auto;
}

.nm-sidebar-close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--soft);
  color: var(--text-2);
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: .15s ease;
  flex-shrink: 0;
}

.nm-sidebar-close:hover {
  background: var(--red-soft);
  border-color: rgba(197,43,47,.25);
  color: var(--red);
}

/* Nav */

.nm-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nm-sidebar-nav::-webkit-scrollbar { width: 3px; }
.nm-sidebar-nav::-webkit-scrollbar-thumb { background: var(--line); border-radius: 2px; }

.nm-sidebar-cat {
  border-bottom: 1px solid var(--line);
}

.nm-sidebar-cat-btn {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  text-align: left;
  text-decoration: none;
  transition: background .15s, color .15s;
}

.nm-sidebar-cat-btn:hover {
  background: var(--red-soft);
  color: var(--red-dark);
}

.nm-sidebar-cat-btn.active {
  color: var(--red-dark);
  background: var(--red-soft);
}

/* Lucide / bi ikona vlevo */
.nm-sidebar-cat-btn .lucide-menu-mobile,
.nm-sidebar-cat-btn i {
  font-size: 16px;
  width: 18px;
  text-align: center;
  color: var(--red);
  flex-shrink: 0;
}

/* Šipka vpravo */
.nm-sidebar-cat-btn svg:last-child {
  width: 16px;
  height: 16px;
  stroke: var(--text-3);
  fill: none;
  stroke-width: 2.5;
  margin-left: auto;
  flex-shrink: 0;
  transition: transform .25s;
}

.nm-sidebar-cat-btn.active svg:last-child {
  transform: rotate(180deg);
}

/* Submenu */

.nm-sidebar-sub {
  display: none;
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.nm-sidebar-sub.open {
  display: block;
}

.nm-sidebar-sub-group {
  padding: 6px 0;
}

.nm-sidebar-sub a {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 9px 18px 9px 28px;
  color: var(--text-2);
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 600;
  transition: color .15s, background .15s;
}

.nm-sidebar-sub a:hover {
  color: var(--red);
  background: var(--red-soft);
}

.nm-sidebar-sub a .lucide-menu-mobile,
.nm-sidebar-sub a i {
  font-size: 14px;
  width: 16px;
  text-align: center;
  color: var(--text-3);
  flex-shrink: 0;
}

.nm-sidebar-sub a:hover .lucide-menu-mobile,
.nm-sidebar-sub a:hover i {
  color: var(--red);
}

.nm-sidebar-more {
  display: block;
  padding: 8px 18px 8px 28px;
  font-size: 13px;
  font-weight: 900;
  color: var(--red) !important;
  text-decoration: none;
  transition: opacity .15s;
}

.nm-sidebar-more:hover {
  opacity: .75;
}

/* Footer */

.nm-sidebar-footer {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: var(--soft);
  flex-shrink: 0;
}

.blog-desc {
    font-size: 15px;
    line-height: 20px;
}

.blog-title {
    font-size: 19px;
    line-height: 26px;
    font-weight: 700;
}

/* =========================================================
   BLOG DETAIL – FajnKoš
   ========================================================= */

.blog-details {
  max-width: 860px;
  margin: 0 auto;
  padding: 28px 0 60px;
}

/* ── HEAD ── */

.blog-detail-head {
  margin-bottom: 28px;
}

.blog-details-title {
  font-family: var(--font-body);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 900;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -.045em;
  margin: 0 0 18px;
}

.blog-details-meta {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.blog-details-meta li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-3);
  font-weight: 600;
}

.blog-details-meta i {
  color: var(--red);
  font-size: 14px;
}

.blog-details-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-2);
  font-weight: 600;
  padding: 18px 22px;
  border-left: 3px solid var(--red);
  background: var(--red-soft);
  border-radius: 0 12px 12px 0;
  margin: 0;
}

/* ── SHARE ── */

.blog-share-top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.share-label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-3);
}

.share-buttons {
  display: flex;
  gap: 6px;
}

.share-btn {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: .18s ease;
  font-family: var(--font-body);
}

.share-btn:hover {
  border-color: rgba(197,43,47,.3);
  background: var(--red-soft);
  color: var(--red);
}

.share-whatsapp:hover {
  background: #e8f8ef;
  border-color: #25d366;
  color: #25d366;
}

/* ── BODY ── */

.blog-details-body {
  margin-top: 36px;
}

.blog-details-body h2 {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.035em;
  line-height: 1.2;
  margin: 40px 0 14px;
}

.blog-details-body h2:first-child {
  margin-top: 0;
}

.blog-details-body h3 {
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.025em;
  margin: 28px 0 10px;
}

.blog-details-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-2);
  margin: 0 0 18px;
}

.blog-details-body em {
  font-style: italic;
  color: var(--dark);
}

.blog-details-body strong {
  font-weight: 900;
  color: var(--dark);
}

.blog-details-body hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}

.blog-details-body ul,
.blog-details-body ol {
  padding-left: 0;
  margin: 0 0 18px;
  list-style: none;
}

.blog-details-body ul li,
.blog-details-body ol li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-2);
}

.blog-details-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--red);
}

.blog-details-body ol {
  counter-reset: blog-ol;
}

.blog-details-body ol li {
  counter-increment: blog-ol;
}

.blog-details-body ol li::before {
  content: counter(blog-ol);
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 13px;
  font-weight: 900;
  color: var(--red);
}

/* Blockquote */

.blog-details-body blockquote {
  margin: 28px 0;
  padding: 20px 24px;
  background: var(--soft);
  border-left: 3px solid var(--red);
  border-radius: 0 14px 14px 0;
  font-size: 16px;
  font-style: italic;
  color: var(--text-2);
  line-height: 1.75;
}

/* ── RELATED CATEGORIES ── */

.related-shop-categories {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 20px 22px;
  margin: 28px 0;
}

.related-shop-categories .section-title {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  color: var(--dark);
  margin: 0 0 14px;
  letter-spacing: -.01em;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.category-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text-2);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: .18s ease;
}

.category-tag:hover {
  background: var(--red-soft);
  border-color: rgba(197,43,47,.3);
  color: var(--red-dark);
  transform: translateY(-1px);
}

/* ── RESPONSIVE ── */

@media (max-width: 767px) {
  .blog-details {
    padding: 16px 0 40px;
  }

  .blog-details-title {
    font-size: 26px;
  }

  .blog-details-desc {
    font-size: 15px;
    padding: 14px 16px;
  }

  .blog-share-top {
    justify-content: flex-start;
    margin-top: 12px;
  }

  .blog-details-body h2 {
    font-size: 20px;
    margin-top: 30px;
  }

  .blog-details-body p {
    font-size: 15px;
  }
}

.browse-article-col .product-name{
	min-height: unset;
	}
.browse-article-col .product-blog-image {
	min-height: unset;

}
.browse-article-col .product-name{
	min-height: unset;
	}
.browse-article-col .product-blog-image {
	min-height: 280px;
	border-radius: 12px;

	}
.browse-article-col .product-media {
	display: block;
}

.browse-article-col {
    flex: 0 0 auto;
    width: 100%;           /* xs: 2 sloupce → článek přes celou šířku */
}
@media (min-width: 768px) {
    .browse-article-col {
        width: 66.6667%;   /* md: 2/3 → zabere 2 ze 3 sloupců */
    }
}
@media (min-width: 992px) {
    .browse-article-col {
        width: 50%;        /* lg: 2/4 */
    }
}
@media (min-width: 1200px) {
    .browse-article-col {
        width: 50%;        /* xl: 2/4 */
    }
}
@media (min-width: 1400px) {
    .browse-article-col {
        width: 40%;        /* xxl: 2/5 = přesně 40% */
    }
}

/* =========================================================
   CHECKOUT – KROKOVACÍ LIŠTA
   ========================================================= */

.nm-co-steps {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 20px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}

.nm-co-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  flex-shrink: 0;
  text-decoration: none;
  color: inherit;
}

a.nm-co-step:hover .nm-co-step-circle { background: var(--red-soft); border-color: var(--red); color: var(--red-dark);  }
a.nm-co-step:hover .nm-co-step-label, a.nm-co-step:hover .nm-co-step-label i  { color: var(--red-dark); }

.nm-co-step-circle {
width: 70px;
    height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--text-3);
  transition: .18s ease;
}

.nm-co-step-circle i {
	font-size: 24px;
	}

.nm-co-step.done   .nm-co-step-circle { background: var(--green);  border-color: var(--green); color: #fff; }
.nm-co-step.active .nm-co-step-circle { background: var(--red);    border-color: var(--red);   color: #fff; box-shadow: 0 6px 16px rgba(197,43,47,.22); }
.nm-co-step.future .nm-co-step-circle { background: #f7f3ef; border-color: var(--line); color: var(--text-3); }

.nm-co-step-label {
  font-size: .72rem;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
  color: var(--text-3);
}

.nm-co-step.active .nm-co-step-label { color: var(--red-dark); }
.nm-co-step.done   .nm-co-step-label { color: var(--green); }

.nm-co-step-line {
  flex: 1;
  height: 2px;
  background: var(--line);
  margin: 0 8px 20px; /* 20px = kompenzace výšky labelu */
  border-radius: 2px;
}

.nm-co-step-line.done { background: var(--green); }

@media (max-width: 575px) {
  .nm-co-steps { padding: 14px 16px; margin-bottom: 16px; }
  .nm-co-step-circle { width: 32px; height: 32px; }
  .nm-co-step-label  { font-size: .62rem; }
  .nm-co-step.future .nm-co-step-label { display: none; }
}


/* =========================================================
   KROK 2 – DOPRAVA A PLATBA
   ========================================================= */

/* ── Karta ── */

.nm-sp-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.nm-sp-card-head { background: var(--soft); }

.nm-sp-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nm-sp-card-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.02em;
}

.nm-sp-error {
  padding: 10px 14px;
  background: var(--red-soft);
  border: 1px solid rgba(197,43,47,.22);
  border-radius: 10px;
  font-size: .82rem;
  color: var(--red-dark);
  font-weight: 700;
}

/* ── Řádky voleb (doprava / platba / země) ── */

/* .shopping-cart-option je v _shippingMethods a _paymentMethods – přebíjíme */
#shipping-methods .shopping-cart-option,
#payment-methods  .shopping-cart-option,
.countryList      .nm-sp-row {
  display: flex !important;
  align-items: center;
  
  padding: 14px 24px;
  border-bottom: 1px solid var(--line);
  margin: 0 !important;
  transition: background .12s;
  cursor: pointer;
}

#shipping-methods .shopping-cart-option:last-of-type,
#payment-methods  .shopping-cart-option:last-of-type { border-bottom: none; }

#shipping-methods .shopping-cart-option:hover,
#payment-methods  .shopping-cart-option:hover,
.countryList      .nm-sp-row:hover { background: var(--soft); }

.nm-sp-row--checked { background: var(--red-soft) !important; }

/* Skrytí BS col wrapperu – jedeme flexem přes celý řádek */
#shipping-methods .shopping-cart-option .col-sm-10,
#payment-methods  .shopping-cart-option .col-sm-10 { flex: 1; padding: 0; }

#shipping-methods .shopping-cart-option .col-sm-2,
#payment-methods  .shopping-cart-option .col-sm-2  { flex-shrink: 0; padding: 0; }

/* Custom radio */
.nm-sp-radio,
#shipping-methods .radio,
#shipping-methods .shippingradio,
#payment-methods  .paymentradio,
#payment-methods  .shopping-cart-radio {
  appearance: none;
  -webkit-appearance: none;
  width: 19px;
  height: 19px;
  border: 2px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
  margin: 0 12px 0 0;
  vertical-align: middle;
  transition: border-color .15s, background .15s;
}

.nm-sp-radio:checked,
#shipping-methods .radio:checked,
#shipping-methods .shippingradio:checked,
#payment-methods  .paymentradio:checked,
#payment-methods  .shopping-cart-radio:checked {
  border-color: var(--red);
  background: var(--red);
  box-shadow: inset 0 0 0 3px #fff;
}

/* Label */
#shipping-methods .control-label,
#payment-methods  .control-label,
.nm-sp-row-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  margin: 0;
}

/* Cena */
#shipping-methods .price,
#payment-methods  .price {
  font-size: .9rem;
  font-weight: 900;
  color: var(--dark);
  white-space: nowrap;
}

/* Skupinové nadpisy (OSOBNÍ ODBĚR:, ODBĚRNÁ MÍSTA: …) */
#shipping-methods h5 {
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-3);
  padding: 14px 24px 6px;
  margin: 0;
  border-top: 1px solid var(--line);
}

#shipping-methods h5:first-child { border-top: none; }

/* Packeta / DPD / GLS / Balíkovna / PPL výběrová tlačítka */
#shipping-methods #packeta-button,
#shipping-methods #dpdparcelshop-button,
#shipping-methods #glsparcelshop-button,
#shipping-methods #balikovna-button,
#shipping-methods #pplparcelshop-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 6px 31px;
  padding: 6px 16px;
  background: var(--red-soft);
  border: 1px solid rgba(197,43,47,.25);
  border-radius: 999px;
  color: var(--red-dark);
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: .02em;
  transition: .15s;
}

#shipping-methods #packeta-button:hover,
#shipping-methods #dpdparcelshop-button:hover,
#shipping-methods #glsparcelshop-button:hover,
#shipping-methods #balikovna-button:hover,
#shipping-methods #pplparcelshop-button:hover {
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  border-color: var(--red);
  color: #fff;
}

/* Info o zvoleném místě */
#shipping-methods #packeta-point-info,
#shipping-methods #dpdparcelshop-point-info,
#shipping-methods #glsparcelshop-point-info,
#shipping-methods #balikovna-point-info,
#shipping-methods #pplparcelshop-point-info {
  margin: 2px 0 6px 31px;
  font-size: .8rem;
  color: var(--green);
  font-weight: 700;
}

/* ── Skupinový nadpis (Osobní odběr, Odběrná místa…) ── */
.nm-sp-group-label {
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--text-3);
  padding: 12px 24px 4px;
  margin: 0;
  border-top: 1px solid var(--line);
}

#shipping-methods .nm-sp-group-label:first-child { border-top: none; }

/* ── Klikací řádek ── */
.nm-sp-row {
  cursor: pointer;
  transition: background .12s;
  margin: 0;
}

.nm-sp-row:last-child  { border-bottom: none !important; }
.nm-sp-row:hover       { background: var(--soft); }
.nm-sp-row--checked    { background: var(--red-soft) !important; }

.nm-sp-row-label {
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
}

.nm-sp-price {
  font-size: .9rem;
  font-weight: 900;
  color: var(--dark);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ── Tlačítko pro výběr výdejního místa ── */
.nm-sp-pick-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: var(--red-soft);
  border: 1px solid rgba(197,43,47,.25);
  border-radius: 999px;
  color: var(--red-dark);
  font-size: .78rem;
  font-weight: 900;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: .02em;
  transition: .15s;
}

.nm-sp-pick-btn:hover {
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  border-color: var(--red);
  color: #fff;
}

/* ── Info o zvoleném místě ── */
.nm-sp-point-info {
  font-size: .8rem;
  color: var(--green);
  font-weight: 700;
  margin-top: 3px;
}

/* ── Žádná platba ── */
.nm-sp-no-payment {
  font-size: .85rem;
  color: var(--text-2);
  background: var(--soft);
  margin: 8px;
  border-radius: 10px;
  border: 1px solid var(--line);
}

/* =========================================================
   KROK 3 – KONTAKTNÍ ÚDAJE (userInfo)
   ========================================================= */

.nm-sp-card-sub {
  font-size: .78rem;
  color: var(--text-3);
  margin-top: 2px;
}

/* Input pole */
.nm-input {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: .9rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}

.nm-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(197,43,47,.10);
  outline: none;
}

.nm-input.is-invalid { border-color: var(--red); }

/* Checkbox řádek */
.nm-ui-check-row .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0 0;
  margin: 0;
}

.nm-ui-check-row .form-check-input {
  width: 18px;
  height: 18px;
  border: 2px solid var(--line);
  border-radius: 4px;
  accent-color: var(--red);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

.nm-ui-check-row .form-check-label {
  font-size: .88rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
}

/* Collapse toggle – fakturační adresa */
.nm-ui-collapse-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  transition: background .12s;
}

.nm-ui-collapse-toggle:hover { background: var(--soft); }

.nm-ui-chevron {
  flex-shrink: 0;
  transition: transform .25s ease;
  color: var(--text-3);
}

.nm-ui-collapse-toggle[aria-expanded="true"] .nm-ui-chevron {
  transform: rotate(180deg);
}

/* Volitelné badge */
.nm-ui-optional-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 9px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  color: var(--text-3);
  vertical-align: middle;
}

/* Info o odběrném místě */
.nm-ui-pickup-type {
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
}

.nm-ui-pickup-name {
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
}

.nm-ui-pickup-address {
  font-size: .88rem;
  color: var(--text-2);
}

.nm-ui-change-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .84rem;
  font-weight: 900;
  color: var(--red);
  text-decoration: none;
  transition: opacity .15s;
}

.nm-ui-change-link:hover { opacity: .75; color: var(--red); }

.nm-ui-pickup-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: .8rem;
  color: var(--text-2);
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
}

.nm-ui-pickup-note svg { flex-shrink: 0; margin-top: 1px; }

/* Security note */
.nm-ui-security-note {
  font-size: .76rem;
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
}

/* =========================================================
   KROK 4 – SUMMARY
   ========================================================= */

/* Počet položek v nadpisu */
.nm-sm-count {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-3);
  margin-left: 4px;
}

/* Řádek položky */
.nm-sm-item { transition: background .12s; }
.nm-sm-item:hover { background: var(--soft); }
.nm-sm-item:last-of-type { border-bottom: none !important; }

.nm-sm-item-img {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #f9f5f1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.nm-sm-item-img img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
}

.nm-sm-item-name {
  display: block;
  font-size: .9rem;
  font-weight: 800;
  color: var(--dark);
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 3px;
  transition: color .15s;
}

.nm-sm-item-name:hover { color: var(--red); }

.nm-sm-item-variant {
  display: block;
  font-size: .76rem;
  color: var(--text-3);
  margin-bottom: 3px;
}

.nm-sm-item-notice {
  display: block;
  font-size: .76rem;
  font-weight: 800;
  color: var(--red-dark);
  margin-bottom: 3px;
}

.nm-sm-item-unit {
  font-size: .76rem;
  color: var(--text-3);
}

.nm-sm-item-price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--red-dark);
  font-family: var(--font-body);
  letter-spacing: -.03em;
}

.nm-sm-item-qty {
  font-size: .76rem;
  color: var(--text-3);
  margin-top: 2px;
}

/* Security note v levém sloupci */
.nm-sm-security {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: var(--green);
  background: var(--green-soft);
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 4px;
}

.nm-sm-security svg { stroke: var(--green); flex-shrink: 0; }

/* Pravý sloupec – info řádky */
.nm-sm-info-label {
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
}

.nm-sm-info-val {
  font-size: .95rem;
  font-weight: 800;
  color: var(--dark);
}

.nm-sm-info-sub {
  font-size: .84rem;
  color: var(--text-2);
}

.nm-sm-info-price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  font-family: var(--font-body);
}

/* Potvrzení – spodní lišta */
.nm-sm-confirm {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px 28px;
  box-shadow: var(--shadow-sm);
}

.nm-sm-confirm-btn {
  min-width: 280px;
}

.nm-sm-link {
  color: var(--red);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nm-sm-link:hover { opacity: .75; color: var(--red); }

/* =========================================================
   THANK YOU PAGE
   ========================================================= */

.nm-ty-section {
  background: var(--bg);
  min-height: 70vh;
  padding: 40px 0 20px;
}

/* ── Hero ── */
.nm-ty-hero {
  margin-bottom: 32px;
}

.nm-ty-check-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.nm-ty-check {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(60,143,90,.25);
  position: relative;
  z-index: 1;
}

/* Dekorativní tečky kolem checkmarku */
.nm-ty-dot {
  position: absolute;
  border-radius: 50%;
}
.nm-ty-dot--1 { width: 8px;  height: 8px;  background: var(--green);     top: -8px;  left: 18px; opacity: .5; }
.nm-ty-dot--2 { width: 6px;  height: 6px;  background: var(--red);       top: 4px;   right: 10px; opacity: .4; }
.nm-ty-dot--3 { width: 10px; height: 10px; background: var(--green-soft); bottom: -4px; left: 8px; opacity: .6; }
.nm-ty-dot--4 { width: 5px;  height: 5px;  background: var(--red-soft);  bottom: 8px;  right: 4px; opacity: .5; }
.nm-ty-dot--5 { width: 7px;  height: 7px;  background: var(--green);     top: 18px;  left: -10px; opacity: .35; }
.nm-ty-dot--6 { width: 6px;  height: 6px;  background: var(--line);      bottom: 14px; right: -6px; opacity: .5; }

.nm-ty-title {
  font-family: var(--font-body);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.045em;
  margin: 0 0 12px;
}

.nm-ty-subtitle {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0 auto;
  max-width: 520px;
}

/* ── Info karta ── */
.nm-ty-info-card {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}

.nm-ty-info-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  text-align: center;
  gap: 4px;
}

.nm-ty-info-sep {
  width: 1px;
  background: var(--line);
  flex-shrink: 0;
}

.nm-ty-info-label {
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: var(--text-3);
}

.nm-ty-info-val {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--dark);
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nm-ty-info-val--red  { color: var(--red-dark); }
.nm-ty-info-val--big  { font-size: 1.5rem; letter-spacing: -.04em; }

.nm-ty-info-note {
  font-size: .72rem;
  color: var(--text-3);
}

.nm-ty-copy-btn {
  background: none;
  border: none;
  color: var(--text-3);
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color .15s;
}
.nm-ty-copy-btn:hover { color: var(--red); }

/* ── Doručení karta ── */
.nm-ty-delivery-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--green-soft);
  border: 1px solid rgba(60,143,90,.2);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 20px;
  font-size: .9rem;
  color: var(--dark);
  line-height: 1.6;
}

.nm-ty-delivery-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
  box-shadow: 0 4px 12px rgba(60,143,90,.15);
}

/* ── Platební údaje ── */
.nm-ty-transfer-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.nm-ty-transfer-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.nm-ty-transfer-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
  color: var(--text-2);
}
.nm-ty-transfer-row:last-child { border-bottom: none; }
.nm-ty-transfer-row strong { color: var(--dark); font-weight: 900; }

/* ── Kroky co se bude dít ── */
.nm-ty-steps-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.nm-ty-steps-title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--dark);
  text-align: center;
  margin-bottom: 24px;
  letter-spacing: -.02em;
}

.nm-ty-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  text-align: center;
}

.nm-ty-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nm-ty-step-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red-soft);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.nm-ty-step-icon--done {
  background: var(--green-soft);
  color: var(--green);
}

.nm-ty-step-arrow {
  position: absolute;
  top: 14px;
  right: -14px;
  font-size: 1.1rem;
  color: var(--line);
  z-index: 1;
}

.nm-ty-step-num {
  font-size: .84rem;
  font-weight: 900;
  color: var(--dark);
  margin: 0 0 4px;
  letter-spacing: -.01em;
}

.nm-ty-step-desc {
  font-size: .76rem;
  color: var(--text-3);
  margin: 0;
  line-height: 1.5;
}

/* ── Akce karty ── */
.nm-ty-action-card {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  height: 100%;
}

.nm-ty-action-title {
  font-size: .95rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.nm-ty-action-desc {
  font-size: .84rem;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── Tlačítka ── */
.nm-ty-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid var(--dark);
  border-radius: 999px;
  background: transparent;
  color: var(--dark);
  font-size: .84rem;
  font-weight: 900;
  text-decoration: none;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: .18s ease;
}

.nm-ty-btn-outline:hover {
  background: var(--dark);
  color: #fff;
}

.nm-ty-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  color: #fff;
  border-radius: 999px;
  font-weight: 900;
  font-family: var(--font-body);
  text-decoration: none;
  border: 1px solid var(--red);
  transition: .18s ease;
}

.nm-ty-btn-primary:hover {
  background: linear-gradient(180deg, #b9282c, #8f1d21);
  color: #fff;
}

.nm-ty-home-btn {
  min-width: 280px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

/* ── USP lišta ── */
.nm-ty-usps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.nm-ty-usp {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px;
  border-right: 1px solid var(--line);
}

.nm-ty-usp:last-child { border-right: none; }

.nm-ty-usp svg {
  stroke: var(--red);
  flex-shrink: 0;
}

.nm-ty-usp strong {
  display: block;
  font-size: .84rem;
  font-weight: 900;
  color: var(--dark);
  margin-bottom: 2px;
}

.nm-ty-usp span {
  font-size: .76rem;
  color: var(--text-3);
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .nm-ty-steps  { grid-template-columns: repeat(2, 1fr); }
  .nm-ty-usps   { grid-template-columns: repeat(2, 1fr); }
  .nm-ty-usp:nth-child(2) { border-right: none; }
  .nm-ty-usp:nth-child(3) { border-right: 1px solid var(--line); }
  .nm-ty-step-arrow { display: none; }
}

@media (max-width: 575px) {
  .nm-ty-info-card { flex-direction: column; }
  .nm-ty-info-sep  { width: 100%; height: 1px; }
  .nm-ty-steps     { grid-template-columns: 1fr; }
  .nm-ty-usps      { grid-template-columns: 1fr; }
  .nm-ty-usp       { border-right: none; border-bottom: 1px solid var(--line); }
  .nm-ty-usp:last-child { border-bottom: none; }
  .nm-ty-home-btn  { min-width: unset; width: 100%; }
}

/* =========================================================
   ORDER DETAIL
   ========================================================= */

.nm-od-section {
  background: var(--bg);
  min-height: 70vh;
  padding: 28px 0 60px;
}

.nm-od-title {
  font-family: var(--font-body);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
  color: var(--dark);
  letter-spacing: -.045em;
  margin: 0;
}

/* Stav badge */
.nm-od-state {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.nm-od-state--green  { background: var(--green-soft); color: var(--green); }
.nm-od-state--red    { background: var(--red-soft);   color: var(--red-dark); }
.nm-od-state--orange { background: #fff8ec;           color: #b36a00; }
.nm-od-state--blue   { background: #eef4ff;           color: #2563eb; }
.nm-od-state--gray   { background: var(--soft);       color: var(--text-3); }

.nm-od-state-desc {
  font-size: .82rem;
  color: var(--text-3);
}

/* Tlačítka hlavičky */
.nm-od-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--dark);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: .15s ease;
  box-shadow: var(--shadow-sm);
}

.nm-od-btn-outline:hover {
  border-color: #ddd1c8;
  background: var(--soft);
  color: var(--dark);
}

/* Meta řádky (číslo, datum, stav, ceny) */
.nm-od-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
  font-size: .88rem;
  color: var(--text-2);
  border-bottom: 1px solid var(--line);
}

.nm-od-meta-row:last-of-type { border-bottom: none; }

.nm-od-meta-row--total {
  padding-top: 10px;
  font-size: 1rem;
}

/* Znovu zaplatit tlačítko */
.nm-od-pay-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: linear-gradient(180deg, #cf3236, var(--red-dark));
  color: #fff;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
  border: 1px solid var(--red);
  font-family: var(--font-body);
  transition: .15s;
}

.nm-od-pay-btn:hover {
  background: linear-gradient(180deg, #b9282c, #8f1d21);
  color: #fff;
}

/* Tabulka položek */
.nm-od-table-head {
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-3);
  background: var(--soft);
}

.nm-od-col-qty   { width: 100px; text-align: center; flex-shrink: 0; }
.nm-od-col-price { width: 100px; text-align: right;  flex-shrink: 0; }
.nm-od-col-total { width: 110px; text-align: right;  flex-shrink: 0; }

.nm-od-item { transition: background .12s; }
.nm-od-item:hover { background: var(--soft); }
.nm-od-item:last-of-type { border-bottom: none !important; }

.nm-od-item-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #f9f5f1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.nm-od-item-img img {
  max-width: 88%;
  max-height: 88%;
  object-fit: contain;
}

.nm-od-vat-note {
  font-size: .78rem;
  color: var(--text-3);
  background: var(--soft);
}

/* Průběh objednávky */
.nm-od-progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

.nm-od-prog-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.nm-od-prog-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--soft);
  border: 2px solid var(--line);
  color: var(--text-3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
  transition: .2s;
}

.nm-od-prog-step--done .nm-od-prog-icon {
  background: var(--red-soft);
  border-color: var(--red);
  color: var(--red);
}

.nm-od-prog-line {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.nm-od-prog-line--done { background: var(--red); }

.nm-od-prog-label {
  font-size: .82rem;
  font-weight: 800;
  color: var(--dark);
  margin: 0 0 3px;
}

.nm-od-prog-sub {
  font-size: .72rem;
  color: var(--text-3);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 767px) {
  .nm-od-progress {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 0;
  }
  .nm-od-prog-line { display: none; }
  .nm-od-col-qty, .nm-od-col-price { display: none; }
  .nm-od-table-head { display: none; }
}

/* =========================================================
   VOP / FAQ – FajnKoš
   ========================================================= */

.nm-vop {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* HLAVIČKA FIRMY */
.nm-vop__firm {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 32px;
    background: var(--soft);
    border-bottom: 2px solid var(--red);
    font-family: var(--font-body);
    font-size: .92rem;
    color: var(--text-2);
    line-height: 1.7;
}

.nm-vop__firm-icon {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--red-soft);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
    margin-top: 2px;
}

.nm-vop__firm strong {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 900;
}

/* ÚVODNÍ TEXT */
.nm-vop__intro {
    padding: 24px 32px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.75;
    background: var(--red-soft);
}

/* SEKCE */
.nm-vop__section {
    border-bottom: 1px solid var(--line);
}

.nm-vop__section--last {
    border-bottom: none;
}

/* NADPIS SEKCE */
.nm-vop__heading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: var(--soft);
    border-bottom: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: -.02em;
    color: var(--dark);
    cursor: default;
}

.nm-vop__heading i {
    color: var(--red);
    font-size: .95rem;
    width: 18px;
    text-align: center;
}

.nm-vop__heading-num {
    font-family: var(--font-body);
    font-weight: 900;
    color: var(--muted);
    letter-spacing: .06em;
    min-width: 28px;
}

/* TĚLO SEKCE */
.nm-vop__body {
    padding: 24px 32px;
    font-family: var(--font-body);
    color: var(--text-2);
    line-height: 1.75;
}

.nm-vop__body p {
    margin-bottom: 12px;
}

.nm-vop__body p:last-child {
    margin-bottom: 0;
}

.nm-vop__body strong {
    color: var(--dark);
    font-weight: 900;
}

.nm-vop__para {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
}

.nm-vop__para:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.nm-vop__para strong i {
    color: var(--red) !important;
    font-size: .75rem !important;
    margin-right: 8px !important;
}

/* LISTY */
.nm-vop__ol,
.nm-vop__ul {
    padding-left: 0;
    margin: 12px 0 16px;
    list-style: none;
    counter-reset: vopList;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.nm-vop__ol li {
    counter-increment: vopList;
    position: relative;
    padding-left: 38px;
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.7;
}

.nm-vop__ol li::before {
    content: counter(vopList);
    position: absolute;
    left: 0;
    top: 1px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--red-soft);
    color: var(--red-dark);
    font-size: .72rem;
    font-weight: 900;
    font-family: var(--font-body);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nm-vop__ul li {
    position: relative;
    padding-left: 20px;
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.7;
}

.nm-vop__ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--red);
}

/* ALERTY */
.nm-vop__alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 14px;
    font-family: var(--font-body);
    line-height: 1.65;
    margin: 16px 0;
}

.nm-vop__alert i {
    flex-shrink: 0;
    margin-top: 2px;
}

.nm-vop__alert--warning {
    background: #fff8ec;
    border: 1px solid rgba(197,43,47,.20);
    color: #7a4500;
}

.nm-vop__alert--warning i { color: var(--red); }

.nm-vop__alert--info {
    background: #eef6ff;
    border: 1px solid rgba(37,99,235,.18);
    color: #1e40af;
}

.nm-vop__alert--info i { color: #2563eb; }

/* HIGHLIGHT – adresa apod. */
.nm-vop__highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: .9rem;
    font-weight: 800;
    color: var(--dark);
    margin: 8px 0 14px;
}

.nm-vop__highlight i { color: var(--red); }

/* SETTINGS BLOCK */
.nm-vop__settings-block {
    padding: 14px 18px;
    background: var(--red-soft);
    border-left: 3px solid var(--red);
    border-radius: 0 14px 14px 0;
    font-size: .9rem;
    color: var(--text-2);
    line-height: 1.7;
    margin-bottom: 16px;
}

/* KONTAKTNÍ BOX */
.nm-vop__contact-box {
    background: var(--soft);
    border: 1px solid var(--line);
    border-radius: 14px;
    overflow: hidden;
    margin-top: 16px;
}

.nm-vop__contact-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f2ebe5;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--text-3);
}

.nm-vop__contact-box-title i { color: var(--red); }

.nm-vop__contact-box-rows {
    display: flex;
    flex-direction: column;
}

.nm-vop__contact-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 16px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-body);
    font-size: .88rem;
    color: var(--text-2);
}

.nm-vop__contact-row:last-child { border-bottom: none; }

.nm-vop__contact-row i {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--red-soft);
    color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .8rem;
}

/* PLATNOST OD */
.nm-vop__effective {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 10px 16px;
    background: var(--green-soft);
    border: 1px solid rgba(60,143,90,.2);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: .84rem;
    color: var(--text-2);
}

.nm-vop__effective i { color: var(--green); }
.nm-vop__effective strong { color: var(--dark); }

/* LINKY */
.nm-vop__link {
    color: var(--red);
    font-weight: 700;
    text-decoration: none;
    transition: opacity .15s;
}

.nm-vop__link:hover {
    opacity: .75;
    text-decoration: underline;
    color: var(--red);
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .nm-vop__firm,
    .nm-vop__intro,
    .nm-vop__heading,
    .nm-vop__body {
        padding-left: 18px;
        padding-right: 18px;
    }
}


/* ── STICKY NAVBAR POD HEADEREM ── */
.nm-navbar {
  position: sticky;
  top: var(--nm-header-h, 0px);
  z-index: 98;
  transition: top .15s ease;
}

/* ── MEGA MENU: absolute místo fixed, věšíme pod navbar ── */
.nm-navbar-inner {
 /* position: relative; /* containing block pro .nm-mega */
}

.nm-mega {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  background: #fff;
  border-top: 3px solid var(--red);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 22px 44px rgba(80,50,20,.14);
  z-index: 999;
  padding: 24px 0 30px;
}

.nm-nav-item.open .nm-mega {
  display: block;
}

.nm-nav-item.open > .nm-nav-link {
  color: var(--red-dark);
  background: #fff0e8;
}
.nm-nav-item.open > .nm-nav-link svg {
  transform: rotate(180deg);
}

/* ── ZÚŽENÍ NAVBARU PŘI SCROLLU ── */
.nm-navbar.is-compact .nm-nav-link {
  min-height: 32px;
  /*padding: 0 12px;*/
  margin-bottom: 6px;
}

.nm-navbar.is-compact .nm-navbar-inner {
  padding-top: 6px;
}

.nm-navbar.is-compact .nm-nav-link svg {
 /*width: 14px;
  height: 14px;
  margin-bottom: 1px;*/
}

.nm-header.is-scrolled .nm-hicon,
.nm-header.is-scrolled .nm-logo {
  transition: all .15s ease;
}


/* ── SHIPPING MODAL ── */
.nm-ship-modal-dialog {
  max-width: 640px !important;
}

.nm-ship-modal {
  border: none;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.18);
}

.nm-ship-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-bottom: 1px solid #f0f0f0;
}

.nm-ship-modal__title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -.01em;
}

.nm-ship-modal__close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e8e8e8;
  background: #fff;
  color: #888;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .15s;
  flex-shrink: 0;
}

.nm-ship-modal__close i {
  font-size: 1rem;
}

.nm-ship-modal__close:hover {
  background: #f5f5f5;
  color: #111;
  border-color: #ccc;
}

.nm-ship-modal__body {
  padding: 8px 26px 26px;
  max-height: 70vh;
  overflow-y: auto;
}

/* Skupina */
.nm-ship-group {
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}

.nm-ship-group:last-of-type {
  border-bottom: none;
}

.nm-ship-group__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.nm-ship-group__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nm-ship-group__icon i {
  font-size: 1.3rem;
  line-height: 1;
}

.nm-ship-group__icon--1 { background: rgba(67,160,71,.10); color: #43a047; }
.nm-ship-group__icon--2 { background: rgba(37,99,235,.10); color: #2563eb; }
.nm-ship-group__icon--3 { background: rgba(244,123,32,.10); color: var(--orange); }

.nm-ship-group__title {
  font-size: 1rem;
  font-weight: 800;
  color: #1a1a1a;
  font-family: 'Barlow', sans-serif;
}

.nm-ship-group__desc {
  font-size: .82rem;
  color: #999;
  font-family: 'Barlow', sans-serif;
}

.nm-ship-group__list {
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
}

/* Řádek */
.nm-ship-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-bottom: 1px solid #f0f0f0;
  transition: background .12s;
}

.nm-ship-row:last-child { border-bottom: none; }
.nm-ship-row:hover { background: #fafafa; }

.nm-ship-row__logo {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}

.nm-ship-row__logo img {
  max-width: 26px;
  max-height: 26px;
  object-fit: contain;
}

.nm-ship-row__logo-fallback {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #555;
  font-family: 'Rajdhani', sans-serif;
}

.nm-ship-row__info { flex: 1; min-width: 0; }

.nm-ship-row__name {
  font-size: .92rem;
  font-weight: 700;
  color: #1a1a1a;
  font-family: 'Barlow', sans-serif;
  line-height: 1.3;
}

.nm-ship-row__sub {
  font-size: .78rem;
  color: #999;
  font-family: 'Barlow', sans-serif;
  margin-top: 2px;
}

.nm-ship-row__price {
  font-size: .92rem;
  font-weight: 800;
  color: #43a047;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
  flex-shrink: 0;
}

.nm-ship-empty {
  color: #999;
  padding: 20px 0;
  text-align: center;
}

.nm-ship-free-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(244,123,32,.06);
  border: 1px solid rgba(244,123,32,.18);
  border-radius: 10px;
  font-size: .88rem;
  color: #555;
  font-family: 'Barlow', sans-serif;
}

.nm-ship-free-note i {
  color: var(--orange);
  font-size: 1.1rem;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .nm-ship-modal__header { padding: 18px 18px; }
  .nm-ship-modal__body { padding: 6px 18px 20px; }
  .nm-ship-modal__title { font-size: 1.25rem; }
}

.nm-ship-trigger {
  cursor: pointer;
  transition: background .15s, border-color .15s;
  border-radius: 8px;
  padding: 6px 8px;
  margin: -6px -8px;
}

.nm-ship-trigger:hover {
  background: rgba(244,123,32,.06);
}

.nm-ship-trigger:hover .shipping-text,
.nm-ship-trigger:hover .shipping-icon,
.nm-ship-trigger:hover .shipping-info-link {
  color: var(--orange-dark);
}

.nm-ship-trigger .shipping-info-link {
  pointer-events: none; /* klik řeší celý wrapper, ikonka je jen vizuál */
}

.nm-suggest__top-img img {
    
    max-width: 100% !important;
    
}