/* Cookie Consent Banner */
.cookie-consent {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  background-color: #8B6F7F !important;
  padding: 1.5rem 1rem !important;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2) !important;
  z-index: 99999 !important;
  display: none !important;
}

.cookie-consent.show {
  display: block !important;
  animation: slideUp 0.4s ease-out !important;
}

@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cookie-consent-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cookie-consent-text {
  color: #FFFFFF;
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}

.cookie-consent-text p {
  margin: 0 0 0.5rem 0;
}

.cookie-consent-text strong {
  font-weight: 600;
  font-size: 15px;
}

.cookie-consent-text a {
  color: #F4E8E3;
  text-decoration: underline;
}

.cookie-consent-text a:hover {
  color: #FFFFFF;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-consent-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-consent-btn-accept {
  background-color: #D4A5A5;
  color: #5A4A52;
}

.cookie-consent-btn-accept:hover {
  background-color: #F4E8E3;
}

.cookie-consent-btn-decline {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.cookie-consent-btn-decline:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .cookie-consent-container {
    flex-direction: column;
    gap: 1rem;
  }
  .cookie-consent-actions {
    flex-direction: column;
    width: 100%;
  }
  .cookie-consent-btn {
    width: 100%;
  }
}
