

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(37, 35, 32, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  max-height: 120px;
  overflow-y: auto;
  font-family: 'Noto Sans JP', sans-serif;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner__text {
  flex: 1;
  line-height: 1.6;
}

.cookie-banner__text a {
  color: #5C7C5F;
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: #7CA57F;
}

.cookie-banner__actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.cookie-banner__btn {
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.2s;
  font-family: 'Noto Sans JP', sans-serif;
}

.cookie-banner__btn--accept {
  background-color: #5C7C5F;
  color: white;
}

.cookie-banner__btn--accept:hover {
  background-color: #3D5C40;
}

.cookie-banner__btn--reject {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.cookie-banner__btn--reject:hover {
  border-color: rgba(255, 255, 255, 0.6);
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__btn {
    flex: 1;
    min-width: 100px;
  }
}
