

.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 35, 126, 0.95);
  color: white;
  padding: 1rem 2rem;
  z-index: 1000;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

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

.cookie-text {
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.4;
}

.cookie-text a {
  color: #d4af37;
  text-decoration: underline;
  font-weight: 500;
}

.cookie-text a:hover {
  color: #f5e0a9;
}

.cookie-settings-link {
  color: #d4af37;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cookie-settings-link:hover {
  color: #f5e0a9;
}

.cookie-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.cookie-button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: #d4af37;
  color: #1a237e;
}

.cookie-accept:hover {
  background: #f5e0a9;
  transform: translateY(-1px);
}

.cookie-decline {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}


.cookie-settings-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  align-items: center;
  justify-content: center;
}

.cookie-settings {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  max-width: 500px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
}

.cookie-settings h3 {
  color: #1a237e;
  margin-bottom: 1rem;
}

.cookie-settings p {
  margin-bottom: 1.5rem;
  color: #555;
}

.cookie-preferences {
  margin-bottom: 2rem;
}

.cookie-preference {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.cookie-preference:last-child {
  border-bottom: none;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.3s;
  border-radius: 24px;
}

.cookie-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-slider {
  background-color: #d4af37;
}

.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(26px);
}

.cookie-slider {
  border: 2px solid #d4af37;
}


@media (max-width: 768px) {
  .cookie-consent-banner {
    padding: 1rem;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-actions {
    align-self: flex-end;
  }
  
  .cookie-text {
    font-size: 0.85rem;
  }
  
  .cookie-settings {
    padding: 1.5rem;
    margin: 1rem;
  }
}

@media (max-width: 480px) {
  .cookie-consent-banner {
    padding: 0.75rem;
  }
  
  .cookie-text {
    font-size: 0.8rem;
  }
  
  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }
  
  .cookie-button {
    flex: 1;
    margin: 0 0.25rem;
  }
}