/* SP1-T04 / SP7-T08: cookie consent banner — extracted to external file */
.cookie-banner{position:fixed;bottom:0;left:0;right:0;z-index:9998;background:#fff;color:#202020;box-shadow:0 -2px 16px rgba(0,0,0,.12);border-top:3px solid #4e42d2;padding:16px 0}
.cookie-banner__inner{display:flex;align-items:center;gap:16px;flex-wrap:wrap;max-width:1320px;margin:0 auto;padding:0 20px}
.cookie-banner__text{flex:1;min-width:260px;font-size:14px;line-height:1.5}
.cookie-banner__text a{color:#4e42d2;text-decoration:underline}
.cookie-banner__actions{display:flex;gap:8px;flex-wrap:wrap}
.cookie-banner__btn{padding:10px 20px;border:none;border-radius:8px;cursor:pointer;font-size:14px;font-weight:600;line-height:1.2;min-height:44px}
.cookie-banner__btn--accept{background:#4e42d2;color:#fff}
.cookie-banner__btn--accept:hover{background:#3a2fb8}
.cookie-banner__btn--reject{background:#f5f5f5;color:#202020}
.cookie-banner__btn--reject:hover{background:#e3e3e3}
@media (max-width:767px){
	.cookie-banner{padding:12px 0}
	.cookie-banner__inner{flex-direction:column;align-items:stretch;gap:12px}
	.cookie-banner__actions{justify-content:stretch}
	.cookie-banner__btn{flex:1}
}
body.cookie-banner-shown,body.cookie-banner-reserve{padding-bottom:120px}
@media (max-width:767px){body.cookie-banner-shown,body.cookie-banner-reserve{padding-bottom:200px}}
