
:root{
  --nc-green: #2f5f3e;
  --nc-green-soft: #e3efe7;
  --nc-text: #355a46;
  --nc-muted: #5a7a66;
  --nc-bg: #ffffff;
  --nc-radius: 18px;
  --nc-shadow: 0 20px 60px rgba(0,0,0,.18);
  --nc-font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
}

/* Centered bottom card (NOT full width) */
#neuro-cookies-wrap{
  position: fixed;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  z-index: 99999;
  width: min(1100px, calc(100% - 48px));
  font-family: var(--nc-font);
}

body.admin-bar #neuro-cookies-wrap{
  bottom: 58px; /* leave space for admin bar */
}

.neuro-cookies-card{
  background: var(--nc-bg);
  border-radius: var(--nc-radius);
  box-shadow: var(--nc-shadow);
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}

.neuro-cookies-left{ flex: 1; min-width: 0; }
.neuro-cookies-title{
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--nc-green);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 10px;
}
.neuro-cookies-icon{ width: 22px; height: 22px; }
.neuro-cookies-text{
  color: var(--nc-muted);
  font-size: 14px;
  line-height: 1.65;
}

.neuro-cookies-right{
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  white-space: nowrap;
}

.neuro-btn{
  border-radius: 999px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform .08s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.neuro-btn:active{ transform: translateY(1px); }

.neuro-btn-primary{
  background: var(--nc-green);
  border-color: var(--nc-green);
  color: #fff;
}
.neuro-btn-primary:hover{ background: #254c33; }

.neuro-btn-outline{
  background: #fff;
  border-color: var(--nc-green);
  color: var(--nc-green);
}
.neuro-btn-outline:hover{ background: var(--nc-green-soft); }

.neuro-link{
  background: transparent;
  border: 0;
  padding: 10px 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--nc-muted);
  cursor: pointer;
}

/* Mobile: stack buttons below text, like compact card */
@media (max-width: 760px){
  .neuro-cookies-card{ flex-direction: column; align-items: flex-start; }
  .neuro-cookies-right{ width: 100%; flex-wrap: wrap; white-space: normal; }
  .neuro-btn{ padding: 10px 18px; }
}
