/* ========== COOKIE BANNER ========== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #fff;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.1);
  border-top: 1px solid #f0f0f0;
  padding: 20px 32px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}

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

.cookie-banner-text {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.cookie-banner-icon {
  flex-shrink: 0;
  margin-top: 1px;
}
.cookie-banner-text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.6;
  color: #555;
  font-weight: 500;
}
.cookie-banner-text a {
  color: var(--orange, #F26522);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner-text a:hover {
  color: #d85a1e;
}

.cookie-banner-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 24px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
  white-space: nowrap;
}
.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-accept {
  background: var(--orange, #F26522);
  color: #fff;
}
.cookie-btn-accept:hover {
  background: #d9551a;
}

.cookie-btn-reject {
  background: #f0f0f0;
  color: #666;
}
.cookie-btn-reject:hover {
  background: #e4e4e4;
  color: #333;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .cookie-banner {
    padding: 16px 20px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  .cookie-banner-text p {
    font-size: 12px;
  }
  .cookie-banner-actions {
    justify-content: stretch;
  }
  .cookie-btn {
    flex: 1;
    text-align: center;
    padding: 12px 16px;
    font-size: 11px;
  }
}

@media (max-width: 420px) {
  .cookie-banner {
    padding: 14px 16px;
  }
  .cookie-banner-icon {
    display: none;
  }
  .cookie-banner-text p {
    font-size: 11.5px;
  }
}
