.cookie-consent {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  opacity: 0;
  transform: translateY(24px);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.cookie-consent.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-consent__inner {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, rgba(8, 8, 8, 0.97), rgba(20, 20, 20, 0.96));
  border: 1px solid rgba(var(--site-accent-rgb, 218, 35, 42), 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  border-radius: 14px;
  padding: 20px 22px;
}

.cookie-consent__content h3 {
  font-family: var(--font-serif, 'Playfair Display', serif);
  font-size: 20px;
  font-weight: 500;
  color: #f8f5ef;
  margin: 0 0 8px;
}

.cookie-consent__content p {
  margin: 0;
  color: #d3d0ca;
  font-size: 13px;
  line-height: 1.6;
}

.cookie-consent__content a {
  color: var(--site-accent, #da232a);
  text-decoration: none;
  border-bottom: 1px solid rgba(var(--site-accent-rgb, 218, 35, 42), 0.45);
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  border: 1px solid transparent;
  background: transparent;
  color: #f8f5ef;
  padding: 11px 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
}

.cookie-btn--ghost {
  border-color: rgba(248, 245, 239, 0.3);
}

.cookie-btn--ghost:hover {
  border-color: rgba(var(--site-accent-rgb, 218, 35, 42), 0.7);
  color: var(--site-accent, #da232a);
}

.cookie-btn--primary {
  background: var(--site-accent, #da232a);
  border-color: var(--site-accent, #da232a);
  color: #080808;
}

.cookie-btn--primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

@media (max-width: 900px) {
  .cookie-consent {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-consent__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }

  .cookie-consent__content h3 {
    font-size: 18px;
  }

  .cookie-consent__actions {
    width: 100%;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
}
