/* ==========================================================================
   Cookie consent (Figma 336:901 desktop / 1063:13024 tablet / 1063:13033 mobile)
   Fixed bottom-center, reusable across pages
   ========================================================================== */

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 100;
  width: min(1223px, calc(100vw - 48px));
  background: var(--bg);
  border: 1px solid var(--stroke);
  border-radius: var(--r-4);
  padding: 32px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  transition: opacity var(--tr), transform var(--tr), visibility var(--tr);
}

.cookie-consent[aria-hidden="true"] {
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(20px);
  pointer-events: none;
}

/* Inner row: text + button, space-between, center vertical */
.cookie-consent__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

/* Text (Figma Frame 163: 22/110% Medium, link underlined) */
.cookie-consent__text {
  margin: 0;
  flex: 1;
  min-width: 0;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
  color: var(--text);
}
.cookie-consent__link {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity var(--tr);
}
.cookie-consent__link:hover { opacity: 0.7; }

/* Button (reuse .btn-grad + .btn-grad--fill): 285×50 desktop, radius 12 */
.cookie-consent__btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 285px;
  height: 50px;
  padding: 15px 25px;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  overflow: hidden;
}
.cookie-consent__btn span {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.1;
  color: #fff;
}

/* ==========================================================================
   Tablet (Figma 1063:13024, 633×174, radius 12, text 20/110%)
   ========================================================================== */
@media (max-width: 1024px) {
  .cookie-consent {
    width: min(633px, calc(100vw - 32px));
    border-radius: 12px;
  }
  .cookie-consent__text { font-size: 20px; }
}

/* ==========================================================================
   Mobile (Figma 1063:13033, 317×213, vertical layout, text 16/110%, button full-width)
   ========================================================================== */
@media (max-width: 600px) {
  .cookie-consent {
    width: min(317px, calc(100vw - 24px));
    bottom: 16px;
  }
  .cookie-consent__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .cookie-consent__text {
    font-size: 16px;
  }
  .cookie-consent__btn {
    width: 100%;
    height: 45px;
    padding: 15px 25px;
  }
  .cookie-consent__btn span { font-size: 14px; }
}
