/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(212, 163, 115, 0.98) 0%, rgba(198, 140, 93, 0.98) 100%);
  color: white;
  padding: 1.5rem 2rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  animation: slideUp 0.4s ease-out;
  backdrop-filter: blur(10px);
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.cookie-text h3 {
  margin: 0 0 0.5rem 0;
  font-size: 1.2rem;
  font-weight: 600;
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.95;
  line-height: 1.5;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.75rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-accept {
  background: white;
  color: #d4a373;
}

.cookie-accept:hover {
  background: #f5f5f5;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-decline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

body.dark-mode .cookie-banner {
  background: linear-gradient(135deg, rgba(198, 140, 93, 0.95) 0%, rgba(170, 120, 80, 0.95) 100%);
}

/* Cookie notice shown when form is blocked */
.cookie-notice {
  text-align: center;
  padding: 60px 40px;
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 100%);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  border: 2px dashed #d4a373;
  animation: fadeIn 0.5s ease-out;
}

.cookie-notice .notice-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.cookie-notice h3 {
  color: #d4a373;
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.cookie-notice p {
  color: #666;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 25px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.btn-accept-cookies {
  background: linear-gradient(135deg, #d4a373 0%, #c68c5d 100%);
  color: white;
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(212, 163, 115, 0.3);
}

.btn-accept-cookies:hover {
  background: linear-gradient(135deg, #c68c5d 0%, #b87a4d 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(212, 163, 115, 0.4);
}

body.dark-theme .cookie-notice {
  background: linear-gradient(135deg, #3a322d 0%, #2a2522 100%);
  border-color: #cda679;
}

body.dark-theme .cookie-notice h3 {
  color: #cda679;
}

body.dark-theme .cookie-notice p {
  color: #aaa;
}

body.dark-theme .btn-accept-cookies {
  background: linear-gradient(135deg, #cda679 0%, #d9b98f 100%);
  color: #2b2623;
}

body.dark-theme .btn-accept-cookies:hover {
  background: linear-gradient(135deg, #d9b98f 0%, #e5c9a5 100%);
}

