/* Cookie Consent Banner */
.cookie-banner { position: fixed; bottom: 0; left: 0; width: 100%; background: #0d1f17; border-top: 1px solid rgba(212, 168, 83, 0.2); padding: 20px 16px; z-index: 9999; transform: translateY(100%); transition: transform 0.4s ease; box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.4); }
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner .cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.cookie-banner .cookie-text { font-size: 13px; line-height: 20px; color: rgba(255, 255, 255, 0.75); }
.cookie-banner .cookie-text a { color: #d4a853; text-decoration: underline; }
.cookie-banner .cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-banner .cookie-accept { padding: 10px 24px; background: #c41e3a; color: #ffffff; font-size: 13px; font-weight: 700; border: none; border-radius: 4px; cursor: pointer; transition: background 0.2s ease; text-transform: uppercase; letter-spacing: 0.5px; }
.cookie-banner .cookie-accept:hover { background: #d4253f; }
.cookie-banner .cookie-reject { padding: 10px 24px; background: transparent; color: rgba(255, 255, 255, 0.6); font-size: 13px; font-weight: 600; border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 4px; cursor: pointer; transition: border-color 0.2s ease, color 0.2s ease; }
.cookie-banner .cookie-reject:hover { border-color: rgba(255, 255, 255, 0.3); color: #ffffff; }
@media (min-width: 768px) {
  .cookie-banner .cookie-inner { flex-direction: row; align-items: center; justify-content: space-between; }
  .cookie-banner .cookie-text { flex: 1; margin-right: 20px; }
  .cookie-banner .cookie-actions { flex-shrink: 0; }
}
