@charset "UTF-8";
/* CSS Document */
.cc-lock {
    overflow: hidden;
}
/* =========================
   Cookie Banner
========================= */
.cc-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: #111125;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.24);
}
.cc-banner__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 24px;
}
.cc-banner__text {
    flex: 1 1 auto;
}
.cc-banner__title {
    margin: 0 0 8px;
    padding: 0;
    border: 0;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: #ffffff;
}
.cc-banner__desc {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}
.cc-banner__desc a {
    color: #ffffff;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.cc-banner__desc a:hover {
    color: rgba(255, 255, 255, 0.85);
}
.cc-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}
/* =========================
   Buttons
========================= */
.cc-btn {
    appearance: none;
    -webkit-appearance: none;
    margin: 0;
    padding: 12px 18px;
    border-radius: 8px;
    border: 0;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    cursor: pointer;
    transition: opacity 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.cc-btn:hover {
    opacity: 0.9;
}
.cc-btn--primary {
    background: linear-gradient(90deg, #0091c7, #db337a);
    color: #ffffff;
}
.cc-btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.16);
}
/* =========================
   Modal
========================= */
.cc-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
}
.cc-modal[aria-hidden="false"] {
    display: block;
}
.cc-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}
.cc-modal__dialog {
    position: relative;
    width: min(720px, calc(100% - 32px));
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    margin: 24px auto;
    padding: 24px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}
.cc-modal__close {
    appearance: none;
    -webkit-appearance: none;
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #555555;
    cursor: pointer;
}
.cc-modal__title {
    margin: 0 0 12px;
    padding: 0;
    border: 0;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    color: #222222;
}
.cc-modal__desc {
    margin: 0 0 24px;
    padding: 0;
    border: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.9;
    color: #555555;
}
/* =========================
   Consent Groups
========================= */
.cc-group {
    display: grid;
    gap: 0;
}
.cc-group__row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    border-top: 1px solid #eeeeee;
}
.cc-group__body {
    flex: 1 1 auto;
}
.cc-group__body strong {
    display: block;
    margin: 0 0 6px;
    padding: 0;
    border: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
    color: #222222;
}
.cc-group__body p {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.8;
    color: #666666;
}
/* =========================
   Switch / Checkbox Area
========================= */
.cc-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    font-size: 13px;
    color: #444444;
}
.cc-switch input {
    width: 18px;
    height: 18px;
    margin: 0;
}
.cc-switch.is-disabled {
    opacity: 0.7;
}
/* =========================
   Modal Footer Actions
========================= */
.cc-modal__actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #eeeeee;
}
.footer-cookie-link {
    display: flex;
    justify-content: flex-end;
    padding: 8px 14px;
    margin: 0;
    background: #000020;
}
.footer-cookie-link a {
    font-size: 0.7rem;
    display: inline-block;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}
.footer-cookie-link a:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}
/* =========================
   Responsive
========================= */
@media (max-width: 768px) {
  .cc-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 10px;
  }

  .cc-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 14px;
  }

  .cc-banner__title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .cc-banner__desc {
    font-size: 12px;
    line-height: 1.65;
  }

  .cc-banner__actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .cc-btn {
    width: 100%;
    padding: 10px 8px;
    font-size: 11px;
    line-height: 1.4;
    border-radius: 8px;
    white-space: nowrap;
  }

  .cc-modal__dialog {
    width: calc(100% - 20px);
    max-height: calc(100vh - 20px);
    margin: 10px auto;
    padding: 18px 14px;
    border-radius: 10px;
  }

  .cc-modal__title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .cc-modal__desc {
    font-size: 13px;
    line-height: 1.75;
    margin-bottom: 18px;
  }

  .cc-group__row {
    flex-direction: column;
    gap: 10px;
    padding: 14px 0;
  }

  .cc-group__body strong {
    font-size: 14px;
  }

  .cc-group__body p {
    font-size: 12px;
    line-height: 1.7;
  }

  .cc-modal__actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
  }
}