.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #ffffff;
  border-top: 1px solid #eaeaea;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  z-index: 9999;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.05);
  font-family: system-ui, -apple-system, sans-serif;
}
.cookie-banner__content { flex: 1; min-width: 280px; }
.cookie-banner__title { margin: 0 0 4px; font-size: 15px; font-weight: 600; color: #0a0a0a; }
.cookie-banner__text { margin: 0; font-size: 14px; line-height: 1.5; color: #4a4a4a; }
.cookie-banner__text a { color: #0a0a0a; text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.cookie-btn--ghost { background: transparent; color: #4a4a4a; border-color: transparent; text-decoration: underline; }
.cookie-btn--outline { background: transparent; color: #0a0a0a; border-color: #d0d0d0; }
.cookie-btn--outline:hover { background: #f5f5f5; }
.cookie-btn--solid { background: #0a0a0a; color: #ffffff; }
.cookie-btn--solid:hover { background: #2a2a2a; }

.cookie-modal {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  z-index: 10000;
}
.cookie-modal__box {
  background: #fff; border-radius: 8px; padding: 28px;
  max-width: 420px; width: 90%;
  font-family: system-ui, -apple-system, sans-serif;
}
.cookie-modal__row {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 16px; padding: 16px 0; border-top: 1px solid #ececec;
}
.cookie-modal__label { margin: 0; font-size: 14px; font-weight: 500; color: #0a0a0a; }
.cookie-modal__desc { margin: 4px 0 0; font-size: 13px; color: #6a6a6a; }