.cookie-banner{

    position: fixed;

    left: 20px;
    right: 2px;
    bottom: 2px;

    max-width: 1300px;
  

    margin: 0 auto;

    background: #fff;

    border-left: 6px solid #6d1f3d;

    border-radius: 14px;

    box-shadow: 0 12px 35px rgba(0,0,0,.15);

    padding: 18px 30px;

    display: none;

    z-index: 99999;

    animation: cookieUp .45s ease;

}
.cookie-content{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}

.cookie-text{

    flex:1;

}

.cookie-content h3{

    margin:0 0 8px;

}

.cookie-content p{

    margin:0;

}

.cookie-content h3{

    margin:0 0 12px;
    color:#6d1f3d;
    font-size:1.2rem;

}

.cookie-content p{

    line-height:1.6;
    color:#555;
    margin-bottom:20px;

}

.cookie-content a{

    color:#6d1f3d;
    font-weight:600;
    text-decoration:none;

}

.cookie-content a:hover{

    text-decoration:underline;

}
.cookie-buttons{

    display:flex;

    gap:15px;

    flex-shrink:0;

}

.btn-outline{

    background:#fff;

    border:2px solid #6d1f3d;

    color:#6d1f3d;

    padding:11px 18px;

    border-radius:8px;

    cursor:pointer;

    transition:.25s;

}

.btn-outline:hover{

    background:#f8eef3;

}

.btn-solid{

    background:#6d1f3d;

    color:white;

    border:none;

    padding:11px 18px;

    border-radius:8px;

    cursor:pointer;

    transition:.25s;

}

.btn-solid:hover{

    background:#8b2d55;

}

@keyframes cookieUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

@media (max-width:900px){

.cookie-content{

    flex-direction:column;

    align-items:flex-start;

    gap:20px;

}

.cookie-buttons{

    width:100%;

    justify-content:flex-end;

}

}

@media (max-width:600px){

.cookie-banner{

    left:10px;

    right:10px;

    bottom:10px;

    width:auto;

    padding:18px;

}

.cookie-buttons{

    width:100%;

    flex-direction:column;

}

.btn-outline,
.btn-solid{

    width:100%;

}

}

.cookie-buttons{

    flex-direction:column;

}

.btn-outline,
.btn-solid{

    width:100%;

}

}