/* Cookie Consent Popup Styles */
.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: 92%;
  max-width: 640px;
  background: #ffffff;
  color: #1a1a1a;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  padding: 20px 24px;
  box-sizing: border-box;
  z-index: 9999;
}

.cookie-banner p {
  margin: 0 0 10px;
  line-height: 1.5;
  font-size: 14px;
}

.cookie-banner .cookie-policy-link {
  font-size: 13px;
}

.cookie-btn-row {
  display: flex;
  gap: 12px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.cookie-btn-row button {
  flex: 1;
  min-width: 160px;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

@media (max-width: 576px) {
  .cookie-banner {
    bottom: 0;
    border-radius: 10px 10px 0 0;
  }
}