.w-cookie {
    position: fixed;
    z-index: 9999;
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 900px;
    margin: auto;
    padding: 15px 17px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: #fff;
    border: 1px solid #d8dfda;
    border-radius: 13px;
    box-shadow: 0 18px 50px rgba(0,0,0,.14);
}
.w-cookie[hidden] { display: none; }
.w-cookie strong { display: block; margin-bottom: 4px; }
.w-cookie p { margin: 0; color: #5b655f; font-size: 12px; line-height: 1.4; }
.w-cookie-actions { display: flex; gap: 8px; flex: 0 0 auto; }
.w-cookie button {
    padding: 9px 13px;
    border: 1px solid #cbd3ce;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}
.w-cookie button.primary { color: #fff; background: var(--w-green); border-color: var(--w-green); }
