/* Cookie Banner основни стилове */

.cc_div {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding: 20px;
  color: white;
}

.cc_div.show--consent {
  transform: translateY(0);
}

#cm {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

#c-ttl {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #fff;
}

#c-txt p {
  margin-bottom: 20px;
  line-height: 1.5;
  color: #e0e0e0;
}

.cookie-options {
  margin: 20px 0;
  text-align: left;
}

.cookie-checkbox {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  cursor: pointer;
  padding: 10px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  transition: background 0.2s ease;
}

.cookie-checkbox:hover {
  background: rgba(255, 255, 255, 0.15);
}

.cookie-checkbox input[type="checkbox"] {
  display: none;
}

.b-tg {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  margin-right: 15px;
  transition: background 0.3s ease;
}

.cookie-checkbox input:checked + .b-tg {
  background: #007bff;
}

.c-tg {
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.cookie-checkbox input:checked + .b-tg .c-tg {
  transform: translateX(24px);
}

.cookie-text {
  flex: 1;
  font-weight: 500;
  color: white;
}

.cookie-checkbox small {
  display: block;
  color: #ccc;
  font-size: 11px;
  margin-top: 3px;
}

#c-bns {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.c-bn {
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 120px;
}

.accept-all {
  background: #28a745;
  color: white;
}

.accept-all:hover {
  background: #218838;
}

.c-bn:not(.accept-all):not(.decline-all) {
  background: #007bff;
  color: white;
}

.c-bn:not(.accept-all):not(.decline-all):hover {
  background: #0056b3;
}

.decline-all {
  background: #dc3545;
  color: white;
}

.decline-all:hover {
  background: #c82333;
}

.privacy-link {
  color: #007bff;
  text-decoration: underline;
}

.privacy-link:hover {
  color: #0056b3;
}

/* Responsive */

@media (max-width: 768px) {
  .cc_div {
    padding: 15px;
  }
}

@media (max-width: 768px) {
  #c-bns {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .c-bn {
    width: 100%;
    margin-bottom: 8px;
  }
}

