/* ===== COOKIE SÚHLAS ===== */
.cookie-suhlasy {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1a2a44;
  color: #e2e8f0;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 1rem 0;
}

.cookie-suhlasy__vnutorne {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-suhlasy__obsah {
  flex: 1;
  min-width: 280px;
}

.cookie-suhlasy__obsah p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-suhlasy__obsah a {
  color: #c89b3c;
  text-decoration: underline;
}

.cookie-suhlasy__obsah a:hover {
  color: #f0e6cc;
}

.cookie-suhlasy__tlacidla {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-suhlasy__tlacidlo {
  padding: 0.6rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cookie-suhlasy__tlacidlo--nevyhnutne {
  background-color: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.3);
}

.cookie-suhlasy__tlacidlo--nevyhnutne:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.cookie-suhlasy__tlacidlo--vsetky {
  background-color: #c89b3c;
  color: #1a2a44;
  border-color: #c89b3c;
}

.cookie-suhlasy__tlacidlo--vsetky:hover {
  background-color: #b8892e;
  border-color: #b8892e;
}

@media (max-width: 767.98px) {
  .cookie-suhlasy__vnutorne {
    flex-direction: column;
    text-align: center;
  }
  .cookie-suhlasy__tlacidla {
    width: 100%;
    justify-content: center;
  }
}
