.ss-cookie {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1200;
  padding: 16px max(var(--ss-gutter), env(safe-area-inset-right, 0px))
    max(16px, env(safe-area-inset-bottom, 0px))
    max(var(--ss-gutter), env(safe-area-inset-left, 0px));
  background: rgba(20, 36, 20, 0.92);
  color: #fff;
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  animation: ss-cookie-in 0.3s ease;
}

@keyframes ss-cookie-in {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.ss-cookie__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ss-cookie__text {
  flex: 1;
  min-width: 0;
}

.ss-cookie__title {
  margin: 0 0 6px;
  font-family: var(--ss-display);
  font-size: 16px;
  font-weight: 700;
}

.ss-cookie__text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
}

.ss-cookie__text a {
  color: var(--ss-accent-bright);
  text-decoration: underline;
}

.ss-cookie__actions {
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  gap: 10px;
}

.ss-cookie__actions .ss-btn--ghost-dark {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.ss-cookie__actions .ss-btn--ghost-dark:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .ss-cookie__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .ss-cookie__actions {
    flex-direction: column;
  }

  .ss-cookie__actions .ss-btn {
    width: 100%;
    justify-content: center;
  }
}
