/* ============ COOKIE CONSENT BANNER ============ */
.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: linear-gradient(90deg, #ff7e5f, #feb47b);
  color: #fff;
  padding: 20px 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.4px;
}

.consent-banner.visible {
  transform: translateY(0);
}

.consent-banner.hiding {
  transform: translateY(100%);
}

.consent-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.consent-text {
  flex: 1 1 500px;
  font-size: 14px;
  line-height: 1.7;
  color: #fff;
}

.consent-text a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
  transition: opacity 0.3s ease;
}

.consent-text a:hover {
  opacity: 0.8;
}

.consent-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.consent-btn {
  border: none;
  border-radius: 6px;
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.4px;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
  position: relative;
  overflow: hidden;
}

.consent-btn.accept {
  background-color: #fff;
  color: #DA4411;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.consent-btn.accept:hover {
  background-color: #f9f9f9;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.consent-btn.decline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.consent-btn.decline:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile responsive */
@media (max-width: 768px) {
  .consent-banner {
    bottom: 120px; /* Sit above the mobile sticky phone bar */
  }
}

@media (max-width: 600px) {
  .consent-banner {
    padding: 16px;
  }

  .consent-inner {
    flex-direction: column;
    text-align: center;
  }

  .consent-text {
    flex-basis: auto;
    font-size: 13px;
  }

  .consent-buttons {
    width: 100%;
    justify-content: center;
  }

  .consent-btn {
    flex: 1;
    padding: 12px 16px;
  }
}
