/* AVATAR */

.avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--ekor-primary), var(--ekor-accent));
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.5px;
}

/* jemné pulzování */
.calling .avatar {
  animation: pulse 0.8s ease;
}

/* UI */
.ekor-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px;
   border-bottom: 1px solid rgba(0,0,0,0.05);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  position: sticky;
  top: 120px;
  z-index: 50;
  margin: 20px 0;
  scroll-margin-top: 140px;
  background: var(--nav-bg, rgba(248,250,249,0.85));
  transition: background 0.3s ease, box-shadow 0.3s ease;
  
}
.ekor-nav.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.ekor-nav {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8faf9 100%
  );
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* 🔥 ACTIVE SLIDER */
.ekor-nav-indicator {
  position: absolute;
  bottom: 4px;
  height: 3px;
  border-radius: 2px;
  background: var(--ekor-green);
  transition: all 0.3s ease;
  left: 0;
  width: 0;
}

/* Linky */
.ekor-nav a {
  padding: 6px 14px;
  border-radius: 20px;
  background: #eef7f2;
  color: #1D7460;
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s;
  position: relative;
}

.ekor-nav a:hover {
  background: #1D7460;
  color: #fff;
} 

.ekor-nav a.active {
  background: #1D7460;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ===== NAV underline ===== */

.ekor-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #1D7460;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}


/* hover efekt */
.ekor-nav a:hover::after {
  width: 60%;
}

/* aktivní sekce */
.ekor-nav a.active::after {
  width: 80%;
}


.ekor-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ekor-dark);
  margin-bottom: 25px;
  padding-left: 15px;
  position: relative;
  letter-spacing: 0.2px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}


.ekor-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 22px;
  background: linear-gradient(180deg, var(--ekor-primary), var(--ekor-accent));
  border-radius: 3px;
}

.ekor-subtitle {
  font-size: 14px;
  opacity: 0.7;
}


/* SEKCE */
.ekor-section {
  margin-bottom: 70px;
 scroll-margin-top: 140px;
}

.ekor-section-box {
  background: linear-gradient(180deg, #ffffff, #f3f7f4);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  transform: translateZ(0);
}

.ekor-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(
    135deg,
    var(--ekor-accent-start),
    var(--ekor-accent-end)
  );
  color: #fff;
  position: relative;
  top: -1px; /* jemné doladění */
}

.ekor-badge:hover {
  transform: translateY(-1px);
  transition: 0.2s ease;
}

.section-management .ekor-section-box {
  border-left: 4px solid var(--ekor-primary);
}

/* NADPIS */
.ekor-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ekor-dark);
  margin-bottom: 25px;
  padding-left: 15px;
  position: relative;
  letter-spacing: 0.2px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-shadow: var(--text-shadow);

}

.ekor-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    var(--ekor-accent-start),
    var(--ekor-accent-end)
  );
    filter: brightness(1.05);
}

/* ===== KARTA ===== */
.ekor-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;  
  width: 100%;
  opacity: 0;
  /*transform: translateY(30px);*/
  transition: all 0.4s cubic-bezier(.25,.8,.25,1);
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}
    
/* AKTIVNÍ stav */
.ekor-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* gradient top */
.ekor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--ekor-primary), var(--ekor-accent));
}

/* hover */
.ekor-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.12),
    0 0 0 1px rgba(102,187,106,0.25);
    border-color: var(--ekor-accent-start);
}


/* HEADER */
.ekor-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  /* pro zobrazeni karet i tabulky.ekor-card-header {*/
  min-height: 60px;
}


.ekor-card-header h5 {
  margin: 0;
  color: var(--ekor-primary);
  font-weight: 600;
}

.ekor-card-header span {
  font-size: 0.85rem;
  color: #777;
}

/* BODY */
.ekor-card-body {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ekor-card-body a {
  display: flex;
  text-decoration: none;
  color: var(--ekor-text);
  font-size: 0.95rem;
  transition: all 0.2s;
  align-items: center;
  gap: 6px;
}

.ekor-card-body i {
  color: var(--ekor-accent-start);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
}    
    

.ekor-card-body a:hover {
  color: var(--ekor-primary);
  transform: translateX(4px);
}

.ekor-card-body .bi-envelope {
  position: relative;
  top: 1.1px;
}
  

/* RESPONSIVE */
/*@media (max-width: 576px) {
  .ekor-card {
    padding: 16px;
  }
}*/


@media (max-width: 768px) {    
  .ekor-nav {
    display: none;
  }
}

@media (max-width: 768px) {
.ekor-section {
    display: block !important;
  }
.ekor-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    border-radius: 14px;
  }
}

#toggleView {
 border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid #dfe5df;   
}

#toggleView:hover {
  transform: translateY(-2px);
}

#toggleView:hover {
  background: var(--ekor-light);
  transform: translateY(-2px);
}

#toggleView i {
  font-size: 0.9rem;
}


/* Správa */
.section-management .ekor-card::before {
  background: linear-gradient(90deg, var(--ekor-accent-start), var(--ekor-accent-end));
}

/* Skládka */
.section-skladka .ekor-card::before {
  background: linear-gradient(90deg, var(--ekor-accent-start), var(--ekor-accent-end));
}

/* Linka */
.section-linka .ekor-card::before {
  background: linear-gradient(90deg, var(--ekor-accent-start), var(--ekor-accent-end));
}

/* Prodej */
.section-prodej .ekor-card::before {
  background: linear-gradient(90deg, var(--ekor-accent-start), var(--ekor-accent-end));
}

/* Ostatni */
.section-ostatni .ekor-card::before {
  background: linear-gradient(90deg, var(--ekor-accent-start), var(--ekor-accent-end));
}

.section-management .ekor-section-box {
  border-left: 4px solid var(--ekor-primary);
}

.section-skladka .ekor-section-box {
  border-left: 4px solid #1565c0;
}

.section-linka .ekor-section-box {
  border-left: 4px solid #ef6c00;
}

.section-prodej .ekor-section-box {
  border-left: 4px solid #d4a017;
}

.section-ostatni .ekor-section-box {
  border-left: 4px solid #616161;
}


/* ===== GREEN (MANAGEMENT) ===== */
.ekor-section--green .ekor-section-box {
  background: #f1f8f4;
}

.ekor-section--green .ekor-section-box::before {
  background: #2e7d32;
}

/* ===== BLUE (SKLÁDKA) ===== */
.ekor-section--blue .ekor-section-box {
  background: #eef4fb;
}

.ekor-section--blue .ekor-section-box::before {
  background: #1976d2;
}

/* ===== ORANGE (LINKA) ===== */
.ekor-section--orange .ekor-section-box {
  background: #fff4ec;
}

.ekor-section--orange .ekor-section-box::before {
  background: #ef6c00;
}

/* ===== GOLD (PRODEJ) ===== */
.ekor-section--gold .ekor-section-box {
  background: #fff6dc;
}

.ekor-section--gold .ekor-section-box::before {
  background: #d4a017;
}

/* ===== GRAY (OSTATNI) ===== */
.ekor-section--gray .ekor-section-box {
  background: #f5f5f5;
}

.ekor-section--gray .ekor-section-box::before {
  background: #616161;
}


.ekor-section--green {
  --ekor-accent: #2e7d32;
}

.ekor-section--blue {
  --ekor-accent: #1976d2;
}

.ekor-section--orange {
  --ekor-accent: #ef6c00;
}

.ekor-section--gold {
  --ekor-accent: #d4a017;
}

.ekor-section--gray {
  --ekor-accent: #757575;
}

.ekor-section--green .ekor-card {
  --ekor-accent: #2e7d32;
}

.ekor-section--blue .ekor-card {
  --ekor-accent: #1976d2;
}

.ekor-section--orange .ekor-card {
  --ekor-accent: #ef6c00;
}

.ekor-section--gold .ekor-card {
  --ekor-accent: #d4a017;
}

.ekor-section--gray .ekor-card {
  --ekor-accent: #757575;
}

/* NAV COLOR PER SECTION */
.section-management {
  --nav-bg: rgba(47,125,50,0.08);
}

.section-skladka {
  --nav-bg: rgba(21,101,192,0.08);
}

.section-linka {
  --nav-bg: rgba(239,108,0,0.08);
}

.section-prodej {
  --nav-bg: rgba(212,160,23,0.08);
}

.ekor-section--green .avatar {
  background: #2e7d32;
}

.ekor-section--blue .avatar {
  background: #1976d2;
}

.ekor-section--orange .avatar {
  background: #ef6c00;
}

.ekor-section--gold .avatar {
  background: #d4a017;
}

.ekor-section--gray .avatar {
  background: #757575;
}

/* NOVÁ TABULKA VE STYLU GRID */
.ekor-table {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ekor-row {
  display: grid;
  grid-template-columns: 2fr 2fr 1.5fr 1.5fr 2fr;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.ekor-head {
  font-weight: 600;
  font-size: 14px;
  color: #6b7280;
  background: transparent;
  box-shadow: none;
}

.ekor-cell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ekor-cell a {
  display: inline;
  width: 100%;  
  font-weight: 400;
  color: var(--ekor-primary);
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease;
}

.ekor-cell a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--ekor-primary);
  transition: width 0.25s ease;
}

.ekor-cell a:hover::after {
  width: 100%;
}

.ekor-cell i {
  margin-right: 6px;
  color: var(--ekor-accent);
}

.ekor-section.table-view .ekor-table {
  display: flex;
}

.ekor-section.table-view .ekor-cards-wrapper {
  display: none;
}

.ekor-section:not(.table-view) .ekor-table {
  display: none;
}

.ekor-table,
.ekor-cards-wrapper {
  transition: opacity 0.25s ease;
}

.ekor-section:not(.table-view) .ekor-table {
  opacity: 0;
  pointer-events: none;
}

.ekor-section.table-view .ekor-cards-wrapper {
  opacity: 0;
  pointer-events: none;
}

.ekor-row:not(.ekor-head):hover {
  background: #f9fafb;
  transform: translateY(-1px);
  transition: 0.2s ease;
}

@media (max-width: 768px) {
  .ekor-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ekor-cell {
    white-space: normal;
  }

  .ekor-head {
    display: none;
  }
}

@media (max-width: 768px) {
  .ekor-cell::before {
    content: attr(data-label);
    display: block;
    font-size: 12px;
    color: #888;
  }
}

.ekor-toggle {
  display: inline-flex;
  background: #e8f5e9;
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.toggle-btn {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2f7d32;
  cursor: pointer;
  transition: all 0.25s ease;
}

.toggle-btn.active {
  background: #2f7d32;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.toggle-btn:hover {
  opacity: 0.85;
}

.ekor-global-toggle {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.ekor-global-toggle .toggle-btn {
  padding: 6px 12px;
  border-radius: 20px;
}

.calling {
  position: relative;
  overflow: hidden;
}

.calling::after {
  content: "📞 Volám…";
  position: absolute;
  bottom: 10px;
  right: 15px;
  background: var(--ekor-primary);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(10px);
  animation: callFade 0.6s forwards;
}

@keyframes callFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* BODY ITEMS */
.ekor-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 14px;
}

.ekor-item i {
  color: #1D7460;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.ekor-item a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
  z-index: 2;
  display: inline-block;
  padding: 2px 4px;
}


/* ===== LINKS FEEDBACK ===== */

.ekor-item a:active {
  transform: scale(0.96);
  opacity: 0.75;
}

/* ===== ICON SMOOTH ===== */

.ekor-item:hover i {
  transform: translateX(3px);
}

.ekor-item a:hover {
  text-decoration: underline;
}

/* Ekor Komunál */
/* UI */
.ekor-komunal-nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px;
   border-bottom: 1px solid rgba(0,0,0,0.05);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  position: sticky;
  top: 120px;
  z-index: 50;
  margin: 20px 0;
  scroll-margin-top: 140px;
  background: var(--nav-bg, rgba(248,250,249,0.85));
  transition: background 0.3s ease, box-shadow 0.3s ease;
  
}
.ekor-komunal-nav.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.ekor-komunal-nav {
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f8faf9 100%
  );
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* 🔥 ACTIVE SLIDER */
.ekor-komunal-nav-indicator {
  position: absolute;
  bottom: 4px;
  height: 3px;
  border-radius: 2px;
  background: var(--ekor-green);
  transition: all 0.3s ease;
  left: 0;
  width: 0;
}

/* Linky */
.ekor-komunal-nav a {
  padding: 6px 14px;
  border-radius: 20px;
  background: #eef7f2;
  color: #1D7460;
  font-weight: 500;
  text-decoration: none;
  transition: 0.25s;
  position: relative;
}

.ekor-komunal-nav a:hover {
  background: #1D7460;
  color: #fff;
} 

.ekor-komunal-nav a.active {
  background: #1D7460;
  color: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* ===== NAV underline ===== */

.ekor-komunal-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #1D7460;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}


/* hover efekt */
.ekor-komunal-nav a:hover::after {
  width: 60%;
}

/* aktivní sekce */
.ekor-komunal-nav a.active::after {
  width: 80%;
}


.ekor-komunal-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ekor-dark);
  margin-bottom: 25px;
  padding-left: 15px;
  position: relative;
  letter-spacing: 0.2px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}


.ekor-komunal-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 22px;
  background: linear-gradient(180deg, var(--ekor-primary), var(--ekor-accent));
  border-radius: 3px;
}

.ekor-komunal-subtitle {
  font-size: 14px;
  opacity: 0.7;
}


/* SEKCE */
.ekor-komunal-section {
  margin-bottom: 70px;
 scroll-margin-top: 140px;
}

.ekor-komunal-section-box {
  background: linear-gradient(180deg, #ffffff, #f3f7f4);
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.06);
  transform: translateZ(0);
}

.ekor-komunal-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(
    135deg,
    var(--ekor-accent-start),
    var(--ekor-accent-end)
  );
  color: #fff;
  position: relative;
  top: -1px; /* jemné doladění */
}

.ekor-komunal-badge:hover {
  transform: translateY(-1px);
  transition: 0.2s ease;
}

.section-komunal-management .ekor-komunal-section-box {
  border-left: 4px solid var(--ekor-primary);
}

/* NADPIS */
.ekor-komunal-section-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--ekor-dark);
  margin-bottom: 25px;
  padding-left: 15px;
  position: relative;
  letter-spacing: 0.2px;
  display: flex;
  align-items: baseline;
  gap: 8px;
  text-shadow: var(--text-shadow);
}

.ekor-komunal-section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 22px;
  border-radius: 3px;
  background: linear-gradient(
    180deg,
    var(--ekor-accent-start),
    var(--ekor-accent-end)
  );
    filter: brightness(1.05);
}

/* ===== KARTA ===== */
.ekor-komunal-card {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;  
  width: 100%;
  opacity: 0;
  /*transform: translateY(30px);*/
  transition: all 0.4s cubic-bezier(.25,.8,.25,1);
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}
    
/* AKTIVNÍ stav */
.ekor-komunal-card.show {
  opacity: 1;
  transform: translateY(0);
}

/* gradient top */
.ekor-komunal-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, var(--ekor-primary), var(--ekor-accent));
}

/* hover */
.ekor-komunal-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 
    0 25px 50px rgba(0,0,0,0.12),
    0 0 0 1px rgba(102,187,106,0.25);
    border-color: var(--ekor-accent-start);
}


/* HEADER */
.ekor-komunal-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  /* pro zobrazeni karet i tabulky.ekor-card-header {*/
  min-height: 60px;
}


.ekor-komunal-card-header h5 {
  margin: 0;
  color: var(--ekor-primary);
  font-weight: 600;
}

.ekor-komunal-card-header span {
  font-size: 0.85rem;
  color: #777;
}

/* BODY */
.ekor-komunal-card-body {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ekor-komunal-card-body a {
  display: flex;
  text-decoration: none;
  color: var(--ekor-text);
  font-size: 0.95rem;
  transition: all 0.2s;
  align-items: center;
  gap: 6px;
}

.ekor-komunal-card-body i {
  color: var(--ekor-accent-start);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
}    
    

.ekor-komunal-card-body a:hover {
  color: var(--ekor-primary);
  transform: translateX(4px);
}

.ekor-komunal-card-body .bi-envelope {
  position: relative;
  top: 1.1px;
}
  

/* RESPONSIVE */
/*@media (max-width: 576px) {
  .ekor-card {
    padding: 16px;
  }
}*/


@media (max-width: 768px) {    
  .ekor-komunal-nav {
    display: none;
  }
}

@media (max-width: 768px) {
.ekor-komunal-section {
    display: block !important;
  }
.ekor-komunal-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    border-radius: 14px;
  }
}

#toggleView {
 border-radius: 999px;
  padding: 6px 16px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  background: white;
  border: 1px solid #dfe5df;   
}

#toggleView:hover {
  transform: translateY(-2px);
}

#toggleView:hover {
  background: var(--ekor-light);
  transform: translateY(-2px);
}

#toggleView i {
  font-size: 0.9rem;
}


/* Správa */
.section-komunal-management .ekor-komunal-card::before {
  background: linear-gradient(90deg, var(--ekor-accent-start), var(--ekor-accent-end));
}

/* Skládka */
.section-komunal-skladka .ekor-komunal-card::before {
  background: linear-gradient(90deg, var(--ekor-accent-start), var(--ekor-accent-end));
}

/* Linka */
.section-komunal-linka .ekor-komunal-card::before {
  background: linear-gradient(90deg, var(--ekor-accent-start), var(--ekor-accent-end));
}

/* Prodej */
.section-komunal-prodej .ekor-komunal-card::before {
  background: linear-gradient(90deg, var(--ekor-accent-start), var(--ekor-accent-end));
}

/* Ostatni */
.section-komunal-ostatni .ekor-komunal-card::before {
  background: linear-gradient(90deg, var(--ekor-accent-start), var(--ekor-accent-end));
}

.section-komunal-management .ekor-komunal-section-box {
  border-left: 4px solid var(--ekor-primary);
}

.section-komunal-skladka .ekor-komunal-section-box {
  border-left: 4px solid #1565c0;
}

.section-komunal-linka .ekor-komunal-section-box {
  border-left: 4px solid #ef6c00;
}

.section-komunal-prodej .ekor-komunal-section-box {
  border-left: 4px solid #d4a017;
}

.section-komunal-ostatni .ekor-komunal-section-box {
  border-left: 4px solid #616161;
}


/* ===== GREEN (MANAGEMENT) ===== */
.ekor-komunal-section--green .ekor-komunal-section-box {
  background: #f1f8f4;
}

.ekor-komunal-section--green .ekor-komunal-section-box::before {
  background: #2e7d32;
}

/* ===== BLUE (SKLÁDKA) ===== */
.ekor-komunal-section--blue .ekor-komunal-section-box {
  background: #eef4fb;
}

.ekor-komunal-section--blue .ekor-komunal-section-box::before {
  background: #1976d2;
}

/* ===== ORANGE (LINKA) ===== */
.ekor-komunal-section--orange .ekor-komunal-section-box {
  background: #fff4ec;
}

.ekor-komunal-section--orange .ekor-komunal-section-box::before {
  background: #ef6c00;
}

/* ===== GOLD (PRODEJ) ===== */
.ekor-komunal-section--gold .ekor-komunal-section-box {
  background: #fff6dc;
}

.ekor-komunal-section--gold .ekor-komunal-section-box::before {
  background: #d4a017;
}

/* ===== GRAY (OSTATNI) ===== */
.ekor-komunal-section--gray .ekor-komunal-section-box {
  background: #f5f5f5;
}

.ekor-komunal-section--gray .ekor-komunal-section-box::before {
  background: #616161;
}


.ekor-komunal-section--green {
  --ekor-accent: #2e7d32;
}

.ekor-komunal-section--blue {
  --ekor-accent: #1976d2;
}

.ekor-komunal-section--orange {
  --ekor-accent: #ef6c00;
}

.ekor-komunal-section--gold {
  --ekor-accent: #d4a017;
}

.ekor-komunal-section--gray {
  --ekor-accent: #757575;
}

.ekor-komunal-section--green .ekor-komunal-card {
  --ekor-accent: #2e7d32;
}

.ekor-komunal-section--blue .ekor-komunal-card {
  --ekor-accent: #1976d2;
}

.ekor-komunal-section--orange .ekor-komunal-card {
  --ekor-accent: #ef6c00;
}

.ekor-komunal-section--gold .ekor-komunal-card {
  --ekor-accent: #d4a017;
}

.ekor-komunal-section--gray .ekor-komunal-card {
  --ekor-accent: #757575;
}

/* NAV COLOR PER SECTION */
.section-komunal-management {
  --nav-bg: rgba(47,125,50,0.08);
}

.section-komunal-skladka {
  --nav-bg: rgba(21,101,192,0.08);
}

.section-komunal-linka {
  --nav-bg: rgba(239,108,0,0.08);
}

.section-komunal-prodej {
  --nav-bg: rgba(212,160,23,0.08);
}

.ekor-komunal-section--green .avatar {
  background: #2e7d32;
}

.ekor-komunal-section--blue .avatar {
  background: #1976d2;
}

.ekor-komunal-section--orange .avatar {
  background: #ef6c00;
}

.ekor-komunal-section--gold .avatar {
  background: #d4a017;
}

.ekor-komunal-section--gray .avatar {
  background: #757575;
}

/* NOVÁ TABULKA VE STYLU GRID */

.ekor-komunal-table {
  width: 100%;
  display: grid;
  flex-direction: column;
  gap: 6px;
}

.ekor-komunal-row {
  display: grid;
  /*grid-template-columns: 2fr 2fr 1.5fr 1.5fr 2fr;*/
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  transition: 0.2s;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.ekor-komunal-row,
.ekor-komunal-head {
  display: grid;
  grid-template-columns: 60px 1fr 60px 1fr;
  gap: 12px;
  align-items: center;
 }

.ekor-komunal-head,
.ekor-komunal-row {
  padding: 10px 14px;
}
.ekor-komunal-row:nth-child(even) {
  background: rgba(0,0,0,0.03);
}

.ekor-komunal-row:hover {
  background: rgba(32, 201, 151, 0.1);
}

/* číslo */
.ekor-komunal-cell:first-child,
.ekor-komunal-cell:nth-child(3) {
  font-weight: 700;
  color: var(--theme-orange-hover);
}

/* město */
.ekor-komunal-cell:nth-child(2),
.ekor-komunal-cell:nth-child(4) {
  font-weight: 500;
}

.ekor-komunal-head .item:nth-child(3) {
  border-left: 2px olid rgba(0,0,0,0.1);
  padding-left: 20px;
}

.ekor-komunal-head .item:nth-child(1),
.ekor-komunal-head .item:nth-child(3) {
  text-align: center;
}

.ekor-komunal-row > *:nth-child(3),
.ekor-komunal-head > *:nth-child(3) {
  border-left: 2px solid rgba(0,0,0,0.08);
  padding-left: 16px;
}

.ekor-komunal-head .item {
  display: flex;
  align-items: center;
  color: rgba(0,0,0,0.65);
  font-weight: 500;
}


/*.ekor-komunal-head {
  display: grid;
  /*grid-template-columns: 60px 1fr 60px 1fr;*/
  /*gap: 12px;
 /* font-weight: 600;
  border-bottom: 2px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  background: rgba(32, 201, 151, 0.08);
  color: #6b7280;
  box-shadow: none;
  font-size: 15px;
  line-height: 1.4;
  padding: 10px 14px;
  margin-bottom: 10px;
}*/


.ekor-komunal-cell {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ekor-komunal-cell a {
  display: inline;
  width: 100%;  
  font-weight: 400;
  color: var(--ekor-primary);
  text-decoration: none;
  position: relative;
  transition: all 0.2s ease;
}

.ekor-komunal-cell a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--ekor-primary);
  transition: width 0.25s ease;
}

.ekor-komunal-cell a:hover::after {
  width: 100%;
}

.ekor-komunal-cell i {
  margin-right: 6px;
  color: var(--ekor-accent);
}

.ekor-komunal-section.table-view .ekor-komunal-table {
  display: flex;
}

.ekor-komunal-ection.table-view .ekor-komunal-cards-wrapper {
  display: none;
}

.ekor-komunal-section:not(.table-view) .ekorkomunal--table {
  display: none;
}

.ekor-komunal-table,
.ekor-komunal-cards-wrapper {
  transition: opacity 0.25s ease;
}

.ekor-komunal-section:not(.table-view) .ekor-komunal-table {
  opacity: 0;
  pointer-events: none;
}

.ekor-komunal-section.table-view .ekor-komunal-cards-wrapper {
  opacity: 0;
  pointer-events: none;
}

.ekor-komunal-row:not(.ekor-komunal-head):hover {
  background: #f9fafb;
  transform: translateY(-1px);
  transition: 0.2s ease;
}

@media (max-width: 768px) {
  .ekor-komunal-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .ekor-komunal-cell {
    white-space: normal;
  }

  .ekor-komunal-head {
    display: none;
  }
}

@media (max-width: 768px) {
  .ekor-komunal-cell::before {
    content: attr(data-label);
    display: block;
    font-size: 12px;
    color: #888;
  }
}

.ekor-komunal-toggle {
  display: inline-flex;
  background: #e8f5e9;
  border-radius: 999px;
  padding: 4px;
  gap: 4px;
}

.toggle-btn {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #2f7d32;
  cursor: pointer;
  transition: all 0.25s ease;
}

.toggle-btn.active {
  background: #2f7d32;
  color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.toggle-btn:hover {
  opacity: 0.85;
}

.ekor-komunal-global-toggle {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
}

.ekor-komunal-global-toggle .toggle-btn {
  padding: 6px 12px;
  border-radius: 20px;
}

.calling {
  position: relative;
  overflow: hidden;
}

.calling::after {
  content: "📞 Volám…";
  position: absolute;
  bottom: 10px;
  right: 15px;
  background: var(--ekor-primary);
  color: white;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  opacity: 0;
  transform: translateY(10px);
  animation: callFade 0.6s forwards;
}

@keyframes callFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.12); }
  100% { transform: scale(1); }
}

/* BODY ITEMS */
.ekor-komunal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
  font-size: 14px;
}

.ekor-komunal-item i {
  color: #1D7460;
  font-size: 16px;
  transition: transform 0.2s ease;
}

.ekor-komunal-item a {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
  z-index: 2;
  display: inline-block;
  padding: 2px 4px;
}


/* ===== LINKS FEEDBACK ===== */

.ekor-komunal-item a:active {
  transform: scale(0.96);
  opacity: 0.75;
}

/* ===== ICON SMOOTH ===== */

.ekor-komunal-item:hover i {
  transform: translateX(3px);
}

.ekor-komunal-item a:hover {
  text-decoration: underline;
}


/* komunal -  GRID */
                    
.komunal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-size: 20px;
  gap: 20px;
}

.komunal-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.7;
  gap: 21px;
}

.komunal-head span {
  display: grid;
  font-weight: 600;
  margin-bottom: 10px;
  opacity: 0.7;
  margin-left: 57px;
  gap: 24px;
}

.komunal-head div {
  display: flex;
  grid-template-columns: 40px 1fr;
  gap: 14px;
}

.komunal-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.komunal-col .item {
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(0,0,0,0.03);
  transition: 0.2s;
  padding-left: 4px;
}


/* číslo jako badge */
.komunal-col .item span {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: var(--theme-gray);
  color: var(--body-color);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}


.komunal-col .item:hover {
  background: rgba(32,201,151,0.12);
  transform: translateX(6px);
}

@media (max-width: 768px) {
  .komunal-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  /* schovat druhý header (pravý) */
  .komunal-head > div:nth-child(2) {
    display: none;
  }
  /* header bude jen jeden sloupec */
  .komunal-head {
    grid-template-columns: 1fr;
    gap: 0;
    margin-left: 4px; /* zarovnání s itemy */
  }
}


/* ===== SKLADKA – PROVOZNÍ DOBA ===== */


/* =========================================
   SBĚRNÉ DVORY – STEJNÉ VÝŠKY KARET
========================================= */

.sberne-dvory-section .camping-card .row > [class*="col-"] {
  display: flex;
}

.sberne-dvory-section .camping-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100%;
}

.sberne-dvory-section .camping-card .content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sberne-dvory-section .camping-card .donation-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.sberne-dvory-section .camping-card .d-bottom {
  margin-top: auto;
  padding-top: 20px;
}


.sberne-dvory-section .camping-card.map-open {
  min-height: auto;
}


/* běžně mapa skrytá */
.map-wrapper {
  display: none;
}

/* pouze aktivní karta */
.camping-card.map-open .map-wrapper {
  display: block;
  margin-top: 20px;
}

/* aktivní karta NESMÍ natahovat ostatní */
.camping-card.map-open {
  height: auto;
  align-self: flex-start;
}

/*svatk-zavreno {
p-t 55px;
}*/
/* =========================================
   FIX VÝŠKY OTEVÍRACÍ DOBY
========================================= */

.sberne-dvory-section .opening-hours {
  min-height: 115px;
}

/* =========================
   OTEVÍRACÍ DOBA
========================= */

.sberne-dvory-section .thumb img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.sberne-dvory-section .opening-hours .row-line {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 6px;
}

.sberne-dvory-section .opening-hours .day {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
  font-size: 15px;
  line-height: 1.4;
}

/*.sberne-dvory-section .opening-hours .day i {
  color: var(--theme-color);
  flex-shrink: 0;
}*/

.sberne-dvory-section .opening-hours .time {
  min-width: 95px;
  text-align: right;
  white-space: nowrap;
  font-weight: 600;
  color: var(--theme-color);
  font-size: 15px;
}

.sberne-dvory-section .content-top .note {
  margin-top: 15px;
  font-size: 14px;
  font-weight: 600;
  color: #d62828;
}

.sberne-dvory-section .donation-wrap .fund-souradnice {
  white-space: nowrap;
}

.sberne-dvory-section .row-line {
  justify-content: center;
}

.sberne-dvory-section .content-top .day i {
  color: var(--theme-base);
  padding-right: 10px;
  font-size: 18px;
  justify-content: center;
  flex-shrink: 0;
}

.sberne-dvory-section .content-top .day {
  color: var(--theme-base);
  padding-right: 15px;
  font-weight: 600;
}

.sberne-dvory-section .content-top .highlight {
  color: var(--theme-green-gr-2);
  font-weight: 600;
}

.sberne-dvory-section .content-top h3 {
  color: var(--theme-green-gr-2);
  padding-bottom: 10px;
  
}


/* =========================
   MOBIL
========================= */


/*Pro 10"+ tablety

10–11" tablety mají nejčastěji:

800px
820px
834px
1024px
1112px
1180px  */

/*podle orientace a retina přepočtu.


/* Mobil */
@media (max-width: 576px) {

  .sberne-dvory-section .opening-hours .row-line {
    flex-direction: column;
    gap: 2px;
  }

  .sberne-dvory-section .opening-hours .time {
    font-size: 14px;
    text-align: left;
    min-width: auto;
    padding-left: 34px;
  }

}

/* Tablet */
@media (min-width: 577px) and (max-width: 991px) {

  .sberne-dvory-section .opening-hours .row-line {
    flex-direction: column;
    gap: 2px;
  }

  .sberne-dvory-section .opening-hours .time {
    font-size: 14px;
    text-align: left;
    min-width: auto;
    padding-left: 34px;
  }
}
  
/* Notebook */
@media (min-width: 992px) and (max-width: 1399px) {

  .sberne-dvory-section .opening-hours .row-line {
    flex-direction: column;
    gap: 2px;
  }

  .sberne-dvory-section .opening-hours .time {
    font-size: 14px;
    text-align: left;
    min-width: auto;
    padding-left: 34px;
  }
}
  
  
/* Velké monitory */
  @media (min-width: 1400px) {

  .sberne-dvory-section .opening-hours .row-line {
    flex-direction: column;
    gap: 2px;
  }

  .sberne-dvory-section .opening-hours .time {
    text-align: left;
    min-width: auto;
    padding-left: 36px;
  }  
}



/* HLAVIČKA */
.skladka-head > div {
  display: grid;
  grid-template-columns: 40px 1fr 120px;
  padding: 0 16px;
  padding-left: 16px;
  margin-bottom: 10px;
  opacity: 0.7;
  font-weight: 600;
  align-items: center;
  color: var(--theme-orange-hover);
}


/* 🔥 TENHLE ŘÁDEK PŘIDEJ */
.skladka-head > div span:first-child {
  display: block;
  padding-left: 14px; 
}

.skladka-head span:nth-child(2) {
  margin-left: 14px;
}

.skladka-head span:nth-child(3) {
  margin-left: 24px;
}

.skladka-head span {
  white-space: nowrap;
}

/* GRID WRAP */
.skladka-grid {
  font-size: 20px;
}

/* SLOUPEC */
.skladka-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ŘÁDEK */
.skladka-col .item {
  display: grid;
  grid-template-columns: 40px 1fr 120px;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(0,0,0,0.03);
  transition: 0.2s;
}

/* IKONA */

.skladka-col .item i {
  width: 40px;
  height: 40px;
  background: rgba(115, 124, 118, 0.1);
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #1D7460;
}

.skladka-col .item span i {
  color: var(--theme-color-3);
  font-size: 22px;
}

/* DEN */
.skladka-col .day {
  font-size: 16px;
  font-weight: 600;
}

/* ČAS */
.skladka-col .time {
  text-align: right;
  font-size: 16px;
  font-weight: 600;
  color: var(--theme-green-gr-2);
}

/* HOVER */
.skladka-col .item:hover {
  background: rgba(32, 201, 151, 0.12);
  transform: translateX(6px);
} 



/*** Karty odpad ***/
.details-odpad-wrap {
  display:flex;
  gap: 60px;
  max-width: 820px;
  margin-bottom: 0 auto;
}

.details-odpad {
  flex: 1;
  width: 100%;
  max-width: 922px;
}

.view-odpad-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}

.view-odpad-wrap .karta-odpad {
  color: #eaeaea;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.karta-odpad:hover {
  transform: translateX(6px);
}

.karta-odpad {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  max-width: 820px;
  width: 100%;
  min-height: 70px;
  background: #f8f7f0;
  border-radius: 12px;
  padding: 10px 20px;
  gap: 20px;
}

.odpad-content-wrap {
  display: flex;
  align-items: center;
  height: 100%;
}

.odpad-thumb-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.odpad-thumb-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.odpad-title h5 {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.3;
  color: var(--theme-green-gr-2);
  margin-bottom: 0;
  margin: 0;

}

.odpad-title {
  width: 100%;
}

/* ===============================
   RESPONSIVE FIX – ODPAD KARTY
=============================== */

@media (max-width: 992px) {

  .details-odpad-wrap {
    flex-direction: column;
    gap: 30px;
  }

  .view-odpad-wrap {
    width: 100%;
  }

  .karta-odpad {
    padding: 10px 15px;
    gap: 15px;
  }

  .karta-odpad .odpad-content-wrap .odpad-title h5 {
    font-size: 16px;
    line-height: 22px;
  }

  .odpad-thumb-wrap {
   flex-shrink: 0;
    width: 60px;
  }
}

@media (max-width: 576px) {

  .karta-odpad {
    flex-direction: row;
    align-items: flex-start;
  }

  .karta-odpad .odpad-title h5 {
    font-size: 15px;
  }

}



/***** Separace CSS *****/

.separace-common-title {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .separace-common-title {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .separace-common-title {
    margin-bottom: 20px;
  }
}

.separace-common-title h2 {
  font-size: 22px;
  line-height: 30px;
  color: var(--theme-green-gr-2);
  margin-bottom: 0 !important;
}

.separace-common-title h3 {
  color: var(--theme-orange-hover);
  text-shadow: var(--text-shadow);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .separace-common-title h2 {
    font-size: 22px;
    line-height: 1.5;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .separace-common-title h2 {
    font-size: 22px;
    line-height: 1.5;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .separace-common-title h2 {
    font-size: 22px;
    line-height: 1.5;
  }
}

@media (max-width: 767px) {
  .separace-common-title h2 {
    font-size: 19px;
    line-height: 1.5;
  }
}

.project-card.komunal {
  box-shadow: 0 0 0 1px rgba(32,201,151,0.25),
              0 10px 30px rgba(32,201,151,0.2);
}

.project-card.separace {
  box-shadow: 0 0 0 1px rgba(32,201,151,0.25),
              0 10px 30px rgba(32,201,151,0.2);
}

.project-card.bio {
  box-shadow: 0 0 0 1px rgba(32,201,151,0.25),
              0 10px 30px rgba(32,201,151,0.2);
}

.project-card.dvory {
  box-shadow: 0 0 0 1px rgba(32,201,151,0.25),
              0 10px 30px rgba(32,201,151,0.2);
}

.project-card.prodej-kompostu {
  box-shadow: 0 0 0 1px rgba(32,201,151,0.25),
              0 10px 30px rgba(32,201,151,0.2);
}

.project-card.prodej-nadob {
  box-shadow: 0 0 0 1px rgba(32,201,151,0.25),
              0 10px 30px rgba(32,201,151,0.2);
}

.project-card.prodej-recyklatu {
  box-shadow: 0 0 0 1px rgba(32,201,151,0.25),
              0 10px 30px rgba(32,201,151,0.2);
}




.separace-content .text {
  margin-bottom: 20px;
}

.separace-content .common-subtitle span {
  color: var(--span);
    text-shadow: var(--text-shadow);
}

.separace-content .annual-donation-wrap {
  display: flex;
  align-items: center;
  gap: 20px;
}

@media (max-width: 767px) {
  .separace-content .annual-donation-wrap {
    flex-direction: column;
    align-items: start;
    gap: 14px;
  }
}

.separace-content .annual-donation-wrap .annual-donation {
  display: flex;
  align-items: center;
  gap: 15px;
}

.separace-content .annual-donation-wrap .annual-donation p {
  margin-bottom: 5px;
}

.separace-content .annual-donation-wrap .annual-donation h5 {
  margin-bottom: 0;
}

.separace-content .annual-donation-wrap .annual-donation img {
  padding: 17px 15px;
  border-radius: 100%;
  border: 2px solid rgba(0, 69, 64, 0.1);
}

.separace-c-tabs-wrapper .separace-tab-content {
  outline: none;
}

.separace-benefits {
  margin-bottom: 40px;
}

@media (min-width: 768px) and (max-width: 991px) {
  .separace-benefits {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .separace-benefits {
    margin-bottom: 24px;
  }
}

.separace-benefits ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.separace-benefits ul li {
  position: relative;
  padding-left: 36px;
  display: flex;
  align-items: center;
  color: var(--theme-green-gr);
  font-weight: 600;
}

@media (max-width: 767px) {
  .separace-benefits ul li {
    padding-left: 30px;
    line-height: 1.4;
  }
}

.separace-benefits ul li::before {
  content: "";
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0 6px 10px -3px rgba(0, 69, 64, 0.11);
}

.separace-benefits ul li::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  background: radial-gradient(92.09% 85.42% at 86.3% 87.5%, rgba(0, 0, 0, 0.23) 0%, rgba(0, 0, 0, 0) 86.18%), radial-gradient(65.28% 65.28% at 26.39% 20.83%, rgba(255, 255, 255, 0.413) 0%, rgba(255, 255, 255, 0) 69.79%, rgba(255, 255, 255, 0) 100%), #004540;
}





/* =========================
   PRODEJ – HEADER INFO
========================= */

.prodej-oteviraci-doba {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prodej-subtitle {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 24px;
  text-shadow: var(--text-shadow);
}

/* title */

.prodej-detail-content .title {
  font-size: 32px;
  line-height: 1.08;
  font-weight: 800;
  color: #004540;
  text-align: center;
  max-width: 980px;
  margin-bottom: 22px;
  margin: 0 auto 10px;
  padding: 0 0 20px 0 ;

}

/* horní text */

.prodej-oteviraci-doba-content-wrap {
  text-align: center;
  max-width: 980px;
  margin-bottom: 50px;
}

/* =========================
   SIDEBAR WRAP
========================= */

/* wrapper */

.prodej-sidebar-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

/* karta */

.prodej-detail-sidebar {
  width: 100%;
  max-width: 760px;
}

/* sticky vypnout */

.prodej-detail-sidebar .prodej-detail-sidebar-inner {
  position: relative;
  top: unset;
}

/* card */

.prodej-detail-sidebar .prodej-s-widget-wrap {
  background: #f8f7f0;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition:
  transform 0.35s ease,
  box-shadow 0.35s ease;
}

.prodej-detail-sidebar .prodej-s-widget-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

/* title */

.prodej-detail-sidebar .prodej-s-widget-wrap .prodej-w-title h3 {
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  color: #004540;
  text-align: center;
  text-shadow: var(--text-shadow);
}

/* divider */

/*.prodej-detail-sidebar .prodej-s-widget-wrap .prodej-w-title .prodej-bar-wrap {
  max-width: 280px;
  margin: 18px auto 38px;
}*/


.prodej-detail-sidebar .prodej-s-widget-wrap .prodej-w-title .prodej-bar-wrap {
  position: relative;
  z-index: 1;
  margin: 10px 0 30px;
}

.prodej-detail-sidebar .prodej-s-widget-wrap .prodej-w-title .prodej-bar-wrap .prodej-bar-1 {
  border-bottom: 2px solid rgba(0, 69, 64, 0.1);
}

.prodej-detail-sidebar .prodej-s-widget-wrap .prodej-w-title .prodej-bar-wrap .prodej-bar-2 {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 69, 64, 0) 0%, #004540 100%);
}

/* head */

.prodej-head div {
  display: grid;
  grid-template-columns: 82px 1fr 265px;
  align-items: center;
  padding: 0 16px 18px;
  font-weight: 700;
  color: #f97316;
}

/* grid */

.prodej-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* SLOUPEC */
.prodej-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.prodej-item {
  display: grid;
  grid-template-columns: 60px 1fr 260px;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #f1efe8;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
 min-height: 72px;
}

/* hover */

.prodej-item:hover {
  transform: translateX(6px);
  background: rgba(0,69,64,0.04);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

/* ikona */

.prodej-item i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,69,64,0.08);
  color: #004540;
  font-size: 16px;
}

/* den */

.prodej-day {
  font-size: 18px;
  font-weight: 700;
  color: #004540;
}

/* čas */

.prodej-time {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
  color: #0d9488;
}

/* Prodej Css */

.prodej-detail-card .prodej-thumb a {
  border-radius: 18px;
  display: block;
  overflow: hidden;
}

.prodej-detail-card .prodej-thumb a img {
  border-radius: 18px;
}

.prodej-thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  /*background: #f8f7f0;*/
  border-radius: 18px;
}

.prodej-thumb img {
  width: 100%;
  max-width: 500px;
  object-fit: contain;
  border-radius: 10px;
  /*filter: drop-shadow(0 30px 40px rgba(0,0,0,0.16));*/
  transition:
  transform 0.45s ease;
}

.prodej-detail-card:hover img {
  transform: scale(1.04);
}

.prodej-detail-card:hover .prodej-thumb img {
  transform: scale(1.03);
}

/* =========================
   PRODUKT DETAIL – PREMIUM
========================= */

.prodej-details-section {
  position: relative;
   padding-bottom: 140px;
}

.prodej-detail-card {
  border-radius: 32px;
  padding: 50px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition:
  transform 0.35s ease,
  box-shadow 0.35s ease;
  background:
    linear-gradient(
      145deg,
      #f8f7f0,
      #f2f0e8
    );
}

.prodej-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
  transition:
  transform 0.35s ease,
  box-shadow 0.35s ease;;
}

.prodej-detail-content {
  background: #fff;
  border-radius: 28px;
  padding: 42px 46px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  height: 100%;
  min-height: 605px;
}

/* subtitle */

.prodej-content-wrap .subtitle {
  font-size: 18px;
  font-weight: 600;
  line-height: 36px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 14px;
  padding: 18px 0 0 0 ;
  text-shadow: var(--text-shadow);
}

/* description */

.prodej-content-wrap span {
  font-size: 18px;
  /*line-height: 1.;*/
  color: #6b7280;
  max-width: 540px;
}

.prodej-content-wrap h3 {
  text-shadow: var(--text-shadow);
}

.prodej-content-wrap {
  max-width: 950px;
  margin: 0 auto 0;
}

/* parametry */

.prodej-details-wrap {
  margin-top: 38px;
  border-top: 1px solid rgba(0,69,64,0.08);
  border-bottom: 1px solid rgba(0,69,64,0.08);
  padding: 28px 0;
}

/* jeden řádek */

.prodej-details-wrap .info {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,69,64,0.08);
}

.prodej-details-wrap .info:last-child {
  border-bottom: none;
}

/* levý label */

.prodej-details-wrap .info p {
  margin: 0;
  line-height: 30px;
  font-size: 16px;
  font-weight: 700;
  min-width: 105px;
  color: #004540;
}

/* pravý text */

.prodej-details-wrap .info span {
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  color: #6b7280;
}

.row.align-items-center {
  max-width: 1320px;
  margin: 0 auto;
  align-items: center;
}

/* =========================
   TIP BOX – PRODEJ
========================= */
.prodej-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f8f7f0;
  border-radius: 22px;
  padding: 32px 40px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* řádky */

.prodej-box span {
  font-size: 24px;
  line-height: 1.6;
  font-weight: 700;
  color: #004540;
  text-shadow: var(--text-shadow);
}

.prodej-box i {
  font-size: 26px;
  color: var(--theme-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.prodej-box strong {
  color: var(--theme-green-gr-2);
  font-weight: 700;
}

/* desc */

/*.prodej-detail-content .prodej-content-wrap span {
  font-size: 20px;
  line-height: 1.8;
  max-width: 620px;
}*/


/* mobil */

/*@media (max-width: 767px) {
  .prodej-oteviraci-doba-content-wrap .prodej-title {
    font-size: 28px;
  }
  .prodej-detail-sidebar .prodej-s-widget-wrap {
    padding: 24px;
  }
  .prodej-head {
    display: none;
  }
  .prodej-item {
    grid-template-columns: 42px 1fr;
    row-gap: 8px;
  }
  .prodej-time {
    grid-column: 2;
  }
}

@media (max-width: 991px) {

  .prodej-detail-content {
    margin-top: 30px;

    padding: 34px 28px;

    min-height: auto;
  }

  .prodej-content-wrap .title {
    font-size: 36px;
  }

  .prodej-box span {
    font-size: 18px;
  }

  .prodej-item {
    grid-template-columns: 42px 1fr;
  }

  .prodej-time {
    grid-column: 2;
  }

}







/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .row.align-items-center {
    gap: 28px;
  }

  .prodej-detail-card {
    padding: 28px;
    border-radius: 24px;
  }

  .prodej-detail-content {
    margin-top: 0;
    padding: 32px 26px;
    border-radius: 24px;
    min-height: auto;
  }

  .prodej-content-wrap {
    margin-bottom: 36px;
  }

  .prodej-content-wrap .title {
    font-size: 32px;
    line-height: 1.18;
    padding: 10px 0 0 0;
  }

  .prodej-content-wrap span {
    font-size: 14px;
    line-height: 1.75;
    max-width: 100%;
  }

  .prodej-thumb img {
    max-width: 420px;
  }

  .prodej-details-wrap .info {
    grid-template-columns: 160px 1fr;
    gap: 18px;
  }

  .prodej-box {
    padding: 24px 26px;
  }

  .prodej-box span {
    font-size: 18px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  /* sekce */

  .prodej-details-section {
    padding-bottom: 90px;
  }

  .row.align-items-center {
    gap: 22px;
  }

  /* karta */

  .prodej-detail-card {
    padding: 18px;
    border-radius: 20px;
  }

  .prodej-detail-content {
    padding: 24px 18px;
    border-radius: 20px;
  }

  /* obrázek */

  .prodej-thumb {
    padding: 18px;
    border-radius: 16px;
  }

  .prodej-thumb img {
    max-width: 100%;
  }

  /* title */

  .prodej-content-wrap .subtitle {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.16em;
    padding-top: 0;
    margin-bottom: 10px;
  }

  .prodej-detail-content .title,
  .prodej-content-wrap .title {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  /* text */

  /*.prodej-detail-content .prodej-content-wrap p,*/
  .prodej-content-wrap span {
    font-size: 16px;
    line-height: 1.75;
    max-width: 100%;
  }

  .prodej-content-wrap {
    margin-bottom: 28px;
  }

  /* parametry */

  .prodej-details-wrap {
    margin-top: 24px;
    padding: 18px 0;
  }

  .prodej-details-wrap .info {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }

  .prodej-details-wrap .info p {
    font-size: 15px;
    line-height: 1.4;
    min-width: auto;
  }

  .prodej-details-wrap .info span {
    font-size: 15px;
    line-height: 1.65;
  }

  /* otevírací doba */

  .prodej-detail-sidebar .prodej-s-widget-wrap {
    padding: 20px;
    border-radius: 20px;
  }

  .prodej-detail-sidebar .prodej-s-widget-wrap .prodej-w-title h3 {
    font-size: 26px;
    text-align: center;
  }

  .prodej-head {
    display: none;
  }

  .prodej-grid {
    gap: 10px;
  }

  .prodej-item {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 14px;
    min-height: auto;
  }

  .prodej-item i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .prodej-day {
    font-size: 16px;
  }

  .prodej-time {
    grid-column: 2;
    font-size: 15px;
    line-height: 1.5;
  }

  /* tip box */

  .prodej-box {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .prodej-box span {
    font-size: 16px;
    line-height: 1.6;
  }

  .prodej-box i {
    font-size: 20px;
  }
}


/* =========================================
   DOWNLOAD SECTION
========================================= */

.download-section {
  position: relative;
}

/* title */

.download-section-title span {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 12px;
}

.download-section-title h2 {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  color: #004540;
  margin-bottom: 0;
    text-shadow: var(--text-shadow);

}

/* card */

.download-card {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 100%;
  padding: 28px 30px;
  border-radius: 24px;
  background: #f8f7f0;
  text-decoration: none;
  border: 1px solid rgba(0,69,64,0.08);
  box-shadow:
    0 12px 35px rgba(0,0,0,0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

/* hover */

.download-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0,69,64,0.18);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.10);
}

/* icon */

.download-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background:
    linear-gradient(
      135deg,
      rgba(0,69,64,0.10),
      rgba(0,69,64,0.04)
    );
  flex-shrink: 0;
}

.download-icon i {
  font-size: 30px;
  color: #004540;
}

/* content */

.download-content {
  flex: 1;
}

.download-content h4 {
  font-size: 24px;
  line-height: 1.35;
  font-weight: 700;
  color: #004540;
  margin-bottom: 8px;
}

.download-content p {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 0;
}

/* arrow */

.download-arrow {
  width: 52px;
  height: 52px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: rgba(0,69,64,0.06);

  transition:
    transform 0.3s ease,
    background 0.3s ease;

  flex-shrink: 0;
}

.download-arrow i {
  font-size: 18px;
  color: #004540;
}

.download-card:hover .download-arrow {
  transform: translateY(3px);
  background: rgba(0,69,64,0.12);
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .download-section-title h2 {
    font-size: 34px;
  }

  .download-card {
    gap: 18px;
    padding: 22px 20px;
  }

  .download-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
  }

  .download-icon i {
    font-size: 24px;
  }

  .download-content h4 {
    font-size: 19px;
  }

  .download-content p {
    font-size: 14px;
  }

  .download-arrow {
    width: 42px;
    height: 42px;
  }

}


.download-toast {
  position: fixed;
  top: 100px;
  right: 20px;

  background: #004540;
  color: #fff;

  padding: 14px 18px;

  border-radius: 14px;

  font-size: 14px;
  font-weight: 600;

  opacity: 0;
  visibility: hidden;

  transform: translateY(-10px);

  transition: 0.3s ease;

  z-index: 9999;
}

.download-toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* =========================================
   AKTUALITY SECTION
========================================= */

.aktuality-section {
  position: relative;
  overflow: hidden;
}

/* =========================================
   SECTION HEADING
========================================= */

.aktuality-heading {
  max-width: 760px;
  margin: 10px auto;
}

.aktuality-grid {
  row-gap: 40px;
}

.aktuality-heading .subtitle {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 16px;
}

.aktuality-heading h2 {
  line-height: 1.08;
  font-weight: 800;
  color: #004540;
  margin-bottom: 20px;
  text-shadow: var(--text-shadow);
}

.aktuality-heading p {
  font-size: 19px;
  line-height: 1.9;
  color: #6b7280;
  max-width: 760px;
  margin: 40px auto;
  opacity: 0.92;
}

/* =========================================
   FILTER BAR
========================================= */

.aktuality-filter-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background:
    rgba(248,247,240,0.82);
  backdrop-filter: blur(14px);
  border:
    1px solid rgba(0,69,64,0.06);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.06);
}

.aktuality-filter-wrap button {
  border: none;
  outline: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: transparent;
  font-size: 15px;
  font-weight: 700;
  color: #004540;
  transition:
    all 0.3s ease;
  cursor: pointer;
}

.aktuality-filter-wrap button:hover,
.aktuality-filter-wrap button.active {
  background: #004540;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================
   FEATURED ARTICLE
========================================= */

.featured-article {
  display: grid;
  grid-template-columns: 58% 42%;
  align-items: stretch;
  overflow: hidden;
  border-radius: 34px;
  margin-bottom: 20px;
  background: #f8f7f0;
  box-shadow:
    0 24px 60px rgba(0,0,0,0.08);
}

/* thumb */

.featured-thumb {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.featured-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition:
    transform 0.5s ease;
}

.featured-article:hover .featured-thumb img {
  transform: scale(1.04);
}

/* badge */

.featured-badge {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f97316;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* content */

.featured-content {
 display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
}

/* link */

.featured-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #004540;
  text-decoration: none;
  transition:
    all 0.3s ease;
}

.featured-content a:hover {
  color: var(--theme-color);
  gap: 14px;
}

.meta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.meta-wrap .category {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0,69,64,0.08);
  color: #004540;
  font-size: 14px;
  font-weight: 700;
}

.meta-wrap .date {
  font-size: 15px;
  font-weight: 600;
  color: #9ca3af;
}

.featured-content h3 {
  line-height: 1.18;
  font-weight: 800;
  color: #004540;
  margin-bottom: 24px;
    text-shadow: var(--text-shadow);

}

.featured-content p {
  font-size: 18px;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 36px;
}

/* =========================================
   NEWS GRID
========================================= */

.news-card {
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: #fff;
  margin-bottom: 32px;
  border:
    1px solid rgba(0,69,64,0.06);
  box-shadow:
    0 18px 45px rgba(0,0,0,0.06);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

.news-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 28px 70px rgba(0,0,0,0.12);
}

/* image */

.news-thumb {
  overflow: hidden;
}

.news-thumb img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition:
  transform 0.5s ease;
  height: 240px;
}

.news-card:hover .news-thumb img {
  transform: scale(1.05);
}

/* content */

.news-content {
  padding: 34px;
}

/* meta */

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.news-meta .category {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,69,64,0.08);
  color: #004540;
  font-size: 13px;
  font-weight: 700;
}


.news-meta .category-pozor {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(0,69,64,0.08);
  color: #dc3545;
  font-size: 13px;
  font-weight: 700;
}

.news-meta .date {
  font-size: 14px;
  font-weight: 600;
  color: #9ca3af;
}

/* title */

.news-content h4 {
  line-height: 1.3;
  font-weight: 800;
  color: #004540;
  margin-bottom: 18px;
  text-shadow: var(--text-shadow);
}

/* desc */

.news-content p {
  font-size: 17px;
  line-height: 1.8;
  color: #6b7280;
  margin-bottom: 28px;
}

/* link */

.news-content a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #004540;
  text-decoration: none;
  transition:
    all 0.3s ease;
}

.news-content a:hover {
  color: var(--theme-color);
  gap: 14px;
}

/* =========================================
   PAGINATION
========================================= */

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 70px;
}

.news-pagination a {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f8f7f0;
  color: #004540;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  transition:
    all 0.3s ease;
}

.news-pagination a:hover,
.news-pagination a.active {
  background: #004540;
  color: #fff;
  transform: translateY(-2px);
}

/* =========================================
   TABLET
========================================= */

@media (max-width: 1199px) {

  .featured-article {
    grid-template-columns: 1fr;
  }

  .featured-thumb img {
    min-height: 420px;
  }

  .featured-content {
    padding: 50px;
  }

}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  .aktuality-heading h2 {
    font-size: 40px;
  }

  .aktuality-heading p {
    font-size: 16px;
  }

  .aktuality-filter-wrap {
    padding: 16px;
    gap: 10px;
  }

  .aktuality-filter-wrap button {
    width: 100%;
  }

  .featured-thumb img {
    min-height: 280px;
  }

  .featured-content {
    padding: 32px 24px;
  }

  .featured-content h3 {
    font-size: 30px;
  }

  .featured-content p {
    font-size: 16px;
  }

  .news-content {
    padding: 26px 22px;
  }

  .news-content h4 {
    font-size: 24px;
  }

  .news-content p {
    font-size: 16px;
  }

  .news-pagination {
    margin-top: 50px;
  }

  .news-pagination a {
    width: 46px;
    height: 46px;
  }

}

.news-card,
.featured-article {
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.hidden-news {
  display: none;
}

/* =========================================
   NEWS MODAL
========================================= */

.news-modal-aktual {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  opacity: 0;
  visibility: hidden;
  transition:
    0.35s ease;
}

/* active */

.news-modal-aktual.active {
  opacity: 1;
  visibility: visible;
}

/* overlay */

.news-modal-overlay {
  position: absolute;
  inset: 0;
  background:
    rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
}

/* box */

.news-modal-box {
  position: relative;
  width: 100%;
  max-width: 860px;
  max-height: 88vh;
  overflow-y: auto;
  border-radius: 32px;
  background: #fff;
  padding: 50px;
  box-shadow:
    0 40px 100px rgba(0,0,0,0.25);
  z-index: 2;
  transform: translateY(40px);
  transition:
    transform 0.35s ease;
}

.news-modal-aktual.active .news-modal-box {
  transform: translateY(0);
}

/* close */

.news-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 52px;
  height: 52px;
  border: none;
  border-radius: 50%;
  background: #f3f4f6;
  cursor: pointer;
  transition:
    0.3s ease;
}

.news-modal-close:hover {
  background: #004540;
  color: #fff;
}

/* badge */

.news-modal-badge {
  display: inline-flex;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  background:
    rgba(239,68,68,0.12);
  color: #ef4444;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

/* title */

.news-modal-content h3 {
  font-size: 46px;
  line-height: 1.1;
  font-weight: 800;
  color: #004540;
  margin-bottom: 26px;
}

/* subtitle */

.news-modal-content h4 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
  color: #f97316;
  margin:
    40px 0 18px;
}

/* text */

.news-modal-content p {
  font-size: 20px;
  line-height: 1.9;
  color: #6b7280;
  margin-bottom: 22px;
}

/* mobile */

@media (max-width: 767px) {

  .news-modal-aktual {
    padding: 14px;
  }

  .news-modal-box {
    padding: 34px 24px;
  }

  .news-modal-content h3 {
    font-size: 34px;
  }

  .news-modal-content h4 {
    font-size: 24px;
  }

  .news-modal-content p {
    font-size: 17px;
  }

}

  
  

/* =========================
   JAK A PROČ TŘÍDIT
========================= */

.trideni-details-layout-wrap {
  display: flex;
  justify-content: center;
}

.trideni-detail-info-wrap {
  background: #f8f7f0;
  border-radius: 10px;
}

.trideni-details-content {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

/* Obrázek */
.thumb-wrap-trideni img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* Nadpis */
.trideni-details-title h2 {
  text-align: center;
  color: var(--theme-green-gr-2);
  text-shadow: var(--text-shadow);
}

/* Text */
.trideni-detail-text {
  text-align: left;
  max-width: 850px;
  margin: 0 auto;
}

/* =========================
   PROČ TŘÍDIT – ICON BLOCK
========================= */


.trideni-detail-text p span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: var(--theme-green-gr-2);
  margin-bottom: 15px;
  text-shadow: var(--text-shadow);
}

.trideni-detail-text p span::before {
  content: "\f4d8";
  font-family: "Font Awesome 6 Pro";

  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: rgba(117, 225, 55, 0.12);

  color: var(--theme-color-3);
  font-size: 18px;

  flex-shrink: 0;
}

/* H5 info box */
.trideni-details-content h5 {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 25px 25px 25px 25px;
  margin-bottom: 30px;
  line-height: 1.9;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  background: #f8f7f0;
  border-radius: 12px;
  color: var(--heading-color);
}

/* Zvýraznění */
.trideni-details-content h5 strong {
  color: var(--theme-color);
}

/* UL */
/* =========================
   ZELENÉ TEČKY V UL
========================= */

.trideni-detail-text ul {
  padding-left: 28px;
  margin-top: 22px;
}

.trideni-detail-text ul li {
  margin-bottom: 14px;
  line-height: 1.0;
  color: var(--heading-color);
}

.trideni-detail-text ul li::marker {
  color: var(--theme-color);
  font-size: 18px;
}

/* 33 Trideni Content Css */
.trideni-details-section {
  position: relative;
  z-index: 1;
  margin-bottom: 69px;
}

.trideni-detail-info-contents {
  padding: 30px;
}

.trideni-details-title h3 {
  color: var(--theme-green-gr-2);
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .trideni-details-title h2 {
    font-size: 40px;
/*    line-height: 1.2;*/
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .trideni-details-title h2 {
    font-size: 32px;
/*    line-height: 1.2;*/
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .trideni-details-title h2 {
    font-size: 26px;
/*    line-height: 1.2;*/
  }
}

@media (max-width: 767px) {
  .trideni-details-title h2 {
    font-size: 24px;
/*    line-height: 1.2;*/
  }
}

/* =========================
   WARNING BOX – NETŘÍDIT
========================= */

.trideni-warning-box {
  margin-top: 35px;
  padding: 25px 25px 25px 25px;
  background: #f8f7f0;
  border-left: 5px solid var(--theme-color);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.04);
  margin-bottom: 30px;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;

}

/* Nadpis boxu */

.trideni-warning-box .warning-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  color: var(--theme-green-gr-2);
    text-shadow: var(--text-shadow);

}

.trideni-warning-box .warning-title i {
  color: #d62828;
  font-size: 24px;
}

/* List */

.trideni-warning-box ul {
  margin: 0;
  padding-left: 24px;
}

.trideni-warning-box ul li {
  margin-bottom: 12px;

  line-height: 1.7;

  color: var(--heading-color);
}

.trideni-warning-box ul li::marker {
  color: #d62828;
  font-size: 18px;
}


/* =========================
   TIP BOX – TŘÍDĚNÍ
========================= */

.trideni-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  margin: 25px 0 35px;
  padding: 22px 26px;

  background: rgba(117, 225, 55, 0.08);

  border-left: 5px solid var(--theme-color);

  border-radius: 14px;
}

.trideni-tip-box i {
  font-size: 26px;
  color: var(--theme-color);

  margin-top: 2px;

  flex-shrink: 0;
}

.trideni-tip-box span {
  line-height: 1.8;
  font-size: 17px;
  color: var(--heading-color);
}

.trideni-tip-box strong {
  color: var(--theme-green-gr-2);
  font-weight: 700;
}

/* =========================
   ODDĚLOVAČ SEKCE TŘÍDĚNÍ
========================= */

.trideni-divider {
  position: relative;
  margin: 60px auto 50px;
  text-align: center;
}

.trideni-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 102, 68, 0.18),
    transparent
  );
}

.trideni-divider span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  background: #f4fbf7;
  border: 1px solid rgba(0, 102, 68, 0.12);
  border-radius: 50%;
  color: var(--theme-green-gr-2);
  font-size: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);
  animation: trideniFloat 4s ease-in-out infinite;

}

@keyframes trideniFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}




/* =========================
   BAREVNÉ SEKCE TŘÍDĚNÍ
========================= */
.trideni-section {
  scroll-margin-top: 200px;
}

/* =========================
   ANCHOR OFFSET
========================= */

.trideni-section {
  scroll-margin-top: 200px;
}

/* mobil */
@media (max-width: 767px) {

  .trideni-section {
    scroll-margin-top: 90px;
  }
}

/* PAPÍR */
.trideni-section.paper {
  --accent-color: #2f80ed;
  --accent-bg: rgba(47, 128, 237, 0.08);
}

/* PLAST */
.trideni-section.plastic {
  --accent-color: #f2c94c;
  --accent-bg: rgba(242, 201, 76, 0.12);
}

/* SKLO */
.trideni-section.glass {
  --accent-color: #27ae60;
  --accent-bg: rgba(39, 174, 96, 0.10);
}

/* BIO */
.trideni-section.bio {
  --accent-color: #8d6e63;
  --accent-bg: rgba(141, 110, 99, 0.10);
}

/* KOVY */
.trideni-section.metal {
  --accent-color: #8b949e;
  --accent-bg: rgba(139, 148, 158, 0.10);
}

/* NÁPOJOVÉ KARTONY */
.trideni-section.carton {
  --accent-color: #f2994a;
  --accent-bg: rgba(242, 153, 74, 0.12);
}

.trideni-section .trideni-details-title h2 {
  color: var(--accent-color);
}
.trideni-section .trideni-detail-text p span i,
.trideni-section .warning-title i,
.trideni-section .trideni-tip-box i,
.trideni-section .trideni-divider span {
  color: var(--accent-color);
}

.trideni-section .trideni-tip-box,
.trideni-section .trideni-warning-box {
  background: var(--accent-bg);
}

.trideni-section ul li::marker {
  color: var(--accent-color);
}

.trideni-section .trideni-warning-box {
  border-left: 4px solid var(--accent-color);
}

.trideni-section .trideni-divider span {
  border-color: var(--accent-color);
}

/* INFO / TIP BOX */

.trideni-section .trideni-tip-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;

  padding: 22px 24px;
  margin: 30px 0;

  background: var(--accent-bg);
  border-left: 4px solid var(--accent-color);
  border-radius: 14px;

  position: relative;
  overflow: hidden;
}

.trideni-section .trideni-tip-box i {
  color: var(--accent-color);
  font-size: 26px;
  margin-top: 2px;
  flex-shrink: 0;
}

.trideni-section .trideni-tip-box span {
  color: var(--heading-color);
  line-height: 1.8;
  font-size: 17px;
}

.trideni-section .trideni-tip-box strong {
  color: var(--accent-color);
  font-weight: 700;
}

.trideni-section .trideni-tip-box::before {
  content: "";
  position: absolute;

  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.18),
    transparent
  );

  pointer-events: none;
}

/* =========================
   STICKY NAV – TŘÍDĚNÍ
========================= */

.trideni-sticky-nav {
  position: sticky;
  top: 90px;
  z-index: 999;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 50px;
  padding: 14px 18px;
  width: 100%;
  max-width: 920px;
  border-radius: 18px;
  background: rgba(255,255,255,0.88);
  border: 1px solid rgba(0,0,0,0.05);
  backdrop-filter: blur(14px);
  box-shadow:
    0 10px 30px rgba(0,0,0,0.08);
}

.trideni-sticky-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
  transition:
    all 0.3s ease;
}

.trideni-sticky-nav a:hover {
  background: var(--theme-color);
  color: #fff;
  transform: translateY(-2px);
}

.trideni-sticky-nav a.active {
  background: var(--theme-color);
  color: #fff;
  box-shadow:
    0 8px 20px rgba(0,0,0,0.14);
}

.trideni-warning-box:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 40px rgba(0,0,0,0.08);

  border-left-color: var(--accent-color);
}

.trideni-section-image {
  margin: 0 auto 35px;
  max-width: 650px;
}

.trideni-section-image img {
  width: 100%;
  border-radius: 22px;
  box-shadow:
    0 18px 45px rgba(0,0,0,0.08);
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.trideni-section-image img:hover {
  transform: translateY(-4px);
  box-shadow:
    0 28px 60px rgba(0,0,0,0.12);
}

/* PAPÍR */
.paper .trideni-section-image img {
  box-shadow:
    0 20px 50px rgba(47,128,237,0.18);
}

/* PLAST */
.plastic .trideni-section-image img {
  box-shadow:
    0 20px 50px rgba(242,201,76,0.22);
}

/* SKLO */
.glass .trideni-section-image img {
  box-shadow:
    0 20px 50px rgba(39,174,96,0.20);
}

/* KOVY */
.metal .trideni-section-image img {
  box-shadow:
    0 20px 50px rgba(139,148,158,0.22);
}

/* BIOODPAD */
.bio .trideni-section-image img {
  box-shadow:
    0 20px 50px rgba(141,110,99,0.22);
}

/* NÁPOJOVÉ KARTONY */
.carton .trideni-section-image img {
  box-shadow:
    0 20px 50px rgba(242,153,74,0.22);
}

/* MOBILE – vypnout sticky nav */


@media (max-width: 767px) {
  .trideni-sticky-nav {
    display: none;
  }
}

@media (max-width: 991px) {
  .trideni-sticky-nav {
    display: none;
  }
}

/* =========================
   SKLADKA ODPADU – HEADER INFO
========================= */

.skladka-odpadu-oteviraci-doba {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.skladka-odpadu-subtitle {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 24px;
}

/* title */

.skladka-odpadu-detail-content .title {
  font-size: 36px;
  line-height: 1.08;
  font-weight: 800;
  color: #004540;
  text-align: center;
  max-width: 980px;
  margin-bottom: 22px;
  margin: 0 auto 10px;
  padding: 0 0 20px 0 ;

}

/* horní text */

.skladka-odpadu-oteviraci-doba-content-wrap {
  text-align: center;
  max-width: 980px;
  margin-bottom: 50px;
}


.skladka-odpadu-details-layout-wrap {
  display: flex;
  justify-content: center;
  gap: 60px;
  
}

.skladka-odpadu-detail-info-wrap {
  background: #f8f7f0;
  border-radius: 10px;
}

.skladka-odpadu-details-content {
  width: 100%;
  max-width: 1050px;
  margin: 0 auto;
}

/* Obrázek */
.skladka-odpadu-thumb-wrap img {
  width: 100%;
  border-radius: 14px;
  display: block;
}

/* Nadpis */
.skladka-odpadu-details-title h2 {
  text-align: center;
  color: var(--theme-green-gr-2);
  text-shadow: var(--text-shadow);
}

/* Text */
.skladka-odpadu-detail-text {
  text-align: left;
  max-width: 850px;
  margin: 0 auto;
}

/* =========================
   PROČ TŘÍDIT – ICON BLOCK
========================= */


.skladka-odpadu-detail-text p span {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-weight: 700;
  font-size: 28px;
  line-height: 1.3;
  color: var(--theme-green-gr-2);
  margin-bottom: 15px;
}

.skladka-odpadu-detail-text p span::before {
  content: "\f4d8";
  font-family: "Font Awesome 6 Pro";
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(117, 225, 55, 0.12);
  color: var(--theme-color-3);
  font-size: 18px;
  flex-shrink: 0;
}

/* H5 info box */
.skladka-odpadu-details-content h5 {
  max-width: 900px;
  margin: 50px auto 0;
  padding: 25px 25px 25px 25px;
  margin-bottom: 30px;
  line-height: 1.9;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
  background: #f8f7f0;
  border-radius: 12px;
  color: var(--heading-color);
}

/* Zvýraznění */
.skladka-odpadu-details-content h5 strong {
  color: var(--theme-color);
}

/**** animace obrázku ****/

.skladka-odpadu-image-anime{
	position: relative;
	overflow: hidden;
}

.skladka-odpadu-image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.skladka-odpadu-image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}


/* =========================
   SIDEBAR WRAP
========================= */

/* wrapper */

.skladka-odpadu-sidebar-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0 auto;
}

/* karta */

.skladka-odpadu-detail-sidebar {
  width: 100%;
  max-width: 820px;
}

/* sticky vypnout */

.skladka-odpadu-detail-sidebar .skladka-odpadu-detail-sidebar-inner {
  position: relative;
  top: unset;
}

/* card */

.skladka-odpadu-detail-sidebar .skladka-odpadu-s-widget-wrap {
  background: #f8f7f0;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition:
  transform 0.35s ease,
  box-shadow 0.35s ease;
  
}

.skladka-odpadu-detail-sidebar .skladka-odpadu-s-widget-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

/* title */

.skladka-odpadu-detail-sidebar .skladka-odpadu-s-widget-wrap .skladka-odpadu-w-title h3 {
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
  color: #004540;
  text-shadow: var(--text-shadow);
}

/* head */

.skladka-odpadu-head div {
  display: grid;
  grid-template-columns: 82px 1fr 265px;
  align-items: center;
  padding: 0 16px 18px;
  font-weight: 700;
  color: #f97316;
}

/* grid */

.skladka-odpadu-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* SLOUPEC */
.skladka-odpadu-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skladka-odpadu-item {
  display: grid;
  grid-template-columns: 60px 1fr 260px;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #f1efe8;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
 min-height: 72px;
}

/* hover */

.skladka-odpadu-item:hover {
  transform: translateX(6px);
  background: rgba(0,69,64,0.04);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

/* ikona */

.skladka-odpadu-item i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,69,64,0.08);
  color: #004540;
  font-size: 16px;
}

/* den */

.skladka-odpadu-day {
  font-size: 18px;
  font-weight: 700;
  color: #004540;
}

/* čas */

.skladka-odpadu-time {
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
  color: #0d9488;
}


/* =========================
   TIP BOX – SKLADKA-ODPADU
========================= */
.skladka-odpadu-box {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f8f7f0;
  border-radius: 22px;
  padding: 32px 40px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

/* řádky */

.skladka-odpadu-box span {
  font-size: 33px;
  /*line-height: 1.6;*/
  font-weight: 700;
  color: #004540;
  text-shadow: var(--text-shadow);
}

.skladka-odpadu-box i {
  font-size: 26px;
  color: var(--theme-color);
  margin-top: 2px;
  flex-shrink: 0;
}

.skladka-odpadu-box strong {
  color: var(--theme-green-gr-2);
  font-weight: 700;
}



/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

  .row.align-items-center {
    gap: 28px;
  }

  .skladka-odpadu-detail-card {
    padding: 28px;
    border-radius: 24px;
  }

  .skladka-odpadu-detail-content {
    margin-top: 0;
    padding: 32px 26px;
    border-radius: 24px;
    min-height: auto;
  }

  .skladka-odpadu-content-wrap {
    margin-bottom: 36px;
  }

  .skladka-odpadu-content-wrap .title {
    font-size: 32px;
    line-height: 1.18;
    padding: 10px 0 0 0;
  }

  .skladka-odpadu-content-wrap span {
    font-size: 14px;
    line-height: 1.75;
    max-width: 100%;
  }

  .skladka-odpadu-thumb img {
    max-width: 420px;
  }

  .skladka-odpadu-details-wrap .info {
    grid-template-columns: 160px 1fr;
    gap: 18px;
  }

  .skladka-odpadu-box {
    padding: 24px 26px;
  }

  .skladka-odpadu-box span {
    font-size: 18px;
  }
  .skladka-odpadu-details-title h2 {
    font-size: 28px;
    margin-bottom: -10px;
    padding-bottom: -10px;
  }
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  /* sekce */

  .skladka-odpadu-details-section {
    padding-bottom: 60px;
  }

  .row.align-items-center {
    gap: 22px;
  }

  /* karta */

  .skladka-odpadu-detail-card {
    padding: 18px;
    border-radius: 20px;
  }

  .skladka-odpadu-detail-content {
    padding: 24px 18px;
    border-radius: 20px;
  }

  /* obrázek */

  .skladka-odpadu-thumb {
    padding: 18px;
    border-radius: 16px;
  }

  .skladka-odpadu-thumb img {
    max-width: 100%;
  }

  /* title */

  .skladka-odpadu-content-wrap .subtitle {
    font-size: 13px;
    line-height: 1.4;
    letter-spacing: 0.16em;
    padding-top: 0;
    margin-bottom: 10px;
  }

  .skladka-odpadu-detail-content .title,
  .skladka-odpadu-content-wrap .title {
    font-size: 24px;
    line-height: 1.15;
    margin-bottom: 18px;
  }

  /* text */

  .skladka-odpadu-content-wrap span {
    font-size: 16px;
    line-height: 1.75;
    max-width: 100%;
  }

  .skladka-odpadu-content-wrap {
    margin-bottom: 28px;
  }

  /* parametry */

  .skladka-odpadu-details-wrap {
    margin-top: 24px;
    padding: 18px 0;
  }

  .skladka-odpadu-details-wrap .info {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 0;
  }

  .skladka-odpadu-details-wrap .info p {
    font-size: 15px;
    line-height: 1.4;
    min-width: auto;
  }

  .skladka-odpadu-details-wrap .info span {
    font-size: 15px;
    line-height: 1.65;
  }

  /* otevírací doba */

  .skladka-odpadu-detail-sidebar .skladka-odpadu-s-widget-wrap {
    padding: 20px;
    border-radius: 20px;
  }

  .skladka-odpadu-detail-sidebar .skladka-odpadu-s-widget-wrap .skladka-odpadu-w-title h3 {
    font-size: 26px;
    text-align: center;
  }

  .skladka-odpadu-head {
    display: none;
  }

  .skladka-odpadu-grid {
    gap: 10px;
  }

  .skladka-odpadu-item {
    grid-template-columns: 40px 1fr;
    gap: 10px;
    padding: 14px;
    min-height: auto;
  }

  .skladka-odpadu-item i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .skladka-odpadu-day {
    font-size: 16px;
  }

  .skladka-odpadu-time {
    grid-column: 3;
    font-size: 15px;
    line-height: 1.5;
  }

  /* tip box */

  .skladka-odpadu-box {
    padding: 20px 18px;
    border-radius: 18px;
  }

  .skladka-odpadu-box span {
    font-size: 16px;
    line-height: 1.6;
  }

  .skladka-odpadu-box i {
    font-size: 20px;
  }
  
  .skladka-odpadu-details-title h2 {
    font-size: 20px;
    margin-bottom: -10px;
    padding-bottom: -10px;
  }
}


@media (min-width: 992px) and (max-width: 1199px) {
  .skladka-odpadu-details-layout-wrap {
    flex-direction: column;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .skladka-odpadu-details-layout-wrap {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .skladka-odpadu-details-layout-wrap {
    flex-direction: column;
  }
}

/* horní text */

.skladka-odpadu-oteviraci-doba-content-wrap {
  text-align: center;
  max-width: 980px;
  margin-bottom: 50px;
}

/* divider */

.skladka-odpadu-detail-sidebar .skladka-odpadu-s-widget-wrap .skladka-odpadu-w-title .skladka-odpadu-bar-wrap {
  position: relative;
  z-index: 1;
  margin: 10px 0 30px;
}

.skladka-odpadu-detail-sidebar .skladka-odpadu-s-widget-wrap .skladka-odpadu-w-title .skladka-odpadu-bar-wrap .skladka-odpadu-bar-1 {
  border-bottom: 2px solid rgba(0, 69, 64, 0.1);
}

.skladka-odpadu-detail-sidebar .skladka-odpadu-s-widget-wrap .skladka-odpadu-w-title .skladka-odpadu-bar-wrap .skladka-odpadu-bar-2 {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 69, 64, 0) 0%, #004540 100%);
}








/* ===================================
   SKLADKA ODPADU - INFO – HEADER INFO
====================================== */

/* Nadpis */
.skladka-odpadu-info-details-title h2 {
  text-align: center;
  color: var(--theme-green-gr-2);
}


/* =========================
   SIDEBAR WRAP
========================= */

/* wrapper */

.skladka-odpadu-info-sidebar-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 0 auto;
}

/* karta */

.skladka-odpadu-info-detail-sidebar {
  width: 100%;
  max-width: 820px;
}

/* sticky vypnout */

.skladka-odpadu-info-detail-sidebar .skladka-odpadu-info-detail-sidebar-inner {
  position: relative;
  top: unset;
}

/* card */

.skladka-odpadu-info-detail-sidebar .skladka-odpadu-info-s-widget-wrap {
  background: #f8f7f0;
  padding: 36px;
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  transition:
  transform 0.35s ease,
  box-shadow 0.35s ease;
  
}

.skladka-odpadu-info-detail-sidebar .skladka-odpadu-info-s-widget-wrap:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

/* title */

.skladka-odpadu-info-detail-sidebar .skladka-odpadu-info-s-widget-wrap .skladka-odpadu-info-w-title h3 {
  justify-content: center;
  font-size: 34px;
  font-weight: 800;
  color: #004540;
  text-shadow: var(--text-shadow);

}
.skladka-odpadu-info-w-title i{
    color:var(--theme-primary);
    margin-right:8px;
}

/* grid */

.skladka-odpadu-info-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* SLOUPEC */
.skladka-odpadu-info-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.skladka-odpadu-info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #f1efe8;
  transition:
    transform 0.3s ease,
    background 0.3s ease;
  min-height: 72px;
}

/* hover */

.skladka-odpadu-info-item:hover {
  transform: translateX(6px);
  background: rgba(0,69,64,0.04);
  box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

/* ikona */

.skladka-odpadu-info-item i {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0,69,64,0.08);
  color: #004540;
  font-size: 16px;
}

/* info text */

.skladka-odpadu-info {
  font-size: 16px;
  font-weight:600;
  color:var(--primary-color);
  line-height:1.6;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

  /* info */

  .skladka-odpadu-info-detail-sidebar .skladka-odpadu-info-s-widget-wrap {
    padding: 20px;
    border-radius: 20px;
  }

  .skladka-odpadu-info-detail-sidebar .skladka-odpadu-info-s-widget-wrap .skladka-odpadu-info-w-title h3 {
    font-size: 26px;
    text-align: center;
  }

  .skladka-odpadu-info-grid {
    gap: 10px;
  }

  .skladka-odpadu-info-item {
    /*grid-template-columns: 40px 1fr;*/
    gap: 10px;
    padding: 14px;
    min-height: auto;
  }

  .skladka-odpadu-info-item i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .skladka-odpadu-info-details-title h2 {
    font-size: 20px;
    margin-bottom: -10px;
    padding-bottom: -10px;
  }
}


/* divider */

.skladka-odpadu-info-detail-sidebar .skladka-odpadu-info-s-widget-wrap .skladka-odpadu-info-w-title .skladka-odpadu-info-bar-wrap {
  position: relative;
  z-index: 1;
  margin: 10px 0 30px;
}

.skladka-odpadu-info-detail-sidebar .skladka-odpadu-info-s-widget-wrap .skladka-odpadu-info-w-title .skladka-odpadu-info-bar-wrap .skladka-odpadu-info-bar-1 {
  border-bottom: 2px solid rgba(0, 69, 64, 0.1);
}

.skladka-odpadu-info-detail-sidebar .skladka-odpadu-info-s-widget-wrap .skladka-odpadu-info-w-title .skladka-odpadu-info-bar-wrap .skladka-odpadu-info-bar-2 {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 69, 64, 0) 0%, #004540 100%);
}

.rule-number{
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background: linear-gradient(
        135deg,
        var(--theme-color),
        var(--theme-base)
    );
    color:#fff;
    font-size:14px;
    font-weight:700;
    box-shadow:0 6px 16px rgba(var(--theme-base-rgb),.25);
}


.rule-warning{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#fff3cd;
    color:#d97706;
}

.skladka-upozorneni{
    max-width:900px;
    margin:40px auto;
    padding:25px 30px;
    background:#f8fdf8;
    border-left:6px solid var(--theme-color);
    font-weight:600;
    line-height:1.7;
    color:var(--primary-color);
    border-radius:8px;
}