/* =========================================================
COOKIE CONSENT BANNER
========================================================= */

#fenom-cookie-banner{

position:fixed;

bottom:25px;
left:25px;

width:420px;
max-width:calc(100% - 40px);

background:
rgba(24,24,24,0.96);

backdrop-filter:blur(18px);

border:
1px solid rgba(255,255,255,0.08);

border-radius:22px;

padding:28px;

z-index:99999;

box-shadow:
0 20px 50px rgba(0,0,0,0.25);

animation:cookieSlide 0.6s ease;

transition:0.5s;

}

.cookie-content{

display:flex;
flex-direction:column;

gap:22px;

}

.cookie-text h4{

font-size:20px;

color:#FFFFFF;

margin-bottom:12px;

}

.cookie-text p{

font-size:14px;

line-height:1.8;

color:#C7CDD1;

}

.cookie-buttons{

display:flex;

gap:14px;

}

.cookie-buttons button{

flex:1;

padding:14px 18px;

border:none;

border-radius:50px;

font-family:'Inter',sans-serif;

font-size:14px;

font-weight:700;

cursor:pointer;

transition:0.3s;

}

#cookie-accept{

background:#D4AF37;

color:#000;

}

#cookie-accept:hover{

transform:translateY(-3px);

}

#cookie-decline{

background:
rgba(255,255,255,0.08);

color:#fff;

border:
1px solid rgba(255,255,255,0.08);

}

#cookie-decline:hover{

background:
rgba(255,255,255,0.14);

}

.hide-cookie{

opacity:0;

transform:
translateY(40px);

}

/* =========================================================
ANIMATION
========================================================= */

@keyframes cookieSlide{

from{

opacity:0;

transform:
translateY(40px);

}

to{

opacity:1;

transform:
translateY(0);

}

}

/* =========================================================
RESPONSIVE
========================================================= */

@media(max-width:768px){

#fenom-cookie-banner{

left:20px;
right:20px;
bottom:20px;

width:auto;

padding:22px;

}

.cookie-buttons{

flex-direction:column;

}

}