.cookie-consent {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 1000;
  display: none;
  width: min(420px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid #90AEAD;
  border-radius: 18px;
  background: rgba(251, 233, 208, 0.98);
  box-shadow: 0 22px 60px rgba(30, 23, 18, 0.18);
  color: #244855;
  font-family: "Nunito Sans", "Noto Sans JP", system-ui, sans-serif;
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent__title {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
}

.cookie-consent__text {
  margin: 0;
  color: #1F2526;
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-consent__text a {
  color: #E64833;
  font-weight: 700;
  text-underline-offset: 3px;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.cookie-consent__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #E64833;
  border-radius: 999px;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  cursor: pointer;
}

.cookie-consent__button--accept {
  background: #E64833;
  color: #FFFFFF;
}

.cookie-consent__button--reject {
  background: transparent;
  color: #E64833;
}

@media (max-width: 520px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    width: calc(100vw - 24px);
    padding: 16px;
  }

  .cookie-consent__actions {
    display: grid;
  }
}

