/* Consent Mode v2 — simplex.md */
.edc__banner{position:fixed;left:16px;right:16px;bottom:16px;z-index:99998;background:#fff;
  border-radius:12px;box-shadow:0 8px 32px rgba(0,0,0,.18);padding:20px 24px;display:flex;
  flex-wrap:wrap;gap:16px;align-items:center;justify-content:space-between;
  font-family:inherit;max-width:1140px;margin:0 auto}
.edc__text{flex:1 1 480px;min-width:260px}
.edc__text h3{margin:0 0 6px;font-size:16px;font-weight:600}
.edc__text p{margin:0;font-size:13px;line-height:1.5;color:#444}
.edc__text a{color:inherit;text-decoration:underline}
.edc__actions{display:flex;gap:8px;flex-wrap:wrap}
.edc__btn{border:1px solid #d0d0d0;background:#fff;border-radius:8px;padding:10px 18px;
  font-size:14px;cursor:pointer;transition:background .15s}
.edc__btn:hover{background:#f4f4f4}
.edc__btn--primary{background:#fcbf55;border-color:#fdc057;color:#fff}
.edc__btn--primary:hover{background:#262626}
.edc__btn--link{border:none;text-decoration:underline;background:transparent}
.edc__overlay{position:fixed;inset:0;z-index:99999;background:rgba(0,0,0,.5);display:flex;
  align-items:center;justify-content:center;padding:16px}
.edc__overlay[hidden]{display:none}
.edc__modal{background:#fff;border-radius:12px;max-width:560px;width:100%;max-height:85vh;
  overflow-y:auto;padding:24px}
.edc__modal h3{margin:0 0 16px;font-size:18px}
.edc__cat{display:flex;gap:16px;align-items:center;justify-content:space-between;
  padding:14px 0;border-bottom:1px solid #eee}
.edc__cat-label{margin:0 0 4px;font-weight:600;font-size:14px}
.edc__cat-desc{margin:0;font-size:12.5px;line-height:1.45;color:#555}
.edc__modal-actions{display:flex;gap:8px;justify-content:flex-end;margin-top:18px}
/* switch */
.edc__switch{position:relative;display:inline-block;width:44px;height:24px;flex:0 0 auto}
.edc__switch input{opacity:0;width:0;height:0}
.edc__slider{position:absolute;inset:0;background:#ccc;border-radius:24px;cursor:pointer;
  transition:background .2s}
.edc__slider:before{content:"";position:absolute;height:18px;width:18px;left:3px;top:3px;
  background:#fff;border-radius:50%;transition:transform .2s}
.edc__switch input:checked + .edc__slider{background:#fcbf55}
.edc__switch input:checked + .edc__slider:before{transform:translateX(20px)}
.edc__switch--locked .edc__slider{background:#8fa3c9;cursor:not-allowed}
.edc__modal-intro{margin:0 0 8px;font-size:12.5px;line-height:1.5;color:#555}
.edc__reopen{position:fixed;left:16px;bottom:16px;z-index:99997;width:48px;height:48px;
  border-radius:50%;border:none;background:#fcbf55;color:#fff;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  box-shadow:0 4px 16px rgba(0,0,0,.25);transition:transform .15s,background .15s}
.edc__reopen:hover{background:#262626;transform:scale(1.08)}
.edc__reopen[hidden]{display:none}

@media (max-width:600px){.edc__reopen{width:42px;height:42px;left:12px;bottom:12px}}

@media (max-width:600px){
  .edc__banner{flex-direction:column;align-items:stretch}
  .edc__actions{flex-direction:column}
  .edc__btn{width:100%}
}

@media (max-width:600px){
	.edc__text {
    	flex: none;
    	min-width:0
    }
}
