/* ColorPages Cookie Consent ES — cookie.css */

.cpces-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #1A1A18;
  color: #fff;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), opacity 0.35s ease;
}

.cpces-hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cpces-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.cpces-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cpces-content {
  flex: 1;
  min-width: 260px;
}

.cpces-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 5px;
  font-family: sans-serif;
}

.cpces-text {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin: 0 0 6px;
  line-height: 1.55;
  font-family: sans-serif;
}

.cpces-policy-link {
  font-size: 12px;
  color: #E8603C;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: sans-serif;
}

.cpces-policy-link:hover {
  color: #ff7a4d;
}

.cpces-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cpces-btn {
  font-family: sans-serif;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.cpces-btn-decline {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
}

.cpces-btn-decline:hover {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

.cpces-btn-accept {
  background: #E8603C;
  color: #fff;
  border: 1px solid #E8603C;
}

.cpces-btn-accept:hover {
  background: #C44A28;
  border-color: #C44A28;
}

.cpces-btn:active {
  transform: scale(0.97);
}

@media (max-width: 600px) {
  .cpces-inner {
    padding: 14px 16px;
    gap: 14px;
  }
  .cpces-actions {
    width: 100%;
    justify-content: stretch;
  }
  .cpces-btn {
    flex: 1;
    text-align: center;
    padding: 11px 12px;
  }
}
