/* LXS Shop · frontend styles (cookie banner only) */

#lxs-cookie-banner{
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #0F172A;
    color: #fff;
    z-index: 2147483647;
    box-shadow: 0 -4px 20px rgba(0,0,0,.25);
    font-family: -apple-system, system-ui, 'Segoe UI', sans-serif;
    animation: lxs-cookie-slide .3s ease-out;
}
@keyframes lxs-cookie-slide {
    from { transform: translateY(100%); }
    to   { transform: translateY(0); }
}
.lxs-cookie-inner{
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}
.lxs-cookie-text{
    flex: 1;
    min-width: 260px;
    font-size: 13px;
    line-height: 1.5;
    color: #E2E8F0;
}
.lxs-cookie-text strong{
    color: #fff;
    font-size: 14px;
}
.lxs-cookie-actions{
    display: flex;
    gap: 10px;
}
.lxs-cookie-btn{
    font-family: inherit;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all .15s;
}
.lxs-cookie-refuse{
    background: transparent;
    color: #E2E8F0;
    border: 1px solid rgba(255,255,255,.2);
}
.lxs-cookie-refuse:hover{
    background: rgba(255,255,255,.08);
}
.lxs-cookie-accept{
    background: #e52727;
    color: #fff;
}
.lxs-cookie-accept:hover{
    background: #c01e1e;
}
@media (max-width: 640px){
    .lxs-cookie-inner{ flex-direction: column; align-items: stretch; }
    .lxs-cookie-actions{ justify-content: flex-end; }
}
