/* MB Design & Build, cookie banner */
.mb-cookie-banner{
  position:fixed;left:20px;bottom:20px;z-index:9999;
  right:auto;
  background:#1a1a1a;color:#fff;
  border:1px solid rgba(255,255,255,0.1);
  border-radius:8px;
  padding:24px 28px;
  display:none;flex-direction:column;gap:18px;
  box-shadow:0 24px 60px rgba(0,0,0,0.35);
  font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  max-width:min(520px,calc(100vw - 130px));
}
@media (max-width:599px){
  .mb-cookie-banner{
    left:16px;right:16px;bottom:96px;
    max-width:none;
  }
}
.mb-cookie-banner.show{display:flex;animation:mbCookieIn .4s ease}
@keyframes mbCookieIn{from{opacity:0;transform:translateY(20px)}to{opacity:1;transform:none}}
.mb-cookie-banner h3{
  font-family:'Inter',sans-serif;
  font-size:1.2rem;font-weight:400;color:#fff;letter-spacing:-.015em;line-height:1.15;
  margin:0;
}
.mb-cookie-banner p{
  font-size:0.9rem;line-height:1.5;color:rgba(255,255,255,0.75);margin:0;
}
.mb-cookie-banner p a{color:#5a0f1f;font-weight:500;text-decoration:underline;text-underline-offset:3px}
.mb-cookie-banner p a:hover{color:#fff}
.mb-cookie-actions{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.mb-cookie-actions button{
  font:inherit;cursor:pointer;border:0;padding:12px 22px;border-radius:999px;
  font-size:0.85rem;font-weight:600;letter-spacing:.02em;
  transition:transform .2s,background .2s,color .2s,border-color .2s;
}
.mb-cookie-actions button:hover{transform:translateY(-1px)}
.mb-cookie-accept{background:#5a0f1f;color:#fff}
.mb-cookie-accept:hover{background:#5a0f1f}
.mb-cookie-reject{background:transparent;color:#fff;border:1px solid rgba(255,255,255,0.3)}
.mb-cookie-reject:hover{border-color:#fff;background:rgba(255,255,255,0.05)}
.mb-cookie-settings{background:transparent;color:rgba(255,255,255,0.6);font-weight:500;padding:12px 16px;font-size:0.82rem;text-decoration:underline;text-underline-offset:3px}
.mb-cookie-settings:hover{color:#fff}

/* Settings modal */
.mb-cookie-modal{
  position:fixed;inset:0;z-index:10000;
  background:rgba(12,12,12,0.85);backdrop-filter:blur(6px);
  display:none;align-items:center;justify-content:center;padding:20px;
}
.mb-cookie-modal.show{display:flex;animation:mbCookieIn .3s ease}
.mb-cookie-modal-inner{
  background:#faf8f5;color:#0c0c0c;
  max-width:560px;width:100%;max-height:90vh;overflow-y:auto;
  border-radius:4px;padding:36px 32px;
  font-family:'Inter',system-ui,sans-serif;
}
.mb-cookie-modal h3{
  font-family:'Inter',sans-serif;
  font-size:1.55rem;font-weight:400;letter-spacing:-.02em;line-height:1.1;
  margin:0 0 8px;color:#0c0c0c;
}
.mb-cookie-modal > .mb-cookie-modal-inner > p{
  font-size:0.9rem;line-height:1.5;color:#5a5a58;margin:0 0 24px;
}
.mb-cookie-row{
  display:flex;justify-content:space-between;align-items:flex-start;gap:18px;
  padding:18px 0;border-top:1px solid #e6e1d6;
}
.mb-cookie-row:last-of-type{border-bottom:1px solid #e6e1d6}
.mb-cookie-row .label{font-weight:600;font-size:0.95rem;color:#0c0c0c}
.mb-cookie-row .desc{font-size:0.82rem;color:#5a5a58;margin-top:4px;line-height:1.5;max-width:340px}
.mb-cookie-row .always{font-size:0.78rem;font-weight:600;color:#5a0f1f;letter-spacing:.08em;text-transform:uppercase}
.mb-cookie-toggle{
  position:relative;width:44px;height:24px;background:#d4cfc0;border-radius:999px;cursor:pointer;
  transition:background .2s;flex-shrink:0;
}
.mb-cookie-toggle::after{
  content:"";position:absolute;left:2px;top:2px;width:20px;height:20px;
  background:#fff;border-radius:50%;transition:transform .2s;
}
.mb-cookie-toggle.on{background:#5a0f1f}
.mb-cookie-toggle.on::after{transform:translateX(20px)}
.mb-cookie-modal-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.mb-cookie-modal-actions button{
  font:inherit;cursor:pointer;border:0;padding:13px 24px;border-radius:999px;
  font-size:0.85rem;font-weight:600;transition:transform .2s,background .2s;
}
.mb-cookie-modal-actions .save{background:#0c0c0c;color:#fff}
.mb-cookie-modal-actions .save:hover{background:#000;transform:translateY(-1px)}
.mb-cookie-modal-actions .accept-all{background:#5a0f1f;color:#fff}
.mb-cookie-modal-actions .accept-all:hover{background:#5a0f1f;transform:translateY(-1px)}

@media (max-width:600px){
  .mb-cookie-banner h3{font-size:1.1rem}
  .mb-cookie-actions button{padding:10px 18px;font-size:0.82rem}
}
