 
 
.cookie-banner{
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: calc(100% - 30px);
  max-width: 1100px;
  background: rgba(15,27,45,0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 24px;
  z-index: 99999;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.cookie-content{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.cookie-icon{
  width:60px;
  height:60px;
  min-width:60px;
  border-radius:18px;
  background: linear-gradient(135deg,#1a4fd6,#4f46e5);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
}

.cookie-info{
  flex:1;
}

.cookie-info h3{
  color:white;
  margin-bottom:8px;
  font-size:1.05rem;
}

.cookie-info p{
  color:rgba(255,255,255,0.7);
  font-size:0.92rem;
  line-height:1.6;
  margin-bottom:8px;
}

.cookie-info a{
  color:#8db8ff;
  text-decoration:none;
  font-size:0.88rem;
}

.cookie-actions{
  display:flex;
  gap:12px;
}

.btn-cookie{
  border:none;
  padding:12px 20px;
  border-radius:14px;
  cursor:pointer;
  font-weight:600;
  transition:0.3s;
}

.btn-cookie:hover{
  transform:translateY(-2px);
}

.primary{
  background: linear-gradient(135deg,#1a4fd6,#4f46e5);
  color:white;
}

.secondary{
  background: rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.08);
  color:white;
}

@media(max-width:850px){

  .cookie-content{
    flex-direction:column;
    align-items:flex-start;
  }

  .cookie-actions{
    width:100%;
  }

  .btn-cookie{
    width:100%;
    flex:1;
  }

}

@media(max-width:500px){

  .cookie-actions{
    flex-direction:column;
  }

}
 