/* Cookie Banner Styles - Minimalistic GDPR Compliant */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(51, 51, 51, 0.98);
  padding: 20px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 10000;
  display: none;
  backdrop-filter: blur(10px);
}

.cookie-banner.show {
  display: block;
}

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

.cookie-content p {
  color: #FFFFFF;
  margin: 0;
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  line-height: 1.5;
}

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

.cookie-content a:hover {
  color: #FFFFFF;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}

.cookie-accept {
  background-color: #FFB7C5;
  color: #333333;
}

.cookie-accept:hover {
  background-color: #FFD4DB;
}

.cookie-reject {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-customize {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid #FFD4DB;
}

.cookie-customize:hover {
  background-color: rgba(255, 183, 197, 0.1);
  border-color: #FFB7C5;
}

/* Cookie Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 10001;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  border-radius: 16px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cookie-modal-content h2 {
  margin-top: 0;
  margin-bottom: 16px;
  color: #333333;
  font-size: 1.75rem;
}

.cookie-modal-content > p {
  color: #666666;
  margin-bottom: 32px;
  line-height: 1.6;
}

.cookie-option {
  margin-bottom: 24px;
  padding: 24px;
  background-color: #FAF8F5;
  border-radius: 8px;
  border: 1px solid #FFD4DB;
}

.cookie-option-header {
  margin-bottom: 12px;
}

.cookie-option-header label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  color: #333333;
}

.cookie-option-header input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #FFB7C5;
}

.cookie-option-header input[type="checkbox"]:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

.cookie-option p {
  margin: 0;
  color: #666666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #FFD4DB;
}

.cookie-modal-buttons .cookie-btn {
  flex: 1;
  padding: 14px 24px;
}

/* Responsive */
@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
    text-align: center;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .cookie-banner {
    padding: 16px;
  }

  .cookie-modal {
    padding: 16px;
  }

  .cookie-modal-content h2 {
    font-size: 1.5rem;
  }
}
