.cookie-card {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: 380px;
    max-width: calc(100% - 48px);
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    padding: 24px;
    z-index: 999999;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    border-top: 4px solid #e31e24;
}

.cookie-info p {
    margin: 0 0 20px 0;
    font-size: 13px;
    color: #444;
    line-height: 1.5;
}

.cookie-btns {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
}

.btn-acc {
    background: #e31e24;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.3s;
}

.btn-acc:hover {
    background: #000;
}

.btn-dec {
    background: none;
    border: none;
    color: #999;
    font-size: 11px;
    text-decoration: underline;
    cursor: pointer;
    font-weight: 600;
}

.btn-dec:hover {
    color: #e31e24;
}

@media (max-width: 768px) {
    .cookie-card {
        bottom: 16px;
        left: 50%;
        transform: translateX(-50%);
        width: 92%;
        padding: 18px;
    }
    .cookie-info p {
        font-size: 12px;
        margin-bottom: 16px;
    }
    .cookie-btns {
        width: 100%;
        justify-content: space-between;
    }
    .btn-acc {
        flex: 1;
        text-align: center;
    }
}

.cookie-settings-link {
    color: inherit;
    text-decoration: none;
    font-size: 11px;
    opacity: 0.7;
    transition: 0.2s;
    margin-left: 5px;
}

.cookie-settings-link:hover {
    opacity: 1;
    color: #e31e24;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .cookie-settings-link {
        display: block;
        margin-top: 5px;
        margin-left: 0;
    }
}