/* Google Fonts import */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Rajdhani:wght@500;600;700&display=swap');  
   :root {
      --orange: #f47b20;
      --orange-dark: #d96a10;
      --nm-primary: #f47b20;
      --dark: #090909;
      --dark2: #1a1a1a;
      --dark3: #222222;
      --dark4: #2a2a2a;
      --border-dark: #2e2e2e;
      --border: #e2e2e2;
      --text-muted: #888;
      --text-light: #ccc;
      --font-heading: 'Rajdhani', sans-serif;
    }
    * { box-sizing: border-box; }

    body {
      background: var(--dark);
      background: #F8F8F7;
      color: #999;
      font-family: 'Barlow', sans-serif;
      margin: 0;
          font-size: 15px;
    }


h1 {
	
	    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    margin-top: 0px;
	
}

a:hover {
	text-decoration: none;
	
}
    /* ── TOPBAR ── */
.topbar {
  background: #0d0d0d;
  border-bottom: 1px solid var(--border-dark);
  font-size: 0.78rem;
  color: var(--text-light);
  padding: 7px 0;
 /* position: sticky;*/
  top: 0;
  z-index: 110;
}
    .topbar .items { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
    .topbar .item { display: flex; align-items: center; gap: 6px; }
    .topbar i { color: var(--orange); font-size: 0.85rem; }
    .topbar svg { color: var(--orange); font-size: 0.85rem; }

    /* ── NAVBAR ── */
.main-nav {
  background: rgba(17,17,17,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  overflow: visible;
}
.main-nav.scrolled {
  background: rgba(17,17,17,0.99);
  border-bottom-color: var(--border);
}
    .main-nav .container-fluid { padding: 0 40px; }
    
        @media (max-width: 1200px) {
    .main-nav .container-fluid { padding: 0 20px; }

    }
    
    .navbar-inner { display: flex; align-items: center; height: 64px; gap: 0; }

    .logo {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      font-weight: 700;
      color: #fff;
      text-decoration: none;
      letter-spacing: -0.5px;
      white-space: nowrap;
      margin-right: 32px;
      display: flex;
      align-items: center;
      line-height: 1;
    }
    .logo span { color: var(--orange); }
	.logo:hover {
		text-decoration: none;
		color: white;
	}
	
.logo { transition: all 0.25s ease; position: relative; }
.logo::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 2px; background: var(--orange); transition: width 0.3s ease; }
.logo:hover::after { width: 100%; }
.logo:hover { color: #fff; text-decoration: none; }
    .nav-links { display: flex; align-items: center; gap: 4px; flex: 1; }
    .nav-links a {
    color: #eee;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 4px;
    transition: color .2s, background .2s;
    white-space: nowrap;
    text-transform: lowercase;
    }
    .nav-links a:hover { color: #fff; background: var(--dark3); }
    .nav-links a.active { color: #fff; }
    .nav-dropdown { display: flex; align-items: center; gap: 3px; cursor: pointer; position: relative; }
    .nav-dropdown i {    margin-top: 3px;
    margin-left: 6px;
    font-size: 0.5rem;
    transition: transform .2s;
}


.nav-links a::after {     content: '';
    position: absolute;
    bottom: 0px;
    left: 14px;
    width: 0;
    height: 1px;
    background: var(--orange);
    transition: width 0.3s ease; }
.nav-links a:hover::after { width: 30px; }



    .nav-dropdown:hover i {   transform: rotate(360deg);}
    .nav-dropdown.open i { transform: rotate(180deg); }

    .nav-actions { display: flex; align-items: center; gap: 8px; margin-left: auto; }
    .search-wrap { position: relative; }
    .search-input {
      background: var(--dark3); border: 1px solid var(--border); border-radius: 6px;
      color: #ccc; font-size: 0.85rem; padding: 8px 36px 8px 14px; width: 220px; outline: none; transition: border-color .2s;
    }
    .search-input::placeholder { color: #666; }
    .search-input:focus { border-color: #555; }
    .search-btn { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); background: none; border: none; color: #888; cursor: pointer; padding: 0; }
    .nav-btn {
      background: none; border: none; color: #ccc; font-size: 0.85rem; padding: 8px 12px;
      cursor: pointer; display: flex; align-items: center; gap: 6px; border-radius: 6px;
      transition: color .2s, background .2s; white-space: nowrap;
      margin-bottom: 0;
    }
    .nav-btn:hover { color: #fff; background: var(--dark3); }
    .nav-btn i { font-size: 1rem; }
    .cart-btn { background: var(--dark3); border: 1px solid var(--border); border-radius: 6px; color: #fff; padding: 8px 14px; }
    .cart-badge { background: var(--orange); color: #fff; font-size: 0.65rem; font-weight: 700; border-radius: 50%; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; }

    /* ── MEGA MENU – fullwidth ── */
/* =========================
   LIGHT MEGA MENU
   ========================= */
/* =========================
   PREMIUM LIGHT MEGA MENU
   ========================= */

.mega-menu {
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;

  background: #ffffff;

  border-top: 1px solid rgba(255,255,255,.4);
  border-bottom: 1px solid #e8e8e8;

  z-index: 999;

  padding: 32px 0 30px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transform: translateY(-8px);

  transition:
    opacity .22s ease,
    transform .22s ease,
    visibility .22s ease;

  box-shadow:
    0 30px 80px rgba(0,0,0,.14);

  border-radius: 0 0 28px 28px;

  overflow: hidden;
  
    max-height: calc(100vh - 80px);   /* nebo třeba 600px, jak chceš */
  overflow-y: auto;
  overflow-x: hidden;
}

.mega-menu.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* subtle gradient */
.mega-menu::before{
  content:'';

  position:absolute;
  inset:0;

  background:
    linear-gradient(
      180deg,
      rgba(248,248,248,.95) 0%,
      rgba(255,255,255,1) 120px
    );

  pointer-events:none;
}

/* inner */
.mega-menu > *{
  position:relative;
  z-index:2;
}

/* shortcuts */
.mega-shortcuts {
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;

  padding-bottom:24px;
  margin-bottom:28px;

  border-bottom:1px solid #ececec;
}

.mega-goal-label {
  font-size:.74rem;
  font-weight:700;

  color:#999;

  text-transform:uppercase;
  letter-spacing:.5px;
}

/* chips */
.mega-chip {
  background:#f7f7f7;

  border:1px solid #ebebeb;

  color:#222;

  font-size:.82rem;
  font-weight:600;

  padding:10px 16px;

  border-radius:999px;

  text-decoration:none;

  transition:
    all .18s ease;

  box-shadow:
    0 2px 10px rgba(0,0,0,.03);
}

.mega-chip:hover {
  background:#fff;

  color:#111;

  border-color:rgba(244,123,32,.45);

  transform:translateY(-1px);

  box-shadow:
    0 12px 24px rgba(0,0,0,.08);
}

/* cols */
.mega-cols {
  display: flex;
  gap: 0;
}

.mega-col {
  flex: 1 1 0;          /* obsahové sloupce stejně široké */
  padding: 0 28px;       /* tohle už tam máš, jen ať zůstane */
  border-right: 1px solid #efefef;
}

    @media (max-width: 1400px) {
.mega-col {

  padding: 0 8px;       /* tohle už tam máš, jen ať zůstane */

}
    
    }

.mega-col:last-child {   /* promo box */
  flex: 0 0 260px;       /* pevná šířka místo 1fr */
}
/* titles */
.mega-col-title {
  display:block;

  color:#111 !important;

  font-size:.82rem;
  font-weight:800;

  text-transform:uppercase;
  letter-spacing:.8px;

  margin-bottom:16px;
  padding-bottom:12px;

  border-bottom:1px solid #ececec;

  text-decoration:none;

  transition:color .18s ease;
}

.mega-col-title:hover {
  color:var(--orange) !important;
}

/* list */
.mega-col ul {
  list-style:none;
  padding:0;
  margin:0;
}

.mega-col ul li {

}

.mega-col ul li a {
  color:#555;

  font-size:.95rem;
  font-weight:500;

  text-decoration:none;

  display:inline-flex;
  align-items:center;
  gap:6px;
display: block;
  transition:
    color .15s ease,
    transform .15s ease;
}

.mega-col ul li a:hover {
  color:#111;

  transform:translateX(2px);
}

.mega-col ul li.more {
  margin-top:16px;
}

.mega-col ul li.more a {
  color:var(--orange);

  font-size:.84rem;
  font-weight:700;
}

/* tags */
.nm-hot-tag {
  background:#ff5a36;

  color:#fff;

  font-size:.62rem;
  font-weight:800;

  padding:4px 8px;

  border-radius:999px;

  line-height:1;

  text-transform:uppercase;

  letter-spacing:.4px;
}

.nm-new-tag {
  background:#43a047;

  color:#fff;

  font-size:.62rem;
  font-weight:800;

  padding:4px 8px;

  border-radius:999px;

  line-height:1;
}

/* promo */
.mega-promo {
  background:
    linear-gradient(
      145deg,
      #ffffff,
      #f7f7f7
    );

  border-radius:22px;

  padding:18px;

  border:1px solid #ececec;

  box-shadow:
    0 20px 40px rgba(0,0,0,.08);

  overflow:hidden;
}

.mega-promo img {
  width:100%;
  aspect-ratio:16/9;

  object-fit:cover;

  border-radius:14px;

  margin-bottom:14px;

  filter:
    brightness(.96)
    contrast(1.02);

  border:1px solid #efefef;
}

.mega-promo-title {
  font-size:1.05rem;
  font-weight:700;

  color:#111;

  margin-bottom:8px;

  line-height:1.3;
}

.mega-promo-sub {
  font-size:.84rem;

  color:#666;

  line-height:1.6;
}

.mega-promo-btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;

  width:100%;

  margin-top:18px;

  background:
    linear-gradient(
      180deg,
      #ff8c32,
      var(--orange)
    );

  color:#fff;

  padding:12px 16px;

  border-radius:14px;

  font-size:.84rem;
  font-weight:700;

  text-decoration:none;

  transition:
    all .18s ease;

  box-shadow:
    0 12px 24px rgba(244,123,32,.18);
}

.mega-promo-btn:hover {
  color:#fff;

  transform:translateY(-1px);

  box-shadow:
    0 18px 34px rgba(244,123,32,.28);
}


    /* ── HERO ── */
.hero {
  position: relative;
  min-height: 500px;
  background: linear-gradient(to right, #0d0d0d 40%, #1a1a1a 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
      
      
.hero-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 75%;
    height: 100%;
    background: linear-gradient(to right, #111 0%, transparent 30%), var(--hero-img) center / cover no-repeat;
    background: linear-gradient(to right, rgba(10, 10, 10, .95) 35%, rgba(10, 10, 10, .16) 80%, rgba(10, 10, 10, .2) 100%), var(--hero-img) center / cover no-repeat;
}
    .hero .container { display: flex; align-items: center; flex: 1; width: 100%; }
    .hero-content {
      position: relative; z-index: 2; padding: 60px 0 40px; max-width: 560px;
      flex: 1; display: flex; flex-direction: column; justify-content: center;
    }
    .hero-content h1 {
      font-family: var(--font-heading);
      font-size: 4rem; font-weight: 700; line-height: 1.05; color: white;
      text-transform: uppercase; margin-bottom: 20px;
      margin-bottom: 60px;
    margin-top: 20px;
    }
    .hero-content p { color: #bbb; font-size: 1rem; line-height: 1.6; margin-bottom: 32px; }

    .btn-orange, .btn-primary, .btn {
      background: var(--orange); color: #fff; border: none; padding: 12px 24px; border-radius: 6px;
      font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; transition: background .2s; cursor: pointer;
    }
    .btn-orange:hover, .btn-primary:hover, .btn:hover { background: var(--orange-dark); color: #fff; }
    .btn-outline-light-custom {
      background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.3); padding: 12px 24px;
      border-radius: 6px; font-weight: 700; font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; transition: border-color .2s, background .2s;
    }
    .btn-outline-light-custom:hover { border-color: #fff; background: rgba(255,255,255,0.05); color: #fff; }

    .hero-usp {
      position: relative; z-index: 2; width: 100%;
      /*background: rgba(0,0,0,0.45);*/ 
      backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
      border-top: 1px solid rgba(255,255,255,0.08);
          border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .hero-usp .usp-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .hero-usp .usp-item { display: flex; align-items: center; gap: 24px; padding: 18px 24px; border-right: 1px solid rgba(255,255,255,0.08); }
    .hero-usp .usp-item:last-child { border-right: none; }
    .hero-usp .usp-icon { color: var(--orange); font-size: 2.4rem; flex-shrink: 0; }
    .hero-usp .usp-item strong { display: block; font-weight: 700; color: #fff; margin-bottom: 10px; }
    .hero-usp .usp-item span { font-size: 0.84rem; color: rgba(255,255,255,0.55); line-height: 1.1; }

    /* ── SECTIONS ── */
    .section-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
    .section-title { font-size: 1.4rem; font-weight: 700; color: #fff; }
    .section-title.light { color: #1a1a1a; }
    .section-link { color: var(--text-muted); font-size: 0.85rem; text-decoration: none; display: flex; align-items: center; gap: 6px; transition: color .2s; }
    .section-link:hover { color: var(--orange); }
    .section-link.light { color: #999; }
    .section-link.light i { color: var(--orange); }

    /* ── TOP KATEGORIE ── */
    .top-kategorie { padding: 15px 0 40px; background: var(--dark)}
    .category-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 10px; }
    .cat-card { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 1 / 1; border: 1px solid #333; cursor: pointer; text-decoration: none; display: block; }
    .cat-card img { width: 100%; height: 100%; object-fit: cover; filter: brightness(1.1); transition: filter .3s, transform .4s; }
    .cat-card:hover img { filter: brightness(1.2); transform: scale(1.05); }
    .cat-card-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 10px; background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%); }
    .cat-card-name { font-weight: 700; color: #fff; line-height: 1.2; }

    /* ── TÝDENNÍ VÝBĚR ── */
    .tydenni-vyber {     padding: 20px 0 10px;; background: #fff; border-top: 4px solid var(--orange); border-bottom: 1px solid #e8e8e8;}
    .bestsellery {     padding: 20px 0 10px; border-bottom: 1px solid #e8e8e8; }
    .znacka-namakanej {     padding: 20px 0 10px; background: #fff; border-bottom: 1px solid #e8e8e8; }
    .product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
    .product-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 10px; overflow: hidden; position: relative; transition: border-color .2s, box-shadow .2s, transform .2s; cursor: pointer; }
    .product-card:hover { border-color: #ccc; box-shadow: 0 6px 20px rgba(0,0,0,0.08); transform: translateY(-3px); }
    .product-img-wrap { position: relative; background: #f7f7f7; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; overflow: hidden; }
    .product-img-wrap img { width: 80%; height: 80%; object-fit: contain; transition: transform .3s; }
    .product-card:hover .product-img-wrap img { transform: scale(1.07); }
    .badge-label { position: absolute; top: 10px; left: 10px; font-size: 0.7rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
    .badge-sale { background: #e53935; color: #fff; }
    .badge-new { background: #43a047; color: #fff; }
    .badge-akce { background: var(--orange); color: #fff; }
    .wishlist-btn { position: absolute; top: 10px; right: 10px; background: rgba(255,255,255,0.9); border: none; color: #aaa; box-shadow: 0 1px 4px rgba(0,0,0,0.1); width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: color .2s; }
    .wishlist-btn:hover { color: #e53935; }
    .product-body { padding: 12px; }
    .product-brand { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
    .product-name { font-size: 0.82rem; font-weight: 600; color: #222; margin-bottom: 10px; line-height: 1.3; min-height: 32px; }
    .product-price { font-size: 1rem; font-weight: 700; color: #1a1a1a; }
    .product-price-old { font-size: 0.75rem; color: var(--text-muted); text-decoration: line-through; margin-left: 6px; }

    /* ── BRANDS ── */
    .brands-section { 
    padding: 20px 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    background: #f7f7f7;
    background: #fff;
    
     }
.brands-grid {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: nowrap;
}

/* BRAND CARD */
.brand-pill {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    margin: 5px;
    /* min-height: 86px; */
    padding: 8px 18px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    background: none;
  /*  border: 1px solid #eaeaea;
    border-radius: 12px; */
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
    cursor: pointer;
    overflow: hidden;
    box-shadow: none;
}



/* LOGO */
.brand-pill img {
    max-height: 48px !important;

    width: auto;

    object-fit: contain;


    transition:
        opacity .18s ease,
        transform .18s ease,
        filter .18s ease;
        filter: grayscale(1);
}

/* HOVER */
.brand-pill:hover {
    transform: translateY(-2px);

 /*   background: #fff;

    border-color: rgba(244,123,32,.32);

    box-shadow:
        0 16px 34px rgba(0,0,0,.08),
        0 4px 18px rgba(244,123,32,.08); */
}

.brand-pill:hover img {
    opacity: 1;

    transform: scale(1.03);

    filter:
        grayscale(0);
}






    /* ── FOOTER ── */
    footer { background: #fff; border-top: 1px solid #e8e8e8; padding: 50px 0 24px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
    .footer-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: #111; margin-bottom: 14px; display: inline-block; }
    .footer-logo span { color: var(--orange); }
    .footer-desc { color: #999; font-size: 0.85rem; line-height: 1.7; }
    .footer-heading { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #1a1a1a; margin-bottom: 14px; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 8px; }
    .footer-links a { color: #999; text-decoration: none; font-size: 0.85rem; transition: color .2s; }
    .footer-links a:hover { color: var(--orange); }
    .footer-bottom { border-top: 1px solid #e8e8e8; padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
    .footer-bottom p { color: #bbb; font-size: 0.8rem; margin: 0; }
    .social-links { display: flex; gap: 10px; }
    .social-link { background: #f5f5f5; border: 1px solid #ddd; color: #999; width: 34px; height: 34px; border-radius: 6px; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 0.9rem; transition: color .2s, border-color .2s; }
    .social-link:hover { color: var(--orange); border-color: var(--orange); background: #fff8f3; }

    /* ── SIDEBAR CART ── */
    .nm-cart-overlay {
      position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 500;
      opacity: 0; pointer-events: none; transition: opacity .25s;
    }
    .nm-cart-overlay.active { opacity: 1; pointer-events: auto; }

    .nm-cart-sidebar {
      position: fixed; top: 0; right: 0; width: 400px; max-width: 100vw; height: 100dvh;
      background: #fff; border-left: 1px solid var(--border);
      display: flex; flex-direction: column; z-index: 501;
      transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1);
    }
    .nm-cart-sidebar.open { transform: translateX(0); }

    .nm-cart-header { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
    .nm-cart-title { display: flex; align-items: center; gap: 10px; font-size: 1rem; font-weight: 700; color: #1a1a1a; }
    .nm-cart-title i { color: var(--orange); font-size: 1.1rem; }
    .nm-cart-count { font-size: 0.75rem; color: var(--text-muted); font-weight: 400; }
.nm-cart-close {
    /* background: #f5f5f5; */
    /* border: 1px solid var(--border); */
    color: #666;
    font-weight: bold;
    font-size: 18px;
}
.nm-cart-close:hover { color: #111; background: #ececec; }
    .nm-cart-items { flex: 1; overflow-y: auto; padding: 18px 22px; display: flex; flex-direction: column; gap: 16px; }
    .nm-cart-items::-webkit-scrollbar { width: 4px; }
    .nm-cart-items::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

    .nm-cart-item-row { display: flex; gap: 14px; align-items: flex-start; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
    .nm-cart-item-row:last-child { border-bottom: none; }
    .nm-cart-item-img { width: 68px; height: 68px; border-radius: 7px; overflow: hidden; background: #fff; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
    .nm-cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
    .nm-cart-item-info { flex: 1; min-width: 0; }
    .nm-cart-item-name { font-size: 0.83rem; font-weight: 600; color: #1a1a1a; line-height: 1.3; margin-bottom: 3px; }
    .nm-cart-item-name a { color: #1a1a1a;}
    .nm-cart-item-variant { font-size: 0.73rem; color: var(--text-muted); margin-bottom: 8px; }
    .nm-cart-item-bottom { display: flex; align-items: center; justify-content: space-between; }
    .nm-cart-qty-ctrl { display: flex; align-items: center; background: var(--dark3); border: 1px solid var(--border); border-radius: 5px; overflow: hidden; }
    .nm-cart-qty-ctrl button { background: none; border: none; color: var(--text-light); width: 28px; height: 28px; cursor: pointer; font-size: 1rem; display: flex; align-items: center; justify-content: center; transition: color .15s, background .15s; }
    .nm-cart-qty-ctrl button:hover { color: #fff; background: var(--dark4); }
    .nm-cart-qty-ctrl span { font-size: 0.82rem; color: #fff; padding: 0 10px; min-width: 28px; text-align: center; }
    
    
    .nm-cart-qty-ctrl {
  background: #f7f7f7;          /* bylo var(--dark3) */
  border: 1px solid var(--border);
}
.nm-cart-qty-ctrl button { color: #666; }       /* bylo var(--text-light) */
.nm-cart-qty-ctrl button:hover { color: #111; background: #ececec; }
.nm-cart-qty-ctrl span { color: #1a1a1a; }       /* bylo #fff */
    
    
    .nm-cart-item-price { font-size: 0.9rem; font-weight: 700; color: var(--orange); }
    .nm-cart-item-remove { background: none; border: none; color: var(--orange); cursor: pointer; font-size: 0.98rem; padding: 4px; transition: color .15s; flex-shrink: 0; margin-top: 2px; }
    .nm-cart-item-remove:hover { color: #e53935; }

    .nm-cart-empty { text-align: center; color: var(--text-muted); font-size: 0.88rem; padding: 48px 0; display: flex; flex-direction: column; align-items: center; gap: 12px; }
    .nm-cart-empty i { font-size: 3rem; color: var(--border); }

    .nm-cart-footer { padding: 18px 22px; border-top: 1px solid var(--border); flex-shrink: 0; display: flex; flex-direction: column; gap: 10px; }
    .nm-cart-free-bar { font-size: 0.75rem; color: var(--text-muted); background: var(--dark3); border-radius: 6px; padding: 10px 14px; }
    .nm-cart-free-bar span { color: var(--orange); font-weight: 700; }
    .nm-shipping-bar { height: 4px; background: var(--dark4); border-radius: 2px; margin-top: 6px; overflow: hidden; }
    .nm-shipping-bar-fill { height: 100%; background: var(--orange); border-radius: 2px; transition: width .4s; }
    .nm-cart-total { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 700; color: #fff; padding: 4px 0; }
    .nm-cart-checkout-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--orange); color: #fff; border: none; border-radius: 7px; padding: 14px; font-size: 0.9rem; font-weight: 700; cursor: pointer; text-decoration: none; transition: background .15s; }
    .nm-cart-checkout-btn:hover { background: var(--orange-dark); color: #fff; }
    .nm-cart-continue { background: none; border: 1px solid var(--border); color: var(--text-light); border-radius: 7px; padding: 10px; font-size: 0.82rem; cursor: pointer; transition: color .15s, border-color .15s; }
    .nm-cart-continue:hover { color: #fff; border-color: #555; }


.nm-cart-free-bar {
  color: #888;
  background: #f7f7f7;          /* bylo var(--dark3) */
}
.nm-shipping-bar { background: #e8e8e8; }   /* bylo var(--dark4) */

.nm-cart-total { color: #1a1a1a; }          /* bylo #fff */

.nm-cart-continue {
  border: 1px solid var(--border);
  color: #666;                 /* bylo var(--text-light) */
}
.nm-cart-continue:hover { color: #111; border-color: #aaa; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1200px) {
      .category-grid { grid-template-columns: repeat(4, 1fr); }
      .product-grid { grid-template-columns: repeat(4, 1fr); }
      .hero-usp .usp-grid { grid-template-columns: repeat(2, 1fr); }
      .mega-cols { grid-template-columns: repeat(2, 1fr) 200px; }
    }
    @media (max-width: 768px) {
      .category-grid { grid-template-columns: repeat(3, 1fr); }
      .product-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .hero-content h1 { font-size: 2.5rem; }
      .nm-cart-sidebar { width: 100vw; }
      .hero-usp .usp-item span {
display: none;
}




    }
    
    .footer-heading--mt {
  margin-top: 20px;
}

.footer-address {
  color: #999;
  font-size: 0.85rem;
}

.footer-payment {
  margin-top: 16px;
}

.footer-wl-link {
  color: var(--orange);
}


.nm-hfilter {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  padding: 12px 0;
  margin-bottom: 20px;
}

.nm-hfilter__spacer {
  flex: 1;
}

.nm-hfilter__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  padding: 0 36px;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  background: #fff;
  font-size: 16px;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  transition: all .15s;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}

.nm-hfilter__btn:hover,
.nm-hfilter__dropdown--open .nm-hfilter__btn {
  border-color: #ccc;
  color: #111;
  background: #f5f5f5;
}

.nm-hfilter__btn--active {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(244,123,32,.25) !important;
}

.nm-hfilter__btn--sort {
  color: #888;
  font-size: 14px;
  padding: 0 20px;
  background: #f5f5f5;
  border-color: transparent;
  box-shadow: none;
}

.nm-hfilter__btn--sort:hover {
  background: #eee;
  border-color: #ccc;
  color: #111;
}

.nm-hfilter__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 17px;
  border-radius: 999px;
  background: rgba(255,255,255,.4);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  min-width: 17px;
  padding: 0 4px;
}

.nm-hfilter__btn:not(.nm-hfilter__btn--active) .nm-hfilter__badge {
  background: var(--orange);
  color: #fff;
}

.nm-hfilter__chevron {
  font-size: 9px;
  transition: transform .2s, opacity .2s;
  opacity: .45;
  margin-left: 2px;
}

.nm-hfilter__dropdown--open .nm-hfilter__chevron {
  transform: rotate(180deg);
  opacity: 1;
}

.nm-hfilter__dropdown {
  position: relative;
}

.nm-hfilter__panel {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 250px;
  max-width: 340px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  z-index: 600;
  overflow: hidden;
}

.nm-hfilter__dropdown--open .nm-hfilter__panel {
  display: flex;
  flex-direction: column;
}

.nm-hfilter__dropdown--sort .nm-hfilter__panel,
.nm-hfilter__panel--sort {
  left: auto;
  right: 0;
  min-width: 190px;
}

.nm-hfilter__search-wrap {
  padding: 10px 12px 8px;
  border-bottom: 1px solid #e8e8e8;
}

.nm-hfilter__search {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  font-size: 13px;
  outline: none;
  font-family: 'Barlow', sans-serif;
  background: #f7f7f7;
  color: #333;
  transition: border-color .15s, background .15s;
}

.nm-hfilter__search::placeholder { color: #aaa; }

.nm-hfilter__search:focus {
  border-color: var(--orange);
  background: #fff;
}

.nm-hfilter__checks {
  max-height: 270px;
  overflow-y: auto;
  padding: 6px 0;
}

.nm-hfilter__checks::-webkit-scrollbar { width: 3px; }
.nm-hfilter__checks::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.nm-check-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 14px;
  cursor: pointer;
  font-size: 13px;
  transition: background .1s;
  font-family: 'Barlow', sans-serif;
  user-select: none;
}

.nm-check-item:hover { background: #f5f5f5; }

.nm-check-item input[type="checkbox"] {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--orange);
  cursor: pointer;
}

.nm-check-item__label {
  flex: 1;
  color: #333;
  font-weight: 500;
}

.nm-check-item__count {
  font-size: 11px;
  color: #999;
  font-weight: 600;
}

.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;
}

.nm-hfilter__clear {
  background: none;
  border: none;
  font-size: 12px;
  color: #999;
  cursor: pointer;
  padding: 4px 6px;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  transition: color .15s;
}

.nm-hfilter__clear:hover { color: #333; }

.nm-hfilter__apply {
  background: var(--orange);
  border: none;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .15s, box-shadow .15s;
  font-family: 'Barlow', sans-serif;
  letter-spacing: .3px;
}

.nm-hfilter__apply:hover {
  background: var(--orange-dark);
  box-shadow: 0 6px 16px rgba(244,123,32,.25);
}

.nm-hfilter__sort-item {
  display: block;
  padding: 10px 16px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  transition: background .1s, color .1s;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
}

.nm-hfilter__sort-item:last-child { border-bottom: none; }

.nm-hfilter__sort-item:hover {
  background: #f5f5f5;
  color: #111;
  text-decoration: none;
}

.nm-hfilter__sort-item--active {
  font-weight: 800;
  color: var(--orange);
  background: rgba(244,123,32,.06);
}

.nm-hfilter__reset {
  font-size: 12px;
  color: #999;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  transition: color .15s;
}

.nm-hfilter__reset:hover { color: #333; text-decoration: none; }

@media (max-width: 767px) {
  .nm-hfilter__btn {
    min-height: 35px;
    padding: 0 16px;
  }

  .nm-hfilter__panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    top: auto;
    max-width: 100%;
    border-radius: 16px 16px 0 0;
    max-height: 70vh;
    overflow-y: auto;
  }
}

.nm-filters {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  padding: 18px 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.nm-filters__quick {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
}

.nm-filters__quick-btn {
display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    text-decoration: none;
    border: 1px solid #e8e8e8;
    background: #f7f7f7;
    transition: border-color .15s, background .15s, color .15s;
    font-family: 'Barlow', sans-serif;
    box-shadow: 0 6px 16px rgba(10, 10, 10, .12) !important;
}

.nm-filters__quick-btn:hover {
  border-color: #ccc;
  color: #111;
  text-decoration: none;
  background: #f0f0f0;
}

.nm-filters__quick-btn--active {
  background: var(--orange) !important;
  border-color: var(--orange) !important;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(244,123,32,.22) !important;
}

.nm-filters__quick-icon {
  font-size: 15px;
  width: 22px;
  text-align: center;
  flex-shrink: 0;
}

.nm-filters__quick-count {
  margin-left: auto;
  font-size: 11px;
  opacity: .55;
  font-weight: 700;
}

.nm-filters__quick-btn--active .nm-filters__quick-count {
  opacity: .8;
}

.nm-filters__section {
  padding: 20px 0 16px;
  border-top: 1px solid #e8e8e8;
}

.nm-filters__section-title {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: #999;
  margin-bottom: 14px;
  font-family: 'Barlow', sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nm-filters__section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e8e8e8;
}

.nm-filters__cat-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-height: 300px;
  overflow-y: auto;
}

.nm-filters__cat-list::-webkit-scrollbar { width: 3px; }
.nm-filters__cat-list::-webkit-scrollbar-thumb { background: #ddd; border-radius: 4px; }

.nm-filters__cat-item {
  display: flex;
  padding: 9px 10px 9px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #555;
  text-decoration: none;
  transition: background .12s, color .12s, padding-left .12s;
  font-family: 'Barlow', sans-serif;
  font-weight: 500;
  border-left: 3px solid transparent;
}

.nm-filters__cat-item:hover {
  background: #f5f5f5;
  color: #111;
  text-decoration: none;
  padding-left: 15px;
}

.nm-filters__cat-item--active {
  background: rgba(244,123,32,.08);
  color: var(--orange) !important;
  font-weight: 700;
  border-left-color: var(--orange);
  padding-left: 15px;
}

.nm-filters__price-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.nm-filters__price-chip {
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 13px;
  border: 1px solid #e8e8e8;
  color: #444;
  text-decoration: none;
  transition: all .15s;
  white-space: nowrap;
  font-family: 'Barlow', sans-serif;
  font-weight: 600;
  background: #f7f7f7;
}

.nm-filters__price-chip:hover {
  border-color: #ccc;
  color: #111;
  text-decoration: none;
  background: #f0f0f0;
}

.nm-filters__price-chip--active {
  background: rgba(244,123,32,.08) !important;
  border-color: var(--orange) !important;
  color: var(--orange) !important;
}


.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;
}

/**** header na browse **/


.header-section.browse .container {
  position: relative;
  z-index: 2;
}

h1.browse-header {
 
font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.05;
    color: white;
    text-transform: uppercase;
    margin-bottom: 10px;

    letter-spacing: -0.01em;
    
}

.browse-description {
  max-width: 540px;
  color: rgba(255,255,255,.72);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 18px;
}

/* Více o této kategorii */
.nm-cat-expand {
  margin-bottom: 20px;
}

.nm-cat-expand__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--orange);
  cursor: pointer;
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  transition: opacity .15s;
}

.nm-cat-expand__btn:hover {
  opacity: .8;
}

.nm-cat-expand__icon {
  width: 14px;
  height: 14px;
  transition: transform .25s ease;
  flex-shrink: 0;
  stroke: var(--orange);
}

.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 .35s ease;
}

.nm-cat-expand__body.nm-cat-expand__body--open {
  max-height: 1000px;
}

.nm-cat-expand__text {
  padding: 14px 0 4px;
  color: rgba(255,255,255,.6);
  font-size: 14px;
  line-height: 1.75;
  max-width: 620px;
}

.nm-cat-expand__text p {
  margin-bottom: 10px;
}

.nm-cat-expand__text ul {
  padding-left: 0;
  margin-bottom: 10px;
  list-style: none;
}

.nm-cat-expand__text li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,.6);
}

.nm-cat-expand__text li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--orange);
  font-weight: 700;
}

.nm-cat-expand__text strong {
  color: rgba(255,255,255,.9);
  font-weight: 700;
}

/* HR oddělovač */
.header-section.browse hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,.1);
  margin: 20px 0 18px;
}

/* Subcat chipy */
.browse-subcat-chip {
    display: inline-flex;
    align-items: center;
    min-height: 46px;
    padding: 0 20px;
    margin: 0 8px 8px 0;
    border-radius: 21px;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .01);
    color: rgba(255, 255, 255, .9) !important;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    transition: all .18s ease;
    backdrop-filter: blur(4px);
}

.browse-subcat-chip:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff !important;
}

.browse-subcat-chip.active {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff !important;
}

@media (max-width: 767px) {
  .header-section.browse {
    padding: 32px 0 24px;
  }

  h1.browse-header {
    font-size: 38px;
  }

  .browse-description {
    font-size: 14px;
  }
}

#breadcrumbs.breadcrumbs {
  background: #111;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

#breadcrumbs .breadcrumb-item,
#breadcrumbs .breadcrumb-item a {
  color: rgba(255,255,255,.45);
}

#breadcrumbs .breadcrumb-item a:hover {
  color: rgba(255,255,255,.85);
}

#breadcrumbs .breadcrumb-item.active a {
  color: rgba(255,255,255,.85);

}

#breadcrumbs .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255,255,255,.25);
}

#breadcrumbs .breadcrumb-toggle {
  color: rgba(255,255,255,.4);
      color: rgba(255, 255, 255, .4);
    background: none;
    margin: 0;
    padding: 0 !important;
}

#breadcrumbs .breadcrumb-toggle:hover {
  color: rgba(255,255,255,.8);
}

.product-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  padding: 10px;
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  border-color: #ddd;
}

/* MEDIA */
.product-media {
  position: relative;

  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0px;
}

.product-image img {
  max-width: 85%;
  max-height: 85%;
  object-fit: contain;
  transition: transform .3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

/* WISHLIST */
.product-wish {
    position: absolute;
    top: 25px;
    right: 0px;
    z-index: 4;
    width: 34px;
    height: 34px;
    /* border: 1px solid #e8e8e8; */
    border-radius: 50%;
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    cursor: pointer;
    transition: color .18s, border-color .18s;
    /* box-shadow: 0 1px 4px rgba(0, 0, 0, .08);*/
}

.product-wish:hover,
.product-wish.active {
  color: #e53935;
  border-color: #f0d0d0;
}

/* BADGE stack */
.nm-badge-stack {
  position: absolute;
  top: 10px;
  left: 0px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 3;
}

.nm-badge {
display: inline-flex;
    align-items: center;
    padding: 3px 9px;
    border-radius: 13px;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
    white-space: nowrap;
    border: 1px solid #ddd;
    background: #fafafa;
    color: #333;
}

.nm-badge--action   { background: #e53935; color: #fff; }
.nm-badge--new      { background: #43a047; color: #fff; }
.nm-badge--outlet   { background: var(--orange); color: #fff; }

/* CONTENT */
.product-content {
padding: 12px 10px 10px;

  display: flex;
  flex-direction: column;
  flex: 1;
  border-top: 1px solid #f0f0f0;
}

/* Brand */
.mf-name {
  margin: 0 0 6px;
}

.mf-name a {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #999;
  text-decoration: none;
  transition: color .15s;
}

.mf-name a:hover {
  color: var(--orange);
}

/* Meta row - skladem + varianty */
.nm-meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.nm-stock {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #43a047;
    background: #ECF4E7;
    padding: 2px 6px;
}

.nm-stock-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #43a047;
  flex-shrink: 0;
}

.nm-variants {
  font-size: 11px;
  font-weight: 500;
  color: #999;
}

/* Název */
.product-name {
  margin: 0 0 10px;
  flex: 1;
}

.product-name a {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  text-decoration: none;
  transition: color .15s;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: left;
}

.product-name a:hover {
  color: var(--orange);
}

/* Cena + košík */
.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.product-price {
  margin: 0;
}

.product-price span {
    font-size: 28px;
    font-weight: 900;
    color: var(--orange-dark);
    line-height: 1;
}

.product-price-old {
  font-size: 12px !important;
  color: #aaa;
  text-decoration: line-through;
  margin-left: 6px;
}

/* Registrovaná cena */
.register-price {
  font-size: 11px;
  color: #aaa;
  margin: 4px 0 0;
}

.register-price a {
  color: var(--orange);
  text-decoration: none;
}

.register-price strong {
  color: #666;
}

/* Košík tlačítko */
.product-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #2a2a2a;
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s;
  flex-shrink: 0;
}

.product-cart-btn:hover {
  background: var(--orange);
  color: #fff;
}

.product-cart-btn i {
  font-size: 14px;
}

/* Výrobce - pravý horní roh v media */
.product-media .mf-name {
  position: absolute;
  top: 0px;
  right: 0px;
  margin: 0;
  z-index: 3;
}

.product-media .mf-name a {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #888;
    text-decoration: none;
    background: #F5f5f5;
    color: #222;
    padding: 0px 14px;
    border-radius: 8px;
}

.product-media .mf-name a:hover {
  color: var(--orange);
}

/* Price wrap */
.product-price-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.product-price-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-price {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.product-price-old {
  font-size: 12px;
  color: #aaa;
  text-decoration: line-through;
  font-weight: 400;
}

.product-price-final {
  font-size: 24px;
  font-weight: 800;
  color: #e53935;
  line-height: 1;

  font-family: var(--font-heading);
}

.register-price {
    font-size: 14px;
    color: #aaa;
    margin: 0;
    letter-spacing: -0.03em;
}

.register-price a {
  color: var(--orange);
  text-decoration: none;
}

.register-price strong {
  color: #555;
}


.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 #e8e8e8;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.nm-feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
  border-color: #ddd;
}

.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: rgba(244,123,32,.08);
  color: var(--orange);
  transition: background .18s ease, transform .18s ease;
}

.nm-feature-card:hover > div:first-child {
  background: rgba(244,123,32,.15);
  transform: scale(1.05);
}

.nm-feature-card svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
}

.nm-feature-card__value {
  margin-bottom: 3px;
  color: #1a1a1a;
  font-size: 20px;
  line-height: 1;
  font-weight: 800;
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: -.02em;
}

.nm-feature-card__label {
  color: #888;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .nm-feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
}

/*** detail produktu **/

/* ── BUYBOX WRAPPER ── */
.inner-section-product .details-content {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,250,251,.98));
  border: 1px solid #eceff3;
  box-shadow: 0 12px 28px rgba(0,0,0,.05);
  padding: 24px;
}

.inner-section-product .details-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange) 0%, #ffaa6d 45%, rgba(255,255,255,0) 100%);
  z-index: 1;
}

/* ── HEADER ── */
.product-header {
  margin-bottom: 18px;
}

.details-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(26px, 2.5vw, 44px);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: #1a1a1a;
  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;
}

.product-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #f6f7f9;
  border: 1px solid rgba(20,20,20,.08);
  color: #555;
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .18s ease;
}

.product-brand-badge i {
  font-size: 11px;
  color: var(--orange);
}

.product-brand-badge:hover {
  background: #fff5f0;
  border-color: rgba(244,123,32,.2);
  color: var(--orange);
}

/* ── KRÁTKÝ POPIS ── */
.details-short-desc ul {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
}

.details-short-desc ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.details-short-desc ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--orange);
  font-weight: 700;
  font-size: 14px;
}

.details-short-desc .text-link {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.details-short-desc .text-link:hover {
  text-decoration: underline;
}

/* ── DOSTUPNOST + DOPRAVA ── */
.product-detail-availability-shipping {
  background: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 10px;
  padding: 12px 16px;
}

.product-detail-availability-shipping-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.product-detail-availability-info,
.product-detail-shipping-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.product-detail-availability-info svg {
  stroke: #43a047;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.product-detail-shipping-info svg {
  stroke: var(--orange);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.availability-text {
  color: #43a047;
  font-weight: 700;
}

.shipping-text {
  color: #555;
  font-size: 13px;
}

.shipping-info-link {
  color: #aaa;
  font-size: 14px;
  text-decoration: none;
  transition: color .15s;
}

.shipping-info-link:hover {
  color: var(--orange);
}

/* ── CENA ── */
.product-detail-price-block {
  display: flex;
  flex-direction: column;
}

.product-detail-price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
}

.details-price {
  font-family: 'Rajdhani', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1;
  letter-spacing: -.02em;
}

.product-detail-current-price {
  color: #1a1a1a;
}

.register-price {
  font-size: 12px;
  color: #aaa;
  margin: 0;
  white-space: nowrap;
}

.register-price a {
  color: var(--orange);
  text-decoration: none;
}

.register-price strong {
  color: #555;
}

/* ── MNOŽSTVÍ + CTA ── */
.product-detail-quantity-and-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-detail-quantity-controls {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}

.product-detail-quantity-btn {
  background: #f5f5f5;
  border: none;
  width: 38px;
  height: 48px;
  cursor: pointer;
  font-size: 16px;
  color: #555;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}

.product-detail-quantity-btn:hover {
  background: #eee;
  color: #111;
}

.product-detail-quantity-input {
  width: 52px;
  height: 48px;
  border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: #1a1a1a;
  background: #fff;
  outline: none;
  -moz-appearance: textfield;
}

.product-detail-quantity-input::-webkit-outer-spin-button,
.product-detail-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.product-detail-btn-add-to-cart {
  flex: 1;
  min-height: 48px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 8px 20px rgba(244,123,32,.25);
}

.product-detail-btn-add-to-cart:hover {
  background: linear-gradient(135deg, var(--orange-dark), #c05a00);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(244,123,32,.32);
  color: #fff;
}

/* ── SDÍLENÍ ── */
.product-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #ececec;
  flex-wrap: wrap;
}

.share-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #aaa;
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  background: #f7f7f7;
  color: #666;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all .18s;
}

.share-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: #fff5f0;
}

.share-whatsapp:hover { border-color: #25d366; color: #25d366; background: #f0fff4; }
.share-email:hover    { border-color: var(--orange); color: var(--orange); }

@media (max-width: 767px) {
  .details-name {
    font-size: 28px;
  }

  .details-price {
    font-size: 30px;
  }

  .product-detail-quantity-and-cta {
    flex-wrap: nowrap;
  }

  .product-detail-btn-add-to-cart {
    font-size: 15px;
  }
}
.product-detail-variant-chip

 {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 25px;
    background: white;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    font-weight: 500;
}
.product-detail-variant-chip.active {
    border-color: var(--orange);
    background:  var(--orange);
    color: white;
}
.availability-icon {
    font-size: unset;
}

.inner-section-product {
    border-top: 4px solid var(--orange);
    margin-top: 0;
    padding-top: 30px;
    margin-bottom: 0;
}

.product-detail-price-block .product-detail-current-price
 {
    font-size: 42px;
    font-weight: 700;
    color: #8bc34a;
    color: #333;
    /* font-size: 28px; */
    font-weight: 900;
    color: var(--orange-dark);
    line-height: 1;
}

.product-detail-price-row {
    display: flex;
    /* align-items: center; */
    gap: 4px;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: unset;
    text-align: left;
}

/**** hero browse bg ***/



.header-section.browse {
  position: relative;
  overflow: hidden;
/*  background:
    linear-gradient(to right, rgba(17,17,17,.95) 35%, rgba(17,17,17,.6) 65%, rgba(17,17,17,.2) 100%),
   var(--hero-img) center / cover no-repeat; */
  background-color: #0d0d0d;
  padding: 5px 0 36px;
  margin-bottom: 24px;
  border-bottom: 4px solid var(--orange);
}
.header-section.browse .breadcrumb {
	margin-bottom: 40px;
	}

.header-section.browse::before {
    content: '';
    position: absolute;
    inset: 0;

    background: rgb(10, 10, 10);
    z-index: 0;
}

.header-section.browse .container {
    position: relative;
    z-index: 1;
}




/***** chatgpt uprava ****/
/* =========================
   NAMAKANEJ HEADER UPGRADE
   ========================= */

:root{
    --nm-glow: rgba(244,123,32,.18);
}

/* NAVBAR */
.main-nav{
    background:
        linear-gradient(
            to bottom,
            rgba(20,20,20,.96) 0%,
            rgba(15,15,15,.94) 100%
        ) !important;

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255,255,255,.06) !important;

    box-shadow:
        0 10px 30px rgba(0,0,0,.28),
        inset 0 -1px 0 rgba(255,255,255,.03);

    transition:
        background .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}

.main-nav.scrolled{
    background:
        linear-gradient(
            to bottom,
            rgba(14,14,14,.985) 0%,
            rgba(10,10,10,.97) 100%
        ) !important;

    box-shadow:
        0 14px 40px rgba(0,0,0,.42),
        0 0 0 1px rgba(255,255,255,.03);
}



/* LOGO */
.logo{
    font-size: 1.78rem;
    letter-spacing: -.8px;
    margin-right: 42px;

    text-shadow:
        0 0 18px rgba(255,255,255,.03);
}

.logo span{
    color: var(--orange);

    text-shadow:
        0 0 16px rgba(244,123,32,.35);
}

.logo::after{
    bottom: -6px;
    height: 2px;
    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            #ffb36c
        );
}

/* MENU */
.nav-links{
    gap: 6px;
}

.nav-links a{
    padding: 11px 15px;
    border-radius: 10px;
    transition: color .22s ease, background .22s ease, transform .22s ease, box-shadow .22s ease;
}

    @media (max-width: 1200px) {
.nav-links a{
    padding: 11px 4px;
}	

    }
    @media (max-width: 1200px) {
.nav-links a{
    padding: 11px 2px;
    font-size: 0.9em;
}	

.logo {
    margin-right: 24px;
}
    }


.nav-links a:hover{
    color: #fff;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.06),
            rgba(255,255,255,.03)
        );

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.04),
        0 8px 20px rgba(0,0,0,.18);

    transform: translateY(-1px);
}

.nav-links a::after{
    left: 15px !important;
    bottom: 7px !important;

    width: 0;
    height: 2px !important;

    border-radius: 999px;

    background:
        linear-gradient(
            90deg,
            var(--orange),
            #ffb36c
        );

    box-shadow:
        0 0 14px rgba(244,123,32,.45);
}

.nav-links a:hover::after{
    width: 38px;
}

/* DROPDOWN ARROW */
.nav-dropdown i{
    opacity: .6;
    transition:
        transform .35s ease,
        opacity .2s ease;
}

.nav-dropdown:hover i{
    opacity: 1;
    transform: rotate(180deg);
}

/* SEARCH */
.search-input{
    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.04),
            rgba(255,255,255,.025)
        ) !important;

    border: 1px solid rgba(255,255,255,.07) !important;

    border-radius: 14px;

    height: 44px;

    color: rgba(255,255,255,.92);

    transition:
        border-color .2s ease,
        background .2s ease,
        box-shadow .2s ease,
        width .2s ease;
}

.search-input::placeholder{
    color: rgba(255,255,255,.38);
}

.search-input:focus{
    border-color: rgba(244,123,32,.55) !important;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.06),
            rgba(255,255,255,.03)
        ) !important;

    box-shadow:
        0 0 0 4px rgba(244,123,32,.08),
        0 8px 24px rgba(0,0,0,.25);
}

/* ACTION BUTTONS */
.nav-btn{
    height: 44px;

    border-radius: 12px;

    color: rgba(255,255,255,.74);

    font-weight: 500;

    transition:
        all .22s ease;
}

.nav-btn:hover{
    color: #fff;

    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,.06),
            rgba(255,255,255,.03)
        );

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,.04),
        0 8px 20px rgba(0,0,0,.18);
}

.nav-btn i{
    font-size: 1.05rem;
}

/* CART */
.cart-btn{
    height: 36px;
    padding: 0 18px;
    border-radius: 8px !important;
    background: linear-gradient(to bottom, rgba(255, 255, 255, .07), rgba(255, 255, 255, .04)) !important;
    border: 1px solid rgba(255, 255, 255, .08) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .22), inset 0 1px 0 rgba(255, 255, 255, .04);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.cart-btn:hover{
    transform: translateY(-1px);

    border-color: rgba(244,123,32,.45) !important;

    box-shadow:
        0 12px 30px rgba(0,0,0,.32),
        0 0 24px rgba(244,123,32,.12);
}

.cart-badge{
    width: 20px;
    height: 20px;

    font-size: .68rem;

    box-shadow:
        0 0 16px rgba(244,123,32,.45);
}


/* HERO IMPROVEMENT */
.hero{
    background:
        radial-gradient(
            circle at top right,
            rgba(244,123,32,.08),
            transparent 30%
        ),
        linear-gradient(
            to right,
            #090909 20%,
            #111 100%
        ) !important;
}



/* BREADCRUMBS */
.breadcrumb,
.breadcrumb a{
    color: rgba(255,255,255,.48) !important;
}

.breadcrumb a:hover{
    color: rgba(255,255,255,.9) !important;
}

.mega-menu .mega-shortcuts a {
    color: #111;
    border-color: #ddd;
    border-radius: 20px;
    background: #f0f0f0;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .004), 0 8px 20px rgba(0, 0, 0, .08);
	
}
.mega-menu .mega-shortcuts a:hover {
    color: #111;
    border-color: var(--orange);
    border-radius: 20px;
    background: #fff;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .004), 0 8px 20px rgba(0, 0, 0, .18);

	
}
.mega-menu .mega-shortcuts a:hover {
	color: #111;

}
/***** chatgpt uprava konec ****/
.blog-browse-card {
	
	display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    position: relative;
    padding: 10px;
}
.blog-title a {
	font-size: 15px;
	    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}



.nm-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  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: 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(0,0,0,.15);
}

.nm-sidebar.open {
  transform: translateX(0);
}

.nm-sidebar-header {
    background: linear-gradient(180deg, rgba(20,20,20,.96), #171717);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid var(--orange);
    flex-shrink: 0;
}

.nm-sidebar-logo {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -.8px;
    line-height: 1;
    text-shadow: 0 0 18px rgba(255,255,255,.03);
}

.nm-sidebar-logo span {
    color: var(--orange);
    text-shadow: 0 0 16px rgba(244,123,32,.35);
}

.nm-sidebar-logo:hover {
    color: #fff;
    text-decoration: none;
}

.nm-sidebar-close {
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 4px;
  transition: color .2s;
}

.nm-sidebar-close:hover {
  color: #fff;
}

.nm-sidebar-goals {
  padding: 12px 16px;
  background: #f7f7f7;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex-shrink: 0;
}

.nm-sidebar-goal-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #555;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 20px;
  padding: 4px 10px;
  text-decoration: none;
  transition: border-color .2s, color .2s;
}

.nm-sidebar-goal-tag:hover {
  border-color: var(--red);
  color: var(--red);
}

.nm-sidebar-goal-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.nm-sidebar-nav {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.nm-sidebar-nav::-webkit-scrollbar { width: 4px; }
.nm-sidebar-nav::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

.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 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-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);
}

.new-slider:not(.slick-initialized) {
    visibility: hidden;
}

.blog-slider-namakanej:not(.slick-initialized) {
    overflow: hidden;
    max-height: 500px; /* přibližná výška slideru */
}

.blog-slider-namakanej:not(.slick-initialized) {
    visibility: hidden;
}

@media (max-width: 575px) {
  .new-slider .product-card {
     width: unset;
  }
}


.nm-mobile-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nm-bg, #111);
  height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nm-mob-logo img { height: 32px; }
.nm-mob-logo span { color: var(--nm-primary, #e63946); }

.nm-mob-btn {
  background: none;
  border: none;
  color: inherit;
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Burger spans */
.nm-mob-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 3px 0;
  transition: .2s;
}

/* Search bar pod headerem */
.nm-mob-search-bar {
  display: none;
  padding: 8px 12px;
  background: var(--nm-bg, #111);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nm-mob-search-bar.is-open { display: block; }


@media (max-width: 768px) {
	.nm-suggest {
    grid-template-columns: 1fr;

}
    .nm-search .search-results {
        width: 100% !important;
        min-width: unset !important;
        max-width: unset !important;
        right: auto !important;
        left: 0 !important;
        border-radius: 0;
        margin-top: 0;
        top: 100% !important;
        max-height: calc(100vh - 56px);
    }
}

/** mobilni header  ***/
/* =========================
   MOBILE HEADER
   ========================= */
/* =========================
   MOBILE HEADER V2
   ========================= */

.nm-mobile-header{
    position: sticky;
    top: 0;

    z-index: 999;

    height: 64px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 14px;

    background:
        linear-gradient(
            180deg,
            rgba(14,14,14,.98),
            rgba(10,10,10,.96)
        );

    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255,255,255,.06);

    box-shadow:
        0 8px 26px rgba(0,0,0,.24);
}

/* subtle orange glow */
.nm-mobile-header::after{
    content:'';

    position:absolute;

    left:0;
    right:0;
    bottom:0;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(244,123,32,.25),
            transparent
        );
}

/* =========================
   LAYOUT
   ========================= */

.nm-mob-left,
.nm-mob-center,
.nm-mob-right{
    display:flex;
    align-items:center;
}

.nm-mob-left{
    
    justify-content:flex-start;
}

.nm-mob-center{
    flex:1;
    justify-content:center;
}

.nm-mob-right{
    justify-content: flex-end;
    gap: 32px;
}

/* =========================
   LOGO
   ========================= */

.nm-mob-logo{
    font-family: var(--font-heading);

    font-size: 2.0rem;
    font-weight: 700;

    color:#fff;

    text-decoration:none;

    letter-spacing:-.6px;

    line-height:1;

    white-space:nowrap;
}

.nm-mob-logo span{
    color:var(--orange);

    text-shadow:
        0 0 12px rgba(244,123,32,.26);
}

.nm-mob-logo:hover{
    color:#fff;
    text-decoration:none;
}

/* =========================
   ICONS
   ========================= */

.nm-mob-icon{
    position:relative;

    width:auto;
    height:auto;

    padding:0;

    border:none;
    background:none;

    color:rgba(255,255,255,.82);

    display:flex;
    align-items:center;
    justify-content:center;

    transition:
        transform .16s ease,
        color .16s ease,
        opacity .16s ease;

    opacity:.92;
}

.nm-mob-icon:hover,
.nm-mob-icon:active{
    color:#fff;

    transform:translateY(-1px);

    opacity:1;
}

.nm-mob-icon svg{
    width:22px;
    height:22px;

    stroke-width:2.1;
}

/* =========================
   BADGE
   ========================= */

.nm-mob-badge{
    position:absolute;

    top:-7px;
    right:-9px;

    min-width:18px;
    height:18px;

    padding:0 5px;

    border-radius:999px;

    background:
        linear-gradient(
            180deg,
            #ff943f,
            var(--orange)
        );

    color:#fff;

    font-size:.62rem;
    font-weight:800;

    display:flex;
    align-items:center;
    justify-content:center;

    line-height:1;

    box-shadow:
        0 8px 18px rgba(244,123,32,.35);

    border:2px solid #111;
}

/* =========================
   BURGER
   ========================= */

.nm-mob-burger{
    width:22px;

    display:flex;
    flex-direction:column;

    gap:4px;
}

.nm-mob-burger span{
    display:block;

    width:100%;
    height:2px;

    border-radius:999px;

    background:#fff;

    transition:
        transform .18s ease,
        width .18s ease,
        opacity .18s ease;
}

.nm-mob-burger span:nth-child(2){
    width:70%;
    margin-left:auto;
}

.nm-mob-burger:hover span:nth-child(2){
    width:100%;
}

/* =========================
   SAFE AREA
   ========================= */

@supports (padding-top: env(safe-area-inset-top)) {

    .nm-mobile-header{
        padding-top: env(safe-area-inset-top);

        height: calc(64px + env(safe-area-inset-top));
    }

}

/* =========================
   MOBILE BOTTOM BAR
   ========================= */

.mobile-menu{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: 999;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    /* border-top: 1px solid rgba(0, 0, 0, .06); */
    /* box-shadow: 0 -4px 24px rgba(0, 0, 0, .08); */
    overflow: visible;
    background: #111;
}

/* subtle top glow */
.mobile-menu::before{
    content:'';

    position:absolute;

    left:0;
    right:0;
    top:0;

    height:1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(244,123,32,.25),
            transparent
        );
}

/* =========================
   ITEMS
   ========================= */

.mobile-menu-item{
    position: relative;

    flex: 1;

    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 5px;

    background: none;
    border: none;

    color: #777;

    text-decoration: none;

    transition:
        color .16s ease,
        transform .16s ease,
        opacity .16s ease;

    opacity: .92;
}

.mobile-menu-item:hover,
.mobile-menu-item:active{
    text-decoration:none;

    color: #111;

    transform: translateY(-1px);

    opacity: 1;
}

/* =========================
   ICONS
   ========================= */

.mobile-menu-item svg{
    width: 22px;
    height: 22px;

    stroke-width: 2;

    transition:
        transform .16s ease,
        color .16s ease,
        stroke .16s ease;
}

.mobile-menu-item:hover svg{
    transform: translateY(-1px);
}

/* =========================
   LABELS
   ========================= */

.mobile-menu-item span{
    font-size: .64rem;
    font-weight: 700;

    letter-spacing: .25px;

    text-transform: uppercase;

    line-height: 1;
}

/* =========================
   BADGES
   ========================= */

.mobile-menu-item sup{
    position: absolute;

    top: 10px;
    right: calc(50% - 18px);

    min-width: 18px;
    height: 18px;

    padding: 0 5px;

    border-radius: 999px;

    background:
        linear-gradient(
            180deg,
            #ff943f,
            var(--orange)
        );

    color: #fff;

    font-size: .62rem;
    font-weight: 800;

    display: flex;
    align-items: center;
    justify-content: center;

    line-height: 1;

    box-shadow:
        0 8px 18px rgba(244,123,32,.20);

    border: 2px solid #fff;
}

/* =========================
   ACTIVE
   ========================= */

.mobile-menu-item.active{
    color: var(--orange);
}

.mobile-menu-item.active svg{
    stroke: var(--orange);
}

/* =========================
   SAFE AREA
   ========================= */

@supports (padding-bottom: env(safe-area-inset-bottom)) {

    .mobile-menu{
        padding-bottom: env(safe-area-inset-bottom);

        height: calc(55px + env(safe-area-inset-bottom));
    }

}
.mobile-menu a span, .mobile-menu button span
 {
    display: none;
}


.mobile-menu a, .mobile-menu button {
    box-shadow: none;

}

@media (max-width: 1400px) {
    .product-detail-quantity-and-cta {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
}


/* === CART DIALOG === */

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 1200px; 
        margin: 1.75rem auto;
    }
}


.nm-cart-dialog {
  position: relative;
  padding: 24px;
  color: #333;
  font-family: inherit;
}

.nm-cd-close {
  position: absolute;
  top: 16px; right: 16px;
  background: none; border: none;
  cursor: pointer; color: inherit;
  opacity: .5; 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: 50%;
  background: #22c55e;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nm-cd-title { font-size: 1.25rem; font-weight: 700; line-height: 1.2; }
.nm-cd-subtitle { font-size: 1.25rem; font-weight: 700; color: var(--nm-primary, #e63946); }

.nm-cd-shipping {
    margin-left: auto;
    margin-right: 30px;
    text-align: right;
    min-width: 275px;
}
.nm-cd-shipping-text { font-size: .82rem; margin-bottom: 6px; }
.nm-cd-shipping-free { color: var(--nm-primary, #e63946); font-weight: 600; }

.nm-cd-progress {
  position: relative;
  height: 6px;
  background: #e5e7eb;
  border-radius: 3px;
  overflow: visible;
}
.nm-cd-progress-bar {
  height: 100%;
  background: var(--nm-primary, #e63946);
  border-radius: 3px;
  transition: width .4s;
}
.nm-cd-progress-icon {
  position: absolute;
  right: -20px; top: 50%;
  transform: translateY(-50%);
  color: var(--nm-primary, #e63946);
}

/* Warning */
.nm-cd-warning {
  background: #fef2f2; border: 1px solid #fca5a5;
  color: #b91c1c; border-radius: 6px;
  padding: 10px 14px; margin-bottom: 16px;
  font-size: .85rem;
}

/* Product row */
.nm-cd-product {
  display: flex; gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 16px;
}
.nm-cd-product-img { flex-shrink: 0; }
.nm-cd-img { width: 72px; height: 72px; object-fit: contain; }
.nm-cd-product-name { font-weight: 600; margin-bottom: 6px; }
.nm-cd-variant { font-weight: 400; color: #6b7280; }
.nm-cd-product-meta { font-size: .82rem; color: #6b7280; display: flex; gap: 8px; flex-wrap: wrap; }
.nm-cd-sep { opacity: .4; }
.nm-cd-price { color: var(--nm-primary, #e63946); }

/* Summary */
.nm-cd-summary {
  display: flex; gap: 16px;
  margin-bottom: 20px;
}
.nm-cd-sum-item {
  flex: 1;
  display: flex; gap: 10px; align-items: center;
  background: #f9fafb;
  border-radius: 8px;
  padding: 12px 16px;
}
.nm-cd-sum-label { font-size: .75rem; color: #6b7280; }
.nm-cd-sum-value { font-size: 1.1rem; font-weight: 700; }

/* Buttons */
.nm-cd-actions {
  display: flex; gap: 12px;
  margin-bottom: 24px;
}
.nm-cd-btn-continue {
  flex: 1; padding: 12px;
  border: 1px solid #d1d5db; border-radius: 6px;
  text-align: center; text-decoration: none;
  color: inherit; font-weight: 500;
  transition: background .15s;
}
.nm-cd-btn-continue:hover { background: #f3f4f6; }
.nm-cd-btn-checkout {
  flex: 1; padding: 12px;
  background: var(--nm-primary, #e63946);
  color: #fff; border-radius: 6px;
  text-align: center; text-decoration: none;
  font-weight: 600; display: flex;
  align-items: center; justify-content: center; gap: 8px;
  transition: opacity .15s;
}
.nm-cd-btn-checkout:hover { opacity: .9; color: #fff; }

/* Related */
.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: 700; font-size: .95rem; }
.nm-cd-related-more { font-size: .82rem; color: #6b7280; text-decoration: none; }
.nm-cd-related-more:hover { color: var(--nm-primary, #e63946); }
.nm-cd-related-sub { font-size: .78rem; color: #9ca3af; margin-bottom: 12px; }

.nm-cd-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.nm-cd-rp { border: 1px solid #f3f4f6; border-radius: 8px; overflow: hidden; }
.nm-cd-rp-img-wrap { display: block; position: relative; padding: 8px; background: #fafafa; 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: 700;
  padding: 2px 6px; border-radius: 3px;
}
.nm-badge-action { background: var(--nm-primary, #e63946); color: #fff; }
.nm-badge-best { background: #f97316; color: #fff; }
.nm-cd-rp-body { padding: 8px 10px 10px; }
.nm-cd-rp-name { display: block; font-size: .78rem; font-weight: 600; color: inherit; text-decoration: none; margin-bottom: 2px; }
.nm-cd-rp-name:hover { color: var(--nm-primary, #e63946); }
.nm-cd-rp-size { font-size: .72rem; color: #9ca3af; margin-bottom: 4px; }
.nm-cd-rp-stars { font-size: .75rem; margin-bottom: 4px; }
.nm-star-on { color: #f59e0b; }
.nm-star-off { color: #d1d5db; }
.nm-cd-rp-orig { font-size: .72rem; color: #9ca3af; text-decoration: line-through; }
.nm-cd-rp-price { font-weight: 700; font-size: .9rem; margin-bottom: 8px; }
.nm-cd-rp-add {
  width: 100%; padding: 6px;
  border: 1px solid #e5e7eb; border-radius: 5px;
  background: none; cursor: pointer; font-size: .78rem;
  display: flex; align-items: center; justify-content: center; gap: 4px;
  transition: all .15s;
}
.nm-cd-rp-add:hover { background: var(--nm-primary, #e63946); color: #fff; border-color: var(--nm-primary, #e63946); }

/* Trust */
.nm-cd-trust {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  border-top: 1px solid #f3f4f6;
  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; color: var(--nm-primary, #e63946); }
.nm-cd-trust-item strong { display: block; font-size: .78rem; }
.nm-cd-trust-item small { font-size: .72rem; color: #9ca3af; }

/* === MOBIL === */
@media (max-width: 767px) {
  .nm-cart-dialog { padding: 16px; }

  .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); }
  .nm-cd-actions { flex-direction: column; }
  .nm-cd-summary { flex-direction: column; }
}

@media (max-width: 767px) {
  /* Bottom sheet */
  #addToCartDialog .modal-dialog {
    margin: 0;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    max-width: 100%;
    transform: none !important;
  }
  #addToCartDialog .modal-content {
    border-radius: 16px 16px 0 0;
    max-height: 92vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* Summary vedle sebe, ne pod sebou */
  .nm-cd-summary {
    flex-direction: row;
  }
  .nm-cd-sum-item {
    padding: 10px 12px;
  }
  .nm-cd-sum-value {
    font-size: .95rem;
  }

  /* Tlačítka — checkout první, větší */
  .nm-cd-actions {
    flex-direction: column-reverse;
  }

  /* Shipping progress schovat na mobilu — šetří místo */
  .nm-cd-shipping {
    display: block;
    margin-left: 0;
    margin-right: 0;
    min-width: 80%;
    text-align: left;
	
  }

  /* Trust 2 sloupce, menší */
  .nm-cd-trust {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  /* Padding dialogu */
  .nm-cart-dialog {
    padding: 16px 14px 24px;
  }

  .nm-cd-product {
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .nm-cd-img {
    width: 80px;
    height: 80px;
  }
  .nm-cd-product-info {
    flex: 1;
    min-width: 0;
  }
  .nm-cd-product-name {
    font-size: .85rem;
    word-break: break-word;
  }
  .nm-cd-product-meta {
    flex-direction: column;
    gap: 2px;
  }
  .nm-cd-sep {
    display: none;
  }
}

@media (max-width: 767px) {
  .nm-cd-img {
    width: 60px;
    height: 60px;
  }
  .nm-cd-product-info {
    min-width: 0;
    overflow: hidden;
  }
  .nm-cd-product-name {
    font-size: .82rem;
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
  }
  
  .nm-cd-product-img {
  flex-shrink: 0;
  width: 80px;
  min-width: 80px;
}

.nm-cd-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.nm-cd-product {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: nowrap;
}

.nm-cd-product-info {
  flex: 1;
  min-width: 0;
}

.nm-cd-product-name {
  font-weight: 600;
  margin-bottom: 6px;
  word-break: break-word;
  white-space: normal;
}

  .nm-cd-product {
    flex-direction: column;
    align-items: flex-start;
  }

  .nm-cd-img {
    width: 100px;
    height: 100px;
  }
  
  
  
}

/* ─── NEWSLETTER BANNER ─────────────────────────────── */
.nm-footer-newsletter {
  background: linear-gradient(to right, #0d0d0d 55%, #111 100%);
  border-top: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
}

.nm-fnl-inner {
  display: grid;
  grid-template-columns: 320px 1fr;  
  align-items: center;
  gap: 40px;
  padding: 48px 0 52px;
  min-height: 220px;
  position: relative;
}

/* Newsletter text + form */
.nm-fnl-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--orange);
  margin: 0 0 10px;
}

.nm-fnl-title {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 10px;
  letter-spacing: -.01em;
}

.nm-fnl-sub {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 280px;
}

.nm-fnl-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 320px;
}

.nm-fnl-form input {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  outline: none;
  color: #fff;
  font-size: .88rem;
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  transition: border-color .18s;
}

.nm-fnl-form input:focus {
  border-color: rgba(244,123,32,.55);
}

.nm-fnl-form input::placeholder { color: rgba(255,255,255,.35); }

.nm-fnl-form button {
  background: var(--orange);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  padding: 12px 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: 'Barlow', sans-serif;
  transition: background .18s;
}

.nm-fnl-form button:hover { background: var(--orange-dark); }

/* USP grid */
.nm-fnl-usps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}

.nm-fnl-usp {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nm-fnl-usp-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(244,123,32,.3);
  background: rgba(244,123,32,.08);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nm-fnl-usp strong {
  display: block;
  color: #fff;
  font-size: .88rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.nm-fnl-usp span {
  display: block;
  color: rgba(255,255,255,.45);
  font-size: .78rem;
  line-height: 1.4;
}

/* Atlet */
.nm-fnl-athlete {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;            /* kolik šířky má foto zabrat – dolaď podle vkusu */
  pointer-events: none;
}

.nm-fnl-athlete img {
  position: absolute;
  right: 0;              /* úplně ke kraji */
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.9) contrast(1.05);
  /* fade doleva, ať plynule přechází do pozadí */
  mask-image: linear-gradient(to left, rgba(0,0,0,1) 55%, transparent 100%);
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 55%, transparent 100%);
}

/* ─── HLAVNÍ FOOTER ─────────────────────────────────── */
.nm-footer {
  background: #111;
  border-top: 4px solid var(--orange);
  padding-top: 48px;
}

.nm-footer-grid {
  display: grid;
  grid-template-columns: 260px repeat(4, 1fr);
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* Brand col */
.nm-footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  letter-spacing: -.5px;
  display: inline-block;
  margin-bottom: 14px;
}

.nm-footer-logo span { color: var(--orange); }
.nm-footer-logo:hover { color: #fff; text-decoration: none; }

.nm-footer-desc {
  color: rgba(255,255,255,.45);
  font-size: .84rem;
  line-height: 1.7;
  margin-bottom: 18px;
}

.nm-footer-socials {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}

.nm-footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  color: rgba(255,255,255,.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all .18s;
}

.nm-footer-social-btn:hover {
  border-color: var(--orange);
  color: var(--orange);
  background: rgba(244,123,32,.08);
}

.nm-footer-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: .84rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
}

.nm-footer-avatars {
  display: flex;
  align-items: center;
  gap: -4px;
}

.nm-footer-avatars img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid #111;
  margin-right: -6px;
  object-fit: cover;
}

.nm-footer-avatars-more {
  margin-left: 10px;
  font-size: .78rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
}

/* Columns */
.nm-footer-heading {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.9);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.nm-footer-heading--mt { margin-top: 24px; }

.nm-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nm-footer-links li {
  margin-bottom: 2px;
}

.nm-footer-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.45);
  font-size: .84rem;
  text-decoration: none;
  padding: 5px 0;
  border-radius: 4px;
  transition: color .15s, padding-left .15s;
}

.nm-footer-links a:hover {
  color: rgba(255,255,255,.9);
  padding-left: 4px;
}

.nm-footer-links a svg { opacity: .4; flex-shrink: 0; }
.nm-footer-links a:hover svg { opacity: .8; }

/* Kontakt list */
.nm-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 4px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nm-footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .84rem;
  color: rgba(255,255,255,.45);
}

.nm-footer-contact-list li svg { flex-shrink: 0; margin-top: 2px; }

.nm-footer-contact-list a {
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-weight: 600;
  display: block;
  transition: color .15s;
}

.nm-footer-contact-list a:hover { color: var(--orange); }

.nm-footer-hours {
  display: block;
  font-size: .76rem;
  color: rgba(255,255,255,.3);
  margin-top: 1px;
}

/* Provozovatel */
.nm-footer-operator {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: .82rem;
  color: rgba(255,255,255,.4);
}

.nm-footer-operator strong {
  color: rgba(255,255,255,.75);
  font-weight: 700;
  font-size: .88rem;
}

/* ─── FOOTER BOTTOM ─────────────────────────────────── */
.nm-footer-bottom {
  background: #0d0d0d;
  border-top: 1px solid rgba(255,255,255,.05);
  padding: 16px 0;
}

.nm-footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.nm-footer-bottom p {
  color: rgba(255,255,255,.3);
  font-size: .78rem;
  margin: 0;
}

.nm-footer-bottom p a {
  color: var(--orange);
  text-decoration: none;
}

.nm-footer-bottom p a:hover { text-decoration: underline; }

/* Platební metody */
.nm-footer-payments {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nm-pay-icon {
  height: 24px;
  width: auto;
  background: #fff;
  border-radius: 4px;
  padding: 2px 6px;
  border: 1px solid #e0e0e0;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1200px) {
  .nm-footer-grid {
    grid-template-columns: 220px repeat(2, 1fr);
    row-gap: 28px;
  }

  .nm-footer-col--contact {
    grid-column: span 2;
  }

  .nm-fnl-inner {
    grid-template-columns: 280px 1fr;
  }

  .nm-fnl-athlete { display: none; }
}

@media (max-width: 768px) {
  .nm-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .nm-footer-brand {
    grid-column: span 2;
  }

  .nm-footer-col--contact {
    grid-column: span 2;
  }

  .nm-fnl-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 32px 0 36px;
  }

  .nm-fnl-title { font-size: 1.5rem; }

  .nm-fnl-usps {
    grid-template-columns: 2 1fr;
    gap: 12px;
  }

  .nm-footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .nm-footer-grid {
    grid-template-columns: 2 1fr;
  }

  .nm-footer-brand,
  .nm-footer-col--contact {
    grid-column: span 1;
  }
}

/************* checkout *******/

.nm-checkout-section {
  background: #f5f5f3;
  min-height: 70vh;
  padding: 28px 0 60px;
}

.nm-checkout-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

/* ── MAIN 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: #888;
}

.nm-co-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #111;
  margin: 0;
  line-height: 1;
}

.nm-co-subtitle {
  font-size: .82rem;
  color: #999;
  margin: 4px 0 0;
}

.nm-co-continue-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  font-size: .84rem;
  font-weight: 600;
  color: #555;
  text-decoration: none;
  transition: all .18s;
}

.nm-co-continue-btn:hover {
  border-color: #aaa;
  color: #111;
  text-decoration: none;
}

/* Guest bar */
.nm-co-guest-bar {
  background: #fff8f3;
  border: 1px solid rgba(244,123,32,.2);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: .84rem;
  color: #666;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nm-co-guest-bar a { color: var(--orange); font-weight: 600; text-decoration: none; }
.nm-co-guest-bar a:hover { text-decoration: underline; }

/* Empty */
.nm-co-empty {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e8e8e8;
  padding: 60px 40px;
  text-align: center;
  color: #aaa;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.nm-co-empty p { font-size: 1rem; color: #aaa; }

/* ── POLOŽKY ─────────────────────────────── */
.nm-co-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
}

.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 #f0f0f0;
  transition: background .15s;
}

.nm-co-item:last-child { border-bottom: none; }
.nm-co-item:hover { background: #fafafa; }

/* Obrázek */
.nm-co-item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  background: #f7f7f7;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid #eee;
}

.nm-co-item-img img {
  max-width: 80%;
  max-height: 80%;
  object-fit: contain;
}

/* Info */
.nm-co-item-brand {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #aaa;
  margin-bottom: 4px;
}

.nm-co-item-name {
  display: block;
  font-size: .95rem;
  font-weight: 700;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 4px;
  transition: color .15s;
}

.nm-co-item-name:hover { color: var(--orange); }

.nm-co-item-variant {
  display: block;
  font-size: .78rem;
  color: #999;
  margin-bottom: 6px;
}

.nm-co-item-stock {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .75rem;
  font-weight: 700;
  color: #43a047;
  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 #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  width: fit-content;
}

.nm-qty-btn {
  width: 34px;
  height: 38px;
  background: #f7f7f7;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  transition: background .15s;
}

.nm-qty-btn:hover { background: #eee; color: #111; }

.nm-qty-input {
  width: 44px;
  height: 38px;
  border: none;
  border-left: 1px solid #e0e0e0;
  border-right: 1px solid #e0e0e0;
  text-align: center;
  font-size: .9rem;
  font-weight: 700;
  color: #111;
  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: #bbb;
  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: 800;
    color: var(--orange);
    font-family: var(--font-heading);
}

.nm-co-item-unit {
  display: block;
  font-size: .75rem;
  color: #aaa;
  margin-top: 2px;
}

.nm-co-item-saving {
  display: block;
  font-size: .72rem;
  color: var(--orange);
  font-weight: 700;
  margin-top: 3px;
}

/* Odebrat */
.nm-co-item-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  padding: 6px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color .15s, background .15s;
}

.nm-co-item-remove:hover { color: #e53935; background: #ffeaea; }

/* ── TABULKA (kompakt) ────────────────────── */
.nm-co-table-wrap {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 12px;
}

.nm-co-table-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 700;
  color: #333;
  font-family: 'Barlow', sans-serif;
  text-align: left;
}

.nm-co-table-sub {
  font-size: .78rem;
  font-weight: 400;
  color: #aaa;
  margin-left: 4px;
}

.nm-co-table-chevron {
  margin-left: auto;
  transition: transform .25s;
  flex-shrink: 0;
}

.nm-co-table-toggle.open .nm-co-table-chevron { transform: rotate(180deg); }

.nm-co-table-body {
  display: none;
  border-top: 1px solid #f0f0f0;
}

.nm-co-table-body.open { display: block; }

.nm-co-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .84rem;
}

.nm-co-table thead th {
  padding: 10px 14px;
  text-align: left;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #aaa;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
}

.nm-co-table tbody tr {
  border-bottom: 1px solid #f5f5f5;
  transition: background .12s;
}

.nm-co-table tbody tr:last-child { border-bottom: none; }
.nm-co-table tbody tr:hover { background: #fafafa; }

.nm-co-table tbody td {
  padding: 10px 14px;
  color: #444;
  vertical-align: middle;
}

.nm-cot-product {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.nm-cot-product img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  background: #f7f7f7;
  border-radius: 6px;
  border: 1px solid #eee;
  flex-shrink: 0;
}

.nm-cot-name {
  display: block;
  font-weight: 600;
  color: #222;
  font-size: .82rem;
  line-height: 1.3;
}

.nm-cot-variant { font-size: .72rem; color: #aaa; }

.nm-cot-qty-select {
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: .82rem;
  font-family: 'Barlow', sans-serif;
  color: #333;
  background: #fff;
  cursor: pointer;
}

.nm-cot-total { font-weight: 700; color: #111; }

.nm-cot-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  transition: color .15s;
}

.nm-cot-remove:hover { color: #e53935; }

/* ── SIDEBAR ─────────────────────────────── */
.nm-checkout-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Doprava */
.nm-cos-shipping-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 18px 20px;
}

.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: #999;
  margin: 0 0 4px;
}

.nm-cos-ship-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--orange);
  font-family: var(--font-heading);
  margin: 0;
  line-height: 1;
}

.nm-cos-ship-free { color: #43a047; font-size: 1rem; }

.nm-cos-ship-bar {
  height: 6px;
  background: #f0f0f0;
  border-radius: 3px;
  overflow: hidden;
  margin-bottom: 6px;
}

.nm-cos-ship-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--orange), #ffaa6d);
  border-radius: 3px;
  transition: width .5s ease;
}

.nm-cos-ship-limits {
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  color: #bbb;
}

/* Doporučení */
.nm-cos-recommend {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
}

.nm-cos-rec-header {
  padding: 14px 16px 10px;
  border-bottom: 1px solid #f0f0f0;
}

.nm-cos-rec-header strong {
  display: block;
  font-size: .88rem;
  color: #111;
}

.nm-cos-rec-sub {
  font-size: .74rem;
  color: #aaa;
}

/* Velké karty */
.nm-cos-rec-grid--big {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
  gap: 8px;
  padding: 12px;
}

.nm-cos-rec-card {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color .18s, box-shadow .18s;
}

.nm-cos-rec-card:hover {
  border-color: #ddd;
  box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.nm-cos-rec-card-img {
  display: block;
  position: relative;
  background: #f7f7f7;
  padding: 8px;
  aspect-ratio: 1;
}

.nm-cos-rec-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nm-cos-rec-badge {
  position: absolute;
  top: 5px;
  left: 5px;
  font-size: .6rem;
  font-weight: 800;
  background: #e53935;
  color: #fff;
  padding: 2px 6px;
  border-radius: 4px;
}

.nm-cos-rec-card-body {
  padding: 8px 10px 10px;
}

.nm-cos-rec-brand {
  display: block;
  font-size: .65rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #bbb;
  margin-bottom: 2px;
}

.nm-cos-rec-name {
  display: block;
  font-size: .76rem;
  font-weight: 600;
  color: #222;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nm-cos-rec-name:hover { color: var(--orange); }

.nm-cos-rec-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.nm-cos-rec-price {
  font-size: .88rem;
  font-weight: 800;
  color: #111;
  font-family: var(--font-heading);
}

.nm-cos-rec-add {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 10px;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: .72rem;
  font-weight: 700;
  color: #333;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: all .15s;
  white-space: nowrap;
}

.nm-cos-rec-add:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}

/* Kompaktní řádky */
.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 #f5f5f5;
  transition: background .12s;
}

.nm-cos-rec-row:last-child { border-bottom: none; }
.nm-cos-rec-row:hover { background: #fafafa; }

.nm-cos-rec-row-img {
  width: 48px;
  height: 48px;
  background: #f7f7f7;
  border-radius: 7px;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #eee;
}

.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-variant-hint {
  display: block;
  font-size: .7rem;
  color: #bbb;
}

.nm-cos-rec-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
  flex-shrink: 0;
}

/* Kupón */
.nm-cos-coupon {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
}

.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: 600;
  color: #555;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  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 #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
}

.nm-cos-coupon-input input {
  flex: 1;
  border: none;
  padding: 10px 12px;
  font-size: .84rem;
  font-family: 'Barlow', sans-serif;
  color: #333;
  outline: none;
}

.nm-cos-coupon-input button {
  background: var(--orange);
  border: none;
  color: #fff;
  padding: 10px 16px;
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  transition: background .15s;
  white-space: nowrap;
}

.nm-cos-coupon-input button:hover { background: var(--orange-dark); }

.nm-cos-coupon-applied {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .84rem;
  color: #43a047;
  background: #f0fff4;
  border-radius: 8px;
  padding: 10px 12px;
}

.nm-cos-coupon-remove { color: #aaa; margin-left: auto; text-decoration: none; }
.nm-cos-coupon-remove:hover { color: #e53935; }

/* Summary */
.nm-cos-summary {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 18px 20px;
}

.nm-cos-sum-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .88rem;
  color: #666;
  padding: 7px 0;
  border-bottom: 1px solid #f5f5f5;
}

.nm-cos-sum-row:first-child { padding-top: 0; }

.nm-cos-sum-val { font-weight: 600; color: #222; }
.nm-cos-sum-discount { color: #e53935; }

.nm-cos-sum-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 14px 0 4px;
  font-size: .9rem;
  font-weight: 800;
  color: #111;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.nm-cos-sum-total-val {
  font-size: 1.7rem;
  font-family: var(--font-heading);
  color: var(--orange);
  line-height: 1;
}

.nm-cos-sum-vat {
  font-size: .72rem;
  color: #bbb;
  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(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  transition: all .18s;
  box-shadow: 0 8px 20px rgba(244,123,32,.25);
  margin-bottom: 14px;
}

.nm-cos-checkout-btn:hover {
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(244,123,32,.32);
}

/* Payments */
.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: #f5f5f5;
  border-radius: 4px;
  padding: 2px 5px;
  border: 1px solid #e8e8e8;
}

.nm-cos-pay-more {
  font-size: .72rem;
  color: #bbb;
}

/* Primary btn */
.nm-co-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .18s;
}

.nm-co-btn-primary:hover { background: var(--orange-dark); color: #fff; }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 992px) {
  .nm-checkout-layout {
    grid-template-columns: 1fr;
  }

  .nm-checkout-sidebar {
    position: static;
    /* Na mobilu přejde sidebar pod main */
  }
}

@media (max-width: 640px) {
  .nm-co-item {
    grid-template-columns: 72px 1fr auto;
    grid-template-rows: auto auto;
    gap: 8px 12px;
  }

  /* Obrázek span 2 řádky */
  .nm-co-item-img {
    width: 72px;
    height: 72px;
    grid-row: 1 / 3;
  }

  /* Info v prvním řádku */
  .nm-co-item-info {
    grid-column: 2;
    grid-row: 1;
  }

  /* Odebrat vpravo nahoře */
  .nm-co-item-remove {
    grid-column: 3;
    grid-row: 1;
    align-self: start;
  }

  /* Cena + množství ve druhém řádku */
  .nm-co-item-price-mob {
    display: block;
    grid-column: 2;
    grid-row: 2;
  }

  .nm-co-item-price-desk { display: none; }

  /* Množství schovat do info oblasti */
  .nm-co-item > .nm-co-item-qty {
    grid-column: 3;
    grid-row: 2;
  }

  .nm-co-title { font-size: 1.4rem; }

  .nm-cos-rec-grid--big {
    grid-template-columns: repeat(2, 1fr);
  }
}

.nm-cart-item-bottom .nm-qty-btn { width: 28px; height: 30px; }
.nm-cart-item-bottom .nm-qty-input { width: 36px; height: 30px; font-size: .82rem; }

.nm-fnl-usp-icon i { font-size: 1.5rem; line-height: 1; }

.nm-fnl-usp-icon {
  width: auto;
  height: auto;
  border: none;
  background: none;
  border-radius: 0;
}

.nm-fnl-usp-icon i {
  font-size: 2.2rem;   /* hero má 2.4rem, ve footeru sedí o chlup míň */
  line-height: 1;
}

.nm-fnl-usp { gap: 18px; }

.nm-fnl-usps {
  max-width: 600px;
}

@media (max-width: 768px) {
  .topbar .items { flex-direction: column; }
  .topbar .item  { display: none;         align-items: center;
        justify-content: center; }
  .topbar .item:first-child { display: flex;         }
}



/* =========================================================
   CHECKOUT – KROKOVACÍ LIŠTA
   ========================================================= */

.nm-co-steps {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
  padding: 20px 28px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.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: rgba(244,123,32,.10);
  border-color: var(--orange);
  color: var(--orange-dark);
}

a.nm-co-step:hover .nm-co-step-label,
a.nm-co-step:hover .nm-co-step-label i {
  color: var(--orange-dark);
}

.nm-co-step-circle {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #e8e8e8;
  background: #fff;
  color: #aaa;
  transition: .18s ease;
}

.nm-co-step-circle i {
  font-size: 24px;
}

.nm-co-step.done   .nm-co-step-circle { background: #43a047; border-color: #43a047; color: #fff; }
.nm-co-step.active .nm-co-step-circle {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 6px 16px rgba(244,123,32,.30);
}
.nm-co-step.future .nm-co-step-circle { background: #f7f7f7; border-color: #e8e8e8; color: #bbb; }

.nm-co-step-label {
  font-size: .72rem;
  font-weight: 800;
  font-family: 'Barlow', sans-serif;
  text-align: center;
  white-space: nowrap;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.nm-co-step.active .nm-co-step-label { color: var(--orange-dark); }
.nm-co-step.done   .nm-co-step-label { color: #43a047; }

.nm-co-step-line {
  flex: 1;
  height: 2px;
  background: #e8e8e8;
  margin: 0 8px 20px;
  border-radius: 2px;
}

.nm-co-step-line.done { background: #43a047; }

@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 #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.nm-sp-card-head { background: #f7f7f7; }

.nm-sp-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(244,123,32,.10);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nm-sp-card-title {
  font-size: 1rem;
  font-weight: 900;
  font-family: 'Rajdhani', sans-serif;
  color: #1a1a1a;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.nm-sp-error {
  padding: 10px 14px;
  background: #fef2f2;
  border: 1px solid rgba(229,57,53,.22);
  border-radius: 8px;
  font-size: .82rem;
  color: #b91c1c;
  font-weight: 700;
}

/* ── Řádky voleb (doprava / platba / země) ── */

#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 #f0f0f0;
  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: #f7f7f7; }

.nm-sp-row--checked { background: rgba(244,123,32,.07) !important; }

/* Skrytí BS col wrapperu */
#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 #e0e0e0;
  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(--orange);
  background: var(--orange);
  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;
  font-family: 'Barlow', sans-serif;
  color: #1a1a1a;
  cursor: pointer;
  margin: 0;
}

/* Cena */
#shipping-methods .price,
#payment-methods  .price {
  font-size: .9rem;
  font-weight: 900;
  font-family: 'Rajdhani', sans-serif;
  color: #1a1a1a;
  white-space: nowrap;
}

/* Skupinové nadpisy */
#shipping-methods h5 {
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #aaa;
  padding: 14px 24px 6px;
  margin: 0;
  border-top: 1px solid #f0f0f0;
  font-family: 'Barlow', sans-serif;
}

#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: rgba(244,123,32,.10);
  border: 1px solid rgba(244,123,32,.25);
  border-radius: 999px;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  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, var(--orange), var(--orange-dark));
  border-color: var(--orange);
  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: #43a047;
  font-weight: 700;
}

/* ── Skupinový nadpis ── */
.nm-sp-group-label {
  font-size: .68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #aaa;
  padding: 12px 24px 4px;
  margin: 0;
  border-top: 1px solid #f0f0f0;
  font-family: 'Barlow', sans-serif;
}

#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: #f7f7f7; }
.nm-sp-row--checked    { background: rgba(244,123,32,.07) !important; }

.nm-sp-row-label {
  font-size: .9rem;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  color: #1a1a1a;
}

.nm-sp-price {
  font-size: .9rem;
  font-weight: 900;
  font-family: 'Rajdhani', sans-serif;
  color: #1a1a1a;
  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: rgba(244,123,32,.10);
  border: 1px solid rgba(244,123,32,.25);
  border-radius: 999px;
  color: var(--orange-dark);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  letter-spacing: .02em;
  transition: .15s;
}

.nm-sp-pick-btn:hover {
  background: linear-gradient(180deg, var(--orange), var(--orange-dark));
  border-color: var(--orange);
  color: #fff;
}

/* ── Info o zvoleném místě ── */
.nm-sp-point-info {
  font-size: .8rem;
  color: #43a047;
  font-weight: 700;
  margin-top: 3px;
}

/* ── Žádná platba ── */
.nm-sp-no-payment {
  font-size: .85rem;
  color: #999;
  background: #f7f7f7;
  margin: 8px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
}

/* =========================================================
   KROK 3 – KONTAKTNÍ ÚDAJE (userInfo)
   ========================================================= */

.nm-sp-card-sub {
  font-size: .78rem;
  color: #aaa;
  margin-top: 2px;
  font-family: 'Barlow', sans-serif;
}

/* Input pole */
.nm-input {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 11px 14px;
  font-size: .9rem;
  font-family: 'Barlow', sans-serif;
  color: #1a1a1a;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
      margin-top: 6px;
}

.nm-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244,123,32,.12);
  outline: none;
}

.nm-input.is-invalid { border-color: #e53935; }

/* 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 #e0e0e0;
  border-radius: 4px;
  accent-color: var(--orange);
  cursor: pointer;
  flex-shrink: 0;
  margin: 0;
}

.nm-ui-check-row .form-check-label {
  font-size: .88rem;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  color: #1a1a1a;
  cursor: pointer;
}

/* Collapse toggle – fakturační adresa */
.nm-ui-collapse-toggle {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Barlow', sans-serif;
  text-align: left;
  transition: background .12s;
}

.nm-ui-collapse-toggle:hover { background: #f7f7f7; }

.nm-ui-chevron {
  flex-shrink: 0;
  transition: transform .25s ease;
  color: #aaa;
}

.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: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 800;
  font-family: 'Barlow', sans-serif;
  color: #aaa;
  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: #aaa;
  font-family: 'Barlow', sans-serif;
}

.nm-ui-pickup-name {
  font-size: 1rem;
  font-weight: 900;
  font-family: 'Rajdhani', sans-serif;
  color: #1a1a1a;
  text-transform: uppercase;
}

.nm-ui-pickup-address {
  font-size: .88rem;
  color: #666;
  font-family: 'Barlow', sans-serif;
}

.nm-ui-change-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .84rem;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  color: var(--orange);
  text-decoration: none;
  transition: opacity .15s;
}

.nm-ui-change-link:hover { opacity: .75; color: var(--orange); }

.nm-ui-pickup-note {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  font-size: .8rem;
  color: #666;
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  padding: 10px 12px;
  font-family: 'Barlow', sans-serif;
}

.nm-ui-pickup-note svg { flex-shrink: 0; margin-top: 1px; }

/* Security note */
.nm-ui-security-note {
  font-size: .76rem;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin: 0;
  font-family: 'Barlow', sans-serif;
}

/* =========================================================
   KROK 4 – SUMMARY
   ========================================================= */

/* Počet položek v nadpisu */
.nm-sm-count {
  font-size: .82rem;
  font-weight: 700;
  color: #aaa;
  margin-left: 4px;
  font-family: 'Barlow', sans-serif;
}

/* Řádek položky */
.nm-sm-item { transition: background .12s; }
.nm-sm-item:hover { background: #f7f7f7; }
.nm-sm-item:last-of-type { border-bottom: none !important; }

.nm-sm-item-img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  border: 1px solid #e8e8e8;
  background: #f7f7f7;
  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;
  font-family: 'Barlow', sans-serif;
  color: #1a1a1a;
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 3px;
  transition: color .15s;
}

.nm-sm-item-name:hover { color: var(--orange); }

.nm-sm-item-variant {
  display: block;
  font-size: .76rem;
  color: #aaa;
  margin-bottom: 3px;
}

.nm-sm-item-notice {
  display: block;
  font-size: .76rem;
  font-weight: 800;
  color: var(--orange-dark);
  margin-bottom: 3px;
}

.nm-sm-item-unit {
  font-size: .76rem;
  color: #aaa;
}

.nm-sm-item-price {
  font-size: 1rem;
  font-weight: 900;
  color: var(--orange-dark);
  font-family: 'Rajdhani', sans-serif;
  letter-spacing: -.03em;
}

.nm-sm-item-qty {
  font-size: .76rem;
  color: #aaa;
  margin-top: 2px;
}

/* Security note v levém sloupci */
.nm-sm-security {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .78rem;
  color: #43a047;
  background: #f0fff4;
  border-radius: 8px;
  padding: 10px 14px;
  margin-top: 4px;
}

.nm-sm-security svg { stroke: #43a047; flex-shrink: 0; }

/* Pravý sloupec – info řádky */
.nm-sm-info-label {
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #aaa;
  font-family: 'Barlow', sans-serif;
}

.nm-sm-info-val {
  font-size: .95rem;
  font-weight: 800;
  font-family: 'Barlow', sans-serif;
  color: #1a1a1a;
}

.nm-sm-info-sub {
  font-size: .84rem;
  color: #666;
}

.nm-sm-info-price {
  font-size: 1rem;
  font-weight: 900;
  color: #1a1a1a;
  font-family: 'Rajdhani', sans-serif;
}

/* Potvrzení – spodní lišta */
.nm-sm-confirm {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 24px 28px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.nm-sm-confirm-btn {
  min-width: 280px;
}

.nm-sm-link {
  color: var(--orange);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nm-sm-link:hover { opacity: .75; color: var(--orange); }

/* =========================================================
   THANK YOU PAGE
   ========================================================= */

.nm-ty-section {
  background: #f5f5f3;
  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: #43a047;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(67,160,71,.25);
  position: relative;
  z-index: 1;
}

/* Dekorativní tečky */
.nm-ty-dot { position: absolute; border-radius: 50%; }
.nm-ty-dot--1 { width: 8px;  height: 8px;  background: #43a047;           top: -8px;   left: 18px;  opacity: .5; }
.nm-ty-dot--2 { width: 6px;  height: 6px;  background: var(--orange);     top: 4px;    right: 10px; opacity: .4; }
.nm-ty-dot--3 { width: 10px; height: 10px; background: rgba(67,160,71,.3);bottom: -4px; left: 8px;  opacity: .6; }
.nm-ty-dot--4 { width: 5px;  height: 5px;  background: rgba(244,123,32,.3);bottom: 8px; right: 4px; opacity: .5; }
.nm-ty-dot--5 { width: 7px;  height: 7px;  background: #43a047;           top: 18px;   left: -10px; opacity: .35; }
.nm-ty-dot--6 { width: 6px;  height: 6px;  background: #e8e8e8;           bottom: 14px;right: -6px; opacity: .5; }

.nm-ty-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -.045em;
  text-transform: uppercase;
  margin: 0 0 12px;
}

.nm-ty-subtitle {
  font-size: 1rem;
  font-family: 'Barlow', sans-serif;
  color: #888;
  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 #e8e8e8;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  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: #e8e8e8;
  flex-shrink: 0;
}

.nm-ty-info-label {
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .10em;
  color: #aaa;
  font-family: 'Barlow', sans-serif;
}

.nm-ty-info-val {
  font-size: 1.1rem;
  font-weight: 900;
  color: #1a1a1a;
  font-family: 'Rajdhani', sans-serif;
  display: flex;
  align-items: center;
  gap: 6px;
}

.nm-ty-info-val--red  { color: var(--orange-dark); }
.nm-ty-info-val--big  { font-size: 1.5rem; letter-spacing: -.04em; }

.nm-ty-info-note {
  font-size: .72rem;
  color: #aaa;
  font-family: 'Barlow', sans-serif;
}

.nm-ty-copy-btn {
  background: none;
  border: none;
  color: #aaa;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 4px;
  transition: color .15s;
}
.nm-ty-copy-btn:hover { color: var(--orange); }

/* ── Doručení karta ── */
.nm-ty-delivery-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f0fff4;
  border: 1px solid rgba(67,160,71,.2);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 20px;
  font-size: .9rem;
  font-family: 'Barlow', sans-serif;
  color: #1a1a1a;
  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: #43a047;
  box-shadow: 0 4px 12px rgba(67,160,71,.15);
}

/* ── Platební údaje ── */
.nm-ty-transfer-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.nm-ty-transfer-title {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.nm-ty-transfer-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: .9rem;
  font-family: 'Barlow', sans-serif;
  color: #888;
}
.nm-ty-transfer-row:last-child { border-bottom: none; }
.nm-ty-transfer-row strong { color: #1a1a1a; font-weight: 900; }

/* ── Kroky co se bude dít ── */
.nm-ty-steps-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 14px;
  padding: 28px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.nm-ty-steps-title {
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Rajdhani', sans-serif;
  color: #1a1a1a;
  text-align: center;
  text-transform: uppercase;
  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: rgba(244,123,32,.10);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.nm-ty-step-icon--done {
  background: rgba(67,160,71,.10);
  color: #43a047;
}

.nm-ty-step-arrow {
  position: absolute;
  top: 14px;
  right: -14px;
  font-size: 1.1rem;
  color: #e8e8e8;
  z-index: 1;
}

.nm-ty-step-num {
  font-size: .84rem;
  font-weight: 900;
  font-family: 'Barlow', sans-serif;
  color: #1a1a1a;
  margin: 0 0 4px;
  letter-spacing: -.01em;
}

.nm-ty-step-desc {
  font-size: .76rem;
  font-family: 'Barlow', sans-serif;
  color: #aaa;
  margin: 0;
  line-height: 1.5;
}

/* ── Akce karty ── */
.nm-ty-action-card {
  background: #f7f7f7;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px;
  height: 100%;
}

.nm-ty-action-title {
  font-size: .95rem;
  font-weight: 900;
  font-family: 'Rajdhani', sans-serif;
  color: #1a1a1a;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.nm-ty-action-desc {
  font-size: .84rem;
  font-family: 'Barlow', sans-serif;
  color: #888;
  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 #1a1a1a;
  border-radius: 999px;
  background: transparent;
  color: #1a1a1a;
  font-size: .84rem;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .04em;
  transition: .18s ease;
}

.nm-ty-btn-outline:hover {
  background: #1a1a1a;
  color: #fff;
}

.nm-ty-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  text-decoration: none;
  border: 1px solid var(--orange);
  transition: .18s ease;
  box-shadow: 0 8px 20px rgba(244,123,32,.25);
}

.nm-ty-btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-dark), #b55500);
  color: #fff;
  box-shadow: 0 12px 28px rgba(244,123,32,.32);
}

.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 #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.nm-ty-usp {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px;
  border-right: 1px solid #e8e8e8;
}

.nm-ty-usp:last-child { border-right: none; }

.nm-ty-usp svg {
  stroke: var(--orange);
  flex-shrink: 0;
}

.nm-ty-usp strong {
  display: block;
  font-size: .84rem;
  font-weight: 900;
  font-family: 'Barlow', sans-serif;
  color: #1a1a1a;
  margin-bottom: 2px;
}

.nm-ty-usp span {
  font-size: .76rem;
  font-family: 'Barlow', sans-serif;
  color: #aaa;
}

/* ── 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 #e8e8e8; }
  .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 #e8e8e8; }
  .nm-ty-usp:last-child { border-bottom: none; }
  .nm-ty-home-btn  { min-width: unset; width: 100%; }
}

/* =========================================================
   ORDER DETAIL
   ========================================================= */

.nm-od-section {
  background: #f5f5f3;
  min-height: 70vh;
  padding: 28px 0 60px;
}

.nm-od-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -.045em;
  text-transform: uppercase;
  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;
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.nm-od-state--green  { background: #f0fff4;            color: #43a047; }
.nm-od-state--red    { background: rgba(244,123,32,.10); color: var(--orange-dark); }
.nm-od-state--orange { background: #fff8ec;            color: #b36a00; }
.nm-od-state--blue   { background: #eef4ff;            color: #2563eb; }
.nm-od-state--gray   { background: #f7f7f7;            color: #aaa; }

.nm-od-state-desc {
  font-size: .82rem;
  font-family: 'Barlow', sans-serif;
  color: #aaa;
}

/* Tlačítka hlavičky */
.nm-od-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #fff;
  color: #1a1a1a;
  font-size: .82rem;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  text-decoration: none;
  cursor: pointer;
  transition: .15s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,.04);
}

.nm-od-btn-outline:hover {
  border-color: #ccc;
  background: #f7f7f7;
  color: #1a1a1a;
}

/* Meta řádky */
.nm-od-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
  padding: 6px 0;
  font-size: .88rem;
  font-family: 'Barlow', sans-serif;
  color: #888;
  border-bottom: 1px solid #f0f0f0;
}

.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(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  text-decoration: none;
  border: 1px solid var(--orange);
  transition: .15s;
  box-shadow: 0 6px 16px rgba(244,123,32,.25);
}

.nm-od-pay-btn:hover {
  background: linear-gradient(135deg, var(--orange-dark), #b55500);
  color: #fff;
}

/* Tabulka položek */
.nm-od-table-head {
  font-size: .72rem;
  font-weight: 900;
  font-family: 'Barlow', sans-serif;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #aaa;
  background: #f7f7f7;
}

.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: #f7f7f7; }
.nm-od-item:last-of-type { border-bottom: none !important; }

.nm-od-item-img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: 1px solid #e8e8e8;
  background: #f7f7f7;
  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;
  font-family: 'Barlow', sans-serif;
  color: #aaa;
  background: #f7f7f7;
}

/* 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: #f7f7f7;
  border: 2px solid #e8e8e8;
  color: #aaa;
  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: rgba(244,123,32,.10);
  border-color: var(--orange);
  color: var(--orange);
}

.nm-od-prog-line {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #e8e8e8;
  z-index: 0;
}

.nm-od-prog-line--done { background: var(--orange); }

.nm-od-prog-label {
  font-size: .82rem;
  font-weight: 800;
  font-family: 'Barlow', sans-serif;
  color: #1a1a1a;
  margin: 0 0 3px;
}

.nm-od-prog-sub {
  font-size: .72rem;
  font-family: 'Barlow', sans-serif;
  color: #aaa;
  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; }
}

.article-layout

 {
    max-width: 1200px;
    margin: 20px auto;
}
.article-layout h1 {
	    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
        margin-bottom: 20px;
    margin-top: 0px;
}

.manufacturers-letter {
	    font-family: var(--font-heading);
	
	}
	
	

.blog-recept .blog-details-content {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 42px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* HEADER */

.blog-detail-head {
    margin-bottom: 34px;
    padding-bottom: 26px;
    border-bottom: 1px solid #e8e8e8;
}

.blog-article-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(244,123,32,.10);
    color: var(--orange-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 18px;
    font-family: 'Barlow', sans-serif;
}

.blog-details-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(32px, 4vw, 42px);
    line-height: .95;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -.03em;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.blog-details-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-details-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #999;
    font-family: 'Barlow', sans-serif;
}

.blog-details-meta i {
    color: var(--orange);
}

/* LAYOUT */

.blog-recipe-layout {
    display: grid;
    grid-template-columns: 5fr 3fr 4fr;
    gap: 42px;
    align-items: start;
}

.blog-details-thumb {
    border-radius: 12px;
    overflow: hidden;
}

.blog-details-thumb img {
    width: 100%;
    display: block;
}

/* RIGHT SIDE */

.recipe-side {
    display: flex;
    flex-direction: column;
    gap: 34px;
}

/* SECTION TITLES */

.blog-recipe-layout h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin-bottom: 20px;
    color: #1a1a1a;
}

/* INGREDIENTS */

.recipe-ingredients {
    padding-bottom: 28px;
    border-bottom: 1px solid #e8e8e8;
}

.recipe-ingredients ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.recipe-ingredients li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 14px;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
    font-family: 'Barlow', sans-serif;
}

.recipe-ingredients li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

/* STEPS */

.recipe-steps ol {
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: recipeSteps;
}

.recipe-steps ol li {
    position: relative;
    counter-increment: recipeSteps;
    padding-left: 58px;
    margin-bottom: 28px;
    font-size: 16px;
    line-height: 1.85;
    color: #444;
    font-family: 'Barlow', sans-serif;
}

.recipe-steps ol li::before {
    content: counter(recipeSteps);
    position: absolute;
    left: 0;
    top: 2px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    box-shadow: 0 4px 12px rgba(244,123,32,.25);
}

/* PRODUCTS */

.recept-products {
    margin-top: 44px;
}

.recept-products h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -.02em;
    margin-bottom: 22px;
    color: #1a1a1a;
}

.recept-products-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.recept-product-chip {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #e8e8e8;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    transition: all .18s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
}

.recept-product-chip:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(244,123,32,.25);
}

/* RELATED CATS */

.related-shop-categories {
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid #e8e8e8;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-tag {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #f7f7f7;
    border: 1px solid #e8e8e8;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    transition: all .18s ease;
}

.category-tag:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* MOBILE */

@media (max-width: 991px) {

    .blog-recept .blog-details-content {
        padding: 24px;
        border-radius: 12px;
    }

    .blog-recipe-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .blog-details-title {
        font-size: 52px;
    }

    .recipe-side h2 {
        font-size: 24px;
    }

}


.blog-filter-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.blog-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-pill {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid #e8e8e8;
    background: #f7f7f7;
    color: #444;
    font-size: 12px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    letter-spacing: .06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all .18s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,.04);
}

.blog-pill:hover,
.blog-pill.active {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 6px 16px rgba(244,123,32,.25);
}

.filter-select {
    height: 44px;
    min-width: 140px;
    padding: 0 12px;
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    font-family: 'Barlow', sans-serif;
    color: #333;
    cursor: pointer;
    transition: border-color .18s ease;
    appearance: none;
}

.filter-select:focus {
    outline: none;
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(244,123,32,.12);
}

.filter-label {
    display: block;
    margin-bottom: 6px;
    font-size: 11px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #999;
}


/* =========================================================
   KONTAKT PAGE
   ========================================================= */

.nm-contact-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.nm-contact-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: #f7f7f7;
    border-bottom: 1px solid #e8e8e8;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #1a1a1a;
}

.nm-contact-card__head i {
    color: var(--orange);
    font-size: 1rem;
    width: 18px;
    text-align: center;
}

/* Klikací řádky – telefon, email */
.nm-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    color: inherit;
    transition: background .15s ease;
}

.nm-contact-row:last-child { border-bottom: none; }
.nm-contact-row--static { cursor: default; }

.nm-contact-row:not(.nm-contact-row--static):hover {
    background: #fdf5ee;
    text-decoration: none;
    color: inherit;
}

.nm-contact-row__icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(244,123,32,.10);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .95rem;
    transition: background .15s ease;
}

.nm-contact-row:not(.nm-contact-row--static):hover .nm-contact-row__icon {
    background: var(--orange);
    color: #fff;
}

.nm-contact-row__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nm-contact-row__label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #999;
    font-family: 'Barlow', sans-serif;
}

.nm-contact-row__value {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    font-family: 'Barlow', sans-serif;
}

.nm-contact-row__arrow {
    color: #ddd;
    font-size: .75rem;
    flex-shrink: 0;
    transition: color .15s, transform .15s;
}

.nm-contact-row:not(.nm-contact-row--static):hover .nm-contact-row__arrow {
    color: var(--orange);
    transform: translateX(2px);
}

/* Sociální tlačítka */
.nm-contact-socials {
    display: flex;
    gap: 8px;
    margin-top: 6px;
}

.nm-contact-social-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid #e8e8e8;
    background: #f7f7f7;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: .9rem;
    transition: all .18s ease;
}

.nm-contact-social-btn:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(244,123,32,.25);
}

/* Info řádky – fakturace, prodejna */
.nm-contact-card__body--info {
    display: flex;
    flex-direction: column;
}

.nm-info-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px;
    border-bottom: 1px solid #f0f0f0;
}

.nm-info-row--top { align-items: flex-start; }
.nm-info-row:last-child { border-bottom: none; }

.nm-info-row > i {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(244,123,32,.08);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .85rem;
}

.nm-info-row > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nm-info-row__label {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #999;
    font-family: 'Barlow', sans-serif;
}

.nm-info-row__value {
    font-size: .92rem;
    font-weight: 600;
    color: #1a1a1a;
    font-family: 'Barlow', sans-serif;
    line-height: 1.5;
}

/* Mapa */
.nm-contact-map {
    height: 400px;
    overflow: hidden;
}

/* Text – O nás */
.nm-contact-card__body--text {
    padding: 20px;
    font-size: .92rem;
    font-family: 'Barlow', sans-serif;
    color: #555;
    line-height: 1.75;
}

/* =========================================================
   DODACÍ PODMÍNKY
   ========================================================= */

.nm-shipping-page {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.nm-shipping-page__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 24px;
    background: #f7f7f7;
    border-bottom: 2px solid var(--orange);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #1a1a1a;
}

.nm-shipping-page__head i {
    color: var(--orange);
    font-size: 1.1rem;
}

.nm-sp-section {
    padding: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.nm-sp-section:last-child { border-bottom: none; }

.nm-sp-section__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #999;
    margin-bottom: 16px;
}

.nm-sp-section__title i {
    color: var(--orange);
    font-size: .8rem;
}

/* Card */
.nm-sp-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
}

.nm-sp-card-head {
    background: #f7f7f7;
    border-bottom: 1px solid #e8e8e8;
}

.nm-sp-card-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(244,123,32,.10);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: .85rem;
}

.nm-sp-card-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: .95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #1a1a1a;
        line-height: 1.5;
}

/* Řádky */
.nm-sp-row {
    transition: background .12s;
}

.nm-sp-row:last-child { border-bottom: none !important; }
.nm-sp-row:hover { background: #fdf5ee; }

.nm-sp-row-label {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: .9rem;
    font-weight: 600;
    color: #1a1a1a;
}

.nm-sp-row-sub {
    display: block;
    font-family: 'Barlow', sans-serif;
    font-size: .78rem;
    color: #999;
    margin-top: 2px;
}

.nm-sp-price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--orange-dark);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Info note */
.nm-sp-info-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 16px;
    background: rgba(244,123,32,.06);
    border: 1px solid rgba(244,123,32,.18);
    border-radius: 10px;
    font-family: 'Barlow', sans-serif;
    font-size: .84rem;
    color: #555;
    line-height: 1.6;
    margin-top: 4px;
}

.nm-sp-info-note i {
    color: var(--orange);
    flex-shrink: 0;
    margin-top: 2px;
}

/* =========================================================
   VOP – OBCHODNÍ PODMÍNKY
   ========================================================= */

.nm-vop {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

/* HLAVIČKA FIRMY */
.nm-vop__firm {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 32px;
    background: #f7f7f7;
    border-bottom: 2px solid var(--orange);
    font-family: 'Barlow', sans-serif;
    font-size: .92rem;
    color: #555;
    line-height: 1.7;
}

.nm-vop__firm-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(244,123,32,.10);
    color: var(--orange);
    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: #1a1a1a;
    font-weight: 800;
}

/* ÚVODNÍ TEXT */
.nm-vop__intro {
    padding: 24px 32px;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Barlow', sans-serif;
    font-size: .9rem;
    color: #666;
    line-height: 1.75;
    background: rgba(244,123,32,.03);
}

/* SEKCE */
.nm-vop__section {
    border-bottom: 1px solid #f0f0f0;
}

.nm-vop__section--last {
    border-bottom: none;
}

/* NADPIS SEKCE */
.nm-vop__heading {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 32px;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Rajdhani', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    color: #1a1a1a;
    cursor: default;
}

.nm-vop__heading i {
    color: var(--orange);
    font-size: .95rem;
    width: 18px;
    text-align: center;
}

.nm-vop__heading-num {
    font-family: 'Rajdhani', sans-serif;
    /*font-size: .78rem;*/
    font-weight: 800;
    color: #bbb;
    letter-spacing: .06em;
    min-width: 28px;
}

/* TĚLO SEKCE */
.nm-vop__body {
    padding: 24px 32px;
    font-family: 'Barlow', sans-serif;
/*    font-size: .9rem;*/
    color: #555;
    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: #1a1a1a;
    font-weight: 700;
}

.nm-vop__para {
    margin-bottom: 14px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f5f5f5;
}

.nm-vop__para:last-of-type {
    border-bottom: none;
}

/* 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: #555;
    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: rgba(244,123,32,.10);
    color: var(--orange-dark);
    font-size: .72rem;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nm-vop__ul li {
    position: relative;
    padding-left: 20px;
    font-size: .9rem;
    color: #555;
    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(--orange);
}

/* ALERTY */
.nm-vop__alert {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    border-radius: 10px;

    font-family: 'Barlow', sans-serif;
    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(244,123,32,.25);
    color: #7a4500;
}

.nm-vop__alert--warning i { color: var(--orange); }

.nm-vop__alert--info {
    background: #eef6ff;
    border: 1px solid rgba(37,99,235,.18);
    color: #1e40af;
}

.nm-vop__alert--info i { color: #2563eb; }

/* HIGHLIGHT – bankovní účet apod. */
.nm-vop__highlight {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: #f7f7f7;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 8px 0 14px;
}

.nm-vop__highlight i { color: var(--orange); }

/* SETTINGS BLOCK */
.nm-vop__settings-block {
    padding: 14px 18px;
    background: rgba(244,123,32,.04);
    border-left: 3px solid var(--orange);
    border-radius: 0 8px 8px 0;
    font-size: .9rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

/* KONTAKTNÍ BOX */
.nm-vop__contact-box {
    background: #f7f7f7;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    overflow: hidden;
    margin-top: 16px;
}

.nm-vop__contact-box-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: #f0f0f0;
    border-bottom: 1px solid #e8e8e8;
    font-family: 'Barlow', sans-serif;
    font-size: .78rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #888;
}

.nm-vop__contact-box-title i { color: var(--orange); }

.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 #efefef;
    font-family: 'Barlow', sans-serif;
    font-size: .88rem;
    color: #444;
}

.nm-vop__contact-row:last-child { border-bottom: none; }

.nm-vop__contact-row i {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: rgba(244,123,32,.08);
    color: var(--orange);
    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: #f0fff4;
    border: 1px solid rgba(67,160,71,.2);
    border-radius: 8px;
    font-family: 'Barlow', sans-serif;
    font-size: .84rem;
    color: #555;
}

.nm-vop__effective i { color: #43a047; }
.nm-vop__effective strong { color: #1a1a1a; }

/* LINKY */
.nm-vop__link {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s;
}

.nm-vop__link:hover {
    opacity: .75;
    text-decoration: underline;
    color: var(--orange);
}

/* RESPONSIVE */
@media (max-width: 767px) {
    .nm-vop__firm,
    .nm-vop__intro,
    .nm-vop__heading,
    .nm-vop__body {
        padding-left: 18px;
        padding-right: 18px;
    }
}

.help-block {
    color: var(--orange-dark);
}


.sidebar-switches {

}

.country-switch {
    display: inline-flex;
}


 
 .sidebar-switches .switch-options {
    display: inline-flex;
    align-items: center;
  /*  background: rgba(255,255,255,.06); */
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}


.sidebar-switches .switch-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 28px;
    border-radius: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-decoration: none;
    color: rgba(255,255,255,.45);
    transition: all .18s ease;
    color: #999;
    background: none;
}


.sidebar-switches .switch-option:hover {
    color: rgba(255,255,255,.85);
    background: rgba(255,255,255,.08);
    text-decoration: none;
}


.sidebar-switches .switch-option.active {
    background: var(--primary);
    color: var(--orange);
    text-decoration: none;
}


/* ── SEARCH OVERLAY ── */

/* Skryjeme původní search-wrap z nav-actions */
.nav-actions .search-wrap {
  display: none;
}

/* Tlačítko s lupou v nav-actions */
.nm-search-toggle {
    background: none;
    border: none;
    color: #ccc;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: start;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 6px;
    transition: color .2s, background .2s;
    padding: 0 10px;
    height: 36px;
    /* max-width: 150px; */
    /* width: 200px; */
    min-width: 200px;
    gap: 4px;
}

@media (max-width: 1600px) {
	.nm-search-toggle {
		min-width: unset;
	}
	
}
.nm-search-toggle:hover { color: #fff; background: var(--dark3); }
.nm-search-toggle.active { color: var(--orange); }

/* Overlay — roztáhne se přes celý navbar (position:absolute na .main-nav) */
.nm-search-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(17,17,17,0.99);
  display: flex;
  align-items: center;
  padding: 0 40px;
  gap: 12px;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity .2s ease, transform .2s ease;
}
.nm-search-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Input uvnitř overlaye */
.nm-search-overlay .search-input {
  flex: 1;
  max-width: 680px;
  margin: 0 auto;
  width: 100%;
  font-size: 1rem;
  padding: 10px 42px 10px 18px;
  background: var(--dark3);
  border: 1px solid #444;
  border-radius: 8px;
  color: #fff;
  outline: none;
}
.nm-search-overlay .search-input:focus {
  border-color: var(--orange);
}

/* Zavírací tlačítko v overlaye */
.nm-search-close {
  background: none;
  border: none;
  color: #888;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  border-radius: 6px;
  transition: color .15s;
  flex-shrink: 0;
}
.nm-search-close:hover { color: #fff; }

/* Výsledky — centrovaně pod inputem */
.nm-search-overlay .search-results {
  position: absolute;
  top: 64px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  max-width: calc(100vw - 80px);
  background: #1a1a1a;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
  z-index: 201;
}

/* nm-suggest layout */
.nm-suggest {
  display: grid;
  grid-template-columns: 1fr 220px;
  grid-template-rows: auto auto;
  min-height: 675px;
}
.nm-suggest__main {
  padding: 16px;
 
}
.nm-suggest__meta {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: none;
}
.nm-suggest__footer {
  grid-column: 1 / -1;
  padding: 12px 16px;

}
.nm-suggest__section-title {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.nm-suggest__hero { margin-bottom: 14px; background: none;}
.nm-suggest__top-product {
  display: flex;
  gap: 12px;
  align-items: center;
  text-decoration: none;
  padding: 8px;
  border-radius: 8px;
  
  transition: background .15s;
}
.nm-suggest__top-product:hover { }
.nm-suggest__top-badge {
  background: var(--orange);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}
.nm-suggest__top-img {

  
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}
.nm-suggest__top-img img {  }
.nm-suggest__top-content { flex: 1; min-width: 0; }
.nm-suggest__top-name {
  
  font-weight: 600;
  
  line-height: 1.3;
  margin-bottom: 3px;
}
.nm-suggest__top-meta { font-size: 0.92rem;  margin-bottom: 4px; }
.nm-suggest__top-price {font-weight: 700; color: var(--orange); }

.nm-suggest__products { display: flex; flex-direction: column; gap: 2px; background: none; border-right: 1px solid var(--nm-line);}
.nm-suggest__item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 7px 8px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .12s;
}

.nm-suggest__item-img img {  }
.nm-suggest__item-name { line-height: 1.3; }
.nm-suggest__item-price {  font-weight: 700; color: var(--orange); }

.nm-suggest__tags { display: flex; flex-direction: column; gap: 6px; }


.nm-suggest__all-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* font-size: 0.82rem; */
    font-weight: 600;
    color: var(--orange);
    text-decoration: none;
    transition: opacity .15s;
    background: none;;
}
.nm-suggest__all-btn:hover { opacity: 0.8; color: var(--orange); }

    .nm-suggest__all-btn{
      background: var(--orange); color: #fff; border: none; padding: 12px 24px; border-radius: 6px;
       font-size: 0.9rem; display: inline-flex; align-items: center; gap: 8px;
      text-decoration: none; transition: background .2s; cursor: pointer;
      justify-content: center;
    }
   .nm-suggest__all-btn:hover { background: var(--orange-dark); color: #fff; }

.nm-suggest__meta-block

 {
    padding: 18px 0px 20px;
}
.nm-suggest__count { font-size: 0.95rem; }
.nm-search .search-results.show {
    display: block;
    border: none;
    background: white;
}
.nm-suggest__tag
 {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 21px;
    border-radius: 999px;
    text-decoration: none;
    font-size: .84rem;
    font-weight: 600;
    color: #2a2a2a;
    background: #fff;
    border: 1px solid #ebebeb;
    transition: all .15s ease;
}

.nm-suggest__tag:hover, .nm-suggest__item:hover {
	
	background: none;
	color: inherit;
	    transform: translateY(-2px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
    border-color: rgba(192, 57, 43, 0.18);
}

.tab-descrip h1 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.05;
    text-transform: none;

    letter-spacing: -0.01em;
    margin-bottom: 10px;
    margin-top: 0px;
}

/* ══ BRAND NAMAKANEJ ══ */
.nm-brand-section {
  background: #0d0d0d;
  padding: 0;
  overflow: hidden;
  border-top: 1px solid #1e1e1e;
  border-bottom: 1px solid #1e1e1e;
}

.nm-brand-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  align-items: center;
  position: relative;
}

.nm-brand-content {
  padding: 60px 48px 60px 0;
  position: relative;
  z-index: 2;
}

.nm-brand-eyebrow {
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--orange);
  margin-bottom: 14px;
}

.nm-brand-title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: .95;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.02em;
  margin: 0 0 20px;
}

.nm-brand-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
  margin-bottom: 28px;
}

.nm-brand-checks {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nm-brand-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .95rem;
  font-weight: 500;
  color: rgba(255,255,255,.80);
  font-family: 'Barlow', sans-serif;
}

.nm-brand-checks li i {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}

.nm-brand-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-size: .95rem;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  text-decoration: none;
  transition: background .18s, transform .18s, box-shadow .18s;
  box-shadow: 0 8px 24px rgba(244,123,32,.28);
}

.nm-brand-btn:hover {
  background: var(--orange-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(244,123,32,.36);
  text-decoration: none;
}

/* IMAGE – desktop */
.nm-brand-img-wrap {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20%;
  right: 0;
  max-width: 1200px;
  overflow: hidden;
}

.nm-brand-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,1) 20%,
    rgba(0,0,0,1) 65%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%,
    rgba(0,0,0,1) 20%,
    rgba(0,0,0,1) 65%,
    transparent 100%
  );
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .nm-brand-inner {
    grid-template-columns: 1fr;
    min-height: unset;
  }

  .nm-brand-content {
    padding: 32px 0 24px;
    order: 0;
  }

  .nm-brand-img-wrap {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    max-width: unset;
    order: 1;
    height: 280px;
    width: calc(100% + 40px);
    margin-left: -20px;
    margin-right: -20px;
  }

  .nm-brand-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    mask-image: none;
    -webkit-mask-image: none;
  }
}

@media (max-width: 576px) {
  .nm-brand-img-wrap {
    height: 240px;
  }

  .nm-brand-btn {
    width: 100%;
    justify-content: center;
  }
}


.nm-blog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.nm-blog-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  text-decoration: none;
  color: inherit;
}

/* IMAGE */
.nm-blog-card__img-wrap {
  position: relative;
  overflow: hidden;
  height: 320px;
  flex-shrink: 0;
}

.nm-blog-card__img {
width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.65) brightness(0.95);
    transition: filter .3s ease, transform .3s ease;
}

.nm-blog-card:hover .nm-blog-card__img {
  filter: saturate(0.55) brightness(0.95);
  transform: scale(1.04);
}

/* BADGE */
.nm-blog-card__badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: var(--orange);
  color: #fff;
  font-size: .65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 10px;
  border-radius: 4px;
}

/* BODY */
.nm-blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px;
}

.nm-blog-card__title {
  font-size: .95rem;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.nm-blog-card__perex {
  font-size: .82rem;
  color: #888;
  line-height: 1.6;
  margin: 0 0 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* FOOTER */
.nm-blog-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
}

.nm-blog-card__date {
  font-size: .78rem;
  color: #bbb;
  font-weight: 600;
}

.nm-blog-card__more {
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 5px;
}

.nm-blog-card__more i {
  font-size: .7rem;
  transition: transform .2s;
}

.nm-blog-card:hover .nm-blog-card__more i {
  transform: translateX(3px);
}

.slick-dots {
	margin-top: 0;
	
}

.blog-part {
	padding: 20px 0 40px;
	}

	
	
	
	/* ══ GOAL PAGE ══ */
.nm-goal-page {
  background: #f5f5f3;
  padding: 32px 0 60px;
}

.nm-goal-section-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: -.01em;
}

/* KATEGORIE */
.nm-goal-cats { margin-bottom: 40px; }

.nm-goal-cats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.nm-goal-cat-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}

.nm-goal-cat-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  border-color: #ddd;
  text-decoration: none;
  color: inherit;
}

.nm-goal-cat-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #f7f7f7;
}

.nm-goal-cat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s;
}

.nm-goal-cat-card:hover .nm-goal-cat-img img {
  transform: scale(1.05);
}

.nm-goal-cat-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
  font-size: 2rem;
}

.nm-goal-cat-body {
  padding: 12px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.nm-goal-cat-name {
  font-size: .9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 6px;
  line-height: 1.3;
}

.nm-goal-cat-desc {
  font-size: .78rem;
  color: #888;
  line-height: 1.5;
  margin: 0 0 10px;
  flex: 1;
}

.nm-goal-cat-link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}

/* PRODUKTY */
.nm-goal-products { margin-bottom: 40px; }

/* BLOG */
.nm-goal-blog { margin-bottom: 40px; }

/* CTA */
.nm-goal-cta {
  background: #0d0d0d;
  border-radius: 16px;
  padding: 40px 48px;
  margin-top: 8px;
}

.nm-goal-cta-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.nm-goal-cta-text { flex: 1; }

.nm-goal-cta-text h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.nm-goal-cta-text p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  margin: 0;
}

.nm-goal-cta-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nm-goal-cta-badges span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  color: rgba(255,255,255,.7);
}

.nm-goal-cta-badges i { color: var(--orange); }

.nm-goal-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--orange);
  color: #fff;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .18s;
}

.nm-goal-cta-btn:hover {
  background: var(--orange-dark);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .nm-goal-cats-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nm-goal-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .nm-goal-cta { padding: 28px 24px; }
  .nm-goal-cta-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .nm-goal-cta-btn { width: 100%; justify-content: center; }
}



/* ══ GOALS SECTION ══ */
.nm-goals-section {
  padding: 40px 0 48px;
  background: #f5f5f3;
  border-bottom: 1px solid #e8e8e8;
}

.nm-goals-intro {
  color: #999;
  font-size: .9rem;
  margin: -12px 0 20px;
  text-align: center;
}

.nm-goals-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* KARTA */
.nm-goal-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-decoration: none;
  color: #fff;
  background: #1a1a1a;
  transition: transform .22s ease, box-shadow .22s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.nm-goal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.25);
  text-decoration: none;
  color: #fff;
}

/* FOTO */
.nm-goal-card__img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.nm-goal-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.75) saturate(.8);
  transition: transform .4s ease, filter .4s ease;
}

.nm-goal-card:hover .nm-goal-card__img img {
  transform: scale(1.04);
  filter: brightness(.85) saturate(.9);
}

/* OVERLAY gradient */
.nm-goal-card__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,.05) 0%,
    rgba(0,0,0,.15) 30%,
    rgba(0,0,0,.5) 75%,
    rgba(0,0,0,.72) 100%
  );
}

/* CONTENT */
.nm-goal-card__content {
  position: relative;
  z-index: 2;
  padding: 24px 22px;
}

/* IKONA */
.nm-goal-card__icon {
width: 84px;
    height: 84px;
    border-radius: 99px;
    background: rgba(244, 123, 32, .08);
    border: 1px solid rgba(244, 123, 32, .35);
    color: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    margin-bottom: 28px;
    transition: background .22s;
}

.nm-goal-card:hover .nm-goal-card__icon {
  background: rgba(244,123,32,.32);
}

/* TITLE */
.nm-goal-card__title {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -.02em;
  line-height: 1;
  margin: 0 0 8px;
}

.nm-goal-card__sub {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, .65);
    line-height: 1.5;
    margin: 0 0 14px;
}

/* BENEFITS */
.nm-goal-card__benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.nm-goal-card__benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .9rem;
    color: rgba(255, 255, 255, .8);
    font-family: 'Barlow', sans-serif;
}

.nm-goal-card__benefits li i {
  color: var(--orange);
  font-size: .8rem;
  flex-shrink: 0;
}

/* TLAČÍTKO */
.nm-goal-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    /* background: var(--orange); */
    border: 1px solid var(--orange);
    color: #fff;
    border-radius: 8px;
    font-size: .84rem;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    transition: background .18s;
}

.nm-goal-card:hover .nm-goal-card__btn {
  background: var(--orange-dark);
}

/* RESPONSIVE */
@media (max-width: 1200px) {
  .nm-goals-grid { grid-template-columns: repeat(2, 1fr); }
  .nm-goal-card { min-height: 360px; }
}

@media (max-width: 576px) {
  .nm-goals-grid { grid-template-columns: 2 1fr; }
  .nm-goal-card { min-height: 300px; }
}




/* =========================================================
   BLOG DETAIL – namakanej.cz
   Styl analogický k .blog-recept, pro .blog-details-part
   ========================================================= */

/* ── WRAPPER ── */
.blog-details-part .blog-details {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    padding: 42px;
    box-shadow: 0 2px 8px rgba(0,0,0,.05);
    margin-bottom: 24px;
}

/* ── HLAVIČKA ── */
.blog-details-part .blog-detail-head {
    margin-bottom: 34px;
    padding-bottom: 26px;
    border-bottom: 1px solid #e8e8e8;
}

.blog-details-part .blog-details-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    line-height: .95;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -.03em;
    color: #1a1a1a;
    margin-bottom: 20px;
    margin-top: 0;
}

.blog-details-part .blog-details-meta {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-details-part .blog-details-meta li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #999;
    font-family: 'Barlow', sans-serif;
}

.blog-details-part .blog-details-meta i {
    color: var(--orange);
}

/* ── INTRO + OBRÁZEK (2 sloupce) ── */
.blog-details-part .blog-details-desc {
    font-size: 17px;
    color: #555;
    line-height: 1.75;
    font-family: 'Barlow', sans-serif;
}

.blog-details-part .blog-details-thumb {
    border-radius: 12px;
    overflow: hidden;
}

.blog-details-part .blog-details-thumb img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

/* ── BODY TEXT ── */
.blog-details-part .blog-details-body {
    margin-top: 36px;
    font-family: 'Barlow', sans-serif;
    font-size: 16px;
    color: #444;
    line-height: 1.85;
}

.blog-details-part .blog-details-body h2 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -.02em;
    color: #1a1a1a;
    margin: 36px 0 16px;
}

.blog-details-part .blog-details-body h3 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -.01em;
    color: #1a1a1a;
    margin: 28px 0 12px;
}

.blog-details-part .blog-details-body p {
    margin-bottom: 18px;
}

.blog-details-part .blog-details-body ul,
.blog-details-part .blog-details-body ol {
    padding-left: 0;
    margin: 0 0 20px;
    list-style: none;
}

.blog-details-part .blog-details-body ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
    color: #444;
}

.blog-details-part .blog-details-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}

.blog-details-part .blog-details-body ol {
    counter-reset: blogSteps;
}

.blog-details-part .blog-details-body ol li {
    position: relative;
    counter-increment: blogSteps;
    padding-left: 54px;
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.75;
    color: #444;
}

.blog-details-part .blog-details-body ol li::before {
    content: counter(blogSteps);
    position: absolute;
    left: 0;
    top: 2px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 800;
    font-family: 'Rajdhani', sans-serif;
    box-shadow: 0 4px 12px rgba(244,123,32,.25);
}

.blog-details-part .blog-details-body a {
    color: var(--orange);
    font-weight: 600;
    text-decoration: none;
    transition: opacity .15s;
}

.blog-details-part .blog-details-body a:hover {
    opacity: .75;
    text-decoration: underline;
}

.blog-details-part .blog-details-body img {
    max-width: 100%;
    border-radius: 10px;
    margin: 12px 0;
}

.blog-details-part .blog-details-body blockquote {
    border-left: 3px solid var(--orange);
    border-radius: 0 8px 8px 0;
    background: rgba(244,123,32,.05);
    padding: 14px 20px;
    margin: 24px 0;
    font-size: 17px;
    color: #555;
    font-style: italic;
}

/* ── RELATED SHOP CATEGORIES ── */
.blog-details-part .related-shop-categories {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid #e8e8e8;
}

.blog-details-part .related-shop-categories .section-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -.02em;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.blog-details-part .category-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-details-part .category-tag {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 999px;
    background: #f7f7f7;
    border: 1px solid #e8e8e8;
    color: #444;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    transition: all .18s ease;
}

.blog-details-part .category-tag:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ── TAGY (podobné) ── */
.blog-details-part .blog-details-footer {
    margin-top: 32px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.blog-details-part .blog-details-tag {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.blog-details-part .blog-details-tag li span {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #999;
    font-family: 'Barlow', sans-serif;
}

.blog-details-part .blog-details-tag li a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #f7f7f7;
    border: 1px solid #e8e8e8;
    color: #444;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    font-family: 'Barlow', sans-serif;
    transition: all .18s ease;
}

.blog-details-part .blog-details-tag li a:hover {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    text-decoration: none;
}

/* ── RELATED ARTICLES ── */
.blog-details-part .blog-details-navigate {
    margin-top: 28px;
}

.blog-details-part .blog-details-prev {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    padding: 20px;
    height: 100%;
    transition: border-color .18s, box-shadow .18s;
}

.blog-details-part .blog-details-prev:hover {
    border-color: var(--orange);
    box-shadow: 0 4px 16px rgba(244,123,32,.12);
}

.blog-details-part .blog-details-prev h4 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -.01em;
    margin: 0;
}

.blog-details-part .blog-details-prev h4 a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color .15s;
}

.blog-details-part .blog-details-prev h4 a:hover {
    color: var(--orange);
}

/* ── MOBIL ── */
@media (max-width: 991px) {
    .blog-details-part .blog-details {
        padding: 24px;
        border-radius: 12px;
    }

    .blog-details-part .blog-details-title {
        font-size: 36px;
    }
}

@media (max-width: 575px) {
    .blog-details-part .blog-details {
        padding: 18px;
    }

    .blog-details-part .blog-details-title {
        font-size: 30px;
    }

    .blog-details-part .blog-details-meta {
        flex-wrap: wrap;
        gap: 10px;
    }
}



    @media (max-width: 768px) {
      .category-grid { grid-template-columns: repeat(3, 1fr); }
      .product-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .hero-content h1 { font-size: 2.5rem; }
      .nm-cart-sidebar { width: 100vw; }
      .hero-usp .usp-item span {
display: none;
}

.nm-goal-card__sub {

    display: none;
}

.nm-goal-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    white-space: nowrap;
}


.hero-usp {
	display: none;

	}


    }
    
.modal-dialog h6{
	color: #222;
	font-weight: bold;
	font-size: 16px;
}    
.modal-dialog {
	color: #222;
}   

.product-card--article {
	margin-bottom: 0;
	    height: auto; 
}

.product-card--article .product-media {
    position: relative;
    text-align: center;
     padding-bottom: 0px; 
     padding-top: 0px; 
    min-height: 200px;
    max-height: 280px;
} 

.product-card--article .product-blog-image img {
	position: relative;
}

.product-card--article .product-content {
    padding: 12px 10px 10px;
    display: flex;
     flex-direction: unset; 
     flex: none; 
    border-top: 1px solid #f0f0f0;
}
 
    
    