.soc-cookies {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 950;
    display: flex;
    justify-content: center;
}

.soc-cookies[hidden] {
    display: none;
}

.soc-cookies__inner {
    width: 100%;
    max-width: 920px;
    background: linear-gradient(135deg, #4A1782 0%, #6F22A6 100%);
    color: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}

.soc-cookies__text {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: rgba(255,255,255,0.95);
}

.soc-cookies__text a {
    color: #FFC124;
    text-decoration: underline;
}

.soc-cookies__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.soc-cookies__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    border: 0;
}

.soc-cookies__btn--accept {
    background: #FFC124;
    color: #1B1730;
}

.soc-cookies__btn--accept:hover {
    background: #ffd152;
}

.soc-cookies__btn--decline {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.5);
}

.soc-cookies__btn--decline:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 700px) {
    .soc-cookies__inner {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .soc-cookies__buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .soc-cookies__buttons {
        flex-direction: column;
    }
    .soc-cookies__btn {
        width: 100%;
    }
}
