/* assets/css/cookie-consent.css */
.cc-banner[hidden], .cc-modal[hidden]{ display:none !important; }

.cc-banner{
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  font-family: inherit;
}

.cc-wrap{
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(15, 24, 48, 0.96);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 14px 14px;
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.cc-title{
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.cc-desc{
  color: rgba(255,255,255,0.82);
  font-size: 14px;
  line-height: 1.35;
}

.cc-link{ color: #fff; text-decoration: underline; }

.cc-actions{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  justify-content:flex-end;
}

.cc-btn{
  border-radius: 6px;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1;
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.cc-btn.cc-primary{
  background: #ffffff;
  color: #0f1830;
  border-color: #ffffff;
}

.cc-btn.cc-ghost{
  background: transparent;
}

.cc-modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
  z-index: 10000;
}

.cc-modal__panel{
  width: 100%;
  max-width: 520px;
  background: rgba(15, 24, 48, 0.98);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  overflow:hidden;
}

.cc-modal__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.cc-modal__title{ color:#fff; font-weight:700; }

.cc-x{
  width: 36px;
  height: 36px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.22);
  background: transparent;
  color:#fff;
  cursor:pointer;
  font-size: 20px;
  line-height: 1;
}

.cc-modal__body{ padding: 14px 16px; }
.cc-row{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 0;
  color: rgba(255,255,255,0.9);
}
.cc-row input{ transform: translateY(1px); }

.cc-modal__foot{
  padding: 14px 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display:flex;
  justify-content:flex-end;
}
